Slashdot Mirror


User: abigor

abigor's activity in the archive.

Stories
0
Comments
1,834
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,834

  1. Re:I disagree on Gosu Programming Language Released To Public · · Score: 1

    Great post. The (rather mundane) truth is that Java is so hugely successful because its syntax was designed to be comfortable for C/C++ programmers. Language transitions tend to be painful and it was a smart strategy, though it burdened Java with kind of a clunky syntax.

  2. Re:Ok great for beginners on Ubuntu Dumps X For Unity On Wayland · · Score: 4, Informative

    Sun shipped with NeWS. NeXT shipped with Display Postscript. SGI shipped with MEX and later 4Sight. I guess none of these were "proper" Unixes in your godlike eyes - someone better alert The Open Group.

    Wayland reuses X's drivers. It can also host X with a negligible performance loss.

    All in all, this is a great thing for desktop Linux, which needs all the help it can get. With commercial vendors rallying around Qt, which already has good Wayland support, the future looks hopeful.

    Are you some kind of junior sysadmin? A little knowledge is a dangerous thing.

  3. Re:No on A Decade of Agile Programming — Has It Delivered? · · Score: 1

    I completely agree with the concept of teaching on very basic machines where students can learn everything.

  4. Re:No on A Decade of Agile Programming — Has It Delivered? · · Score: 2, Insightful

    This is pretty much the ultimate "get off my lawn" post.

  5. Re:Bravo.... on 33 Developers Leave OpenOffice.org · · Score: 1

    There's enough legacy enterprise Java deployed now to keep every Java programmer busy for the next twenty years in maintenance alone, without another new line being written. It's the new COBOL.

    Are you a programmer, by the way? I mean one who writes code for a living, not because they're in school or in their spare time or whatever.

  6. Re:Always interested in people not IP on Facebook Buys a Private File Sharing Service · · Score: 3, Informative

    No, purchasing smaller companies for their dev staff has been a strategy for larger companies from day one. That's why they'll even buy consulting firms who have no products at all, just a talented bunch of analysts and programmers.

    To be honest, you sound like you made up your entire argument on the spot. Trust me, if you offer a lot of stock options which mature over a period of years, then people stick around.

  7. Re:It depends on KDE Developers Discuss Merging Libraries With Qt · · Score: 2, Insightful

    1. It's Qt, not QT.

    2. Qt contains far more than just gui code, and many of the underlying KDE libs would fit in well. I've seen MIME handling mentioned as just one example.

  8. Re:proprietary firmware on Hiding Backdoors In Hardware · · Score: 2, Funny

    Yours is probably the best post I've read in a month.

  9. Re:Really??? on Microsoft Is a Dying Consumer Brand · · Score: 0

    Actually, MS is huge in the server market. There are certainly more Windows servers in existence than ones running Linux, for example. Put simply, there are no credible replacements for Exchange, Sitepoint, Active Directory, etc., which is unfortunate.

  10. Re:More obvious stories on From Apple To Xbox, Tech Companies Lean Left · · Score: 3, Insightful

    Certainly nothing in the US. Note that to the outside world, the D and R parties seem indistinguishable.

  11. Re:Where is the fun? on Are Games Getting Easier? · · Score: 5, Interesting

    Fully agree. That said, you just have to pick your games: Assassin's Creed 2, Red Dead Redemption, GTA4 and many others offer extensive single player content. I love stuff like the Modern Warfare games, but I make sure to buy them used and cheap.

  12. Re:Dutch disease on Global Warming's Silver Lining For the Arctic Rim · · Score: 1

    Who cares? It's today that counts. And as of today, Islam is about as compatible with the West as Android is with the iPhone App Store.

  13. Re:Dutch disease on Global Warming's Silver Lining For the Arctic Rim · · Score: 1

    Sad that this guy was modded down. He is 100% right, and anyone who thinks otherwise knows nothing about the history of Russia and Finland, or about the Muslim immigrant situation there (summary: not good).

  14. Re:Screw gnome, just finish gnustep already. on Ubuntu Moves Away From GNOME · · Score: 1

    This would be so sweet and such a logical thing to have happen. I guess that means it never will.

  15. Re:Don't blame him, thank him. on Vint Cerf Keeps Blaming Himself For IPv4 Limit · · Score: 4, Funny

    Eh, that's a lot of toasters to use up 3.4*10^38 addresses. If a toaster takes up a square metre (big toaster), you'd have to stack them ten billion high over every single metre of the Earth to use them up.

  16. Computing journalists on Where Are the Original PC Programmers Now? · · Score: 1

    I wonder what happened to some of the guys who wrote articles in the magazines I devoured in my youth - David Ahl, founder of Creative Computing, or Jim Butterworth of The Transactor fame. I think JB is dead, actually.

    I was digging around at my parents' place and I found several years' worth of Transactors, most of them in good shape. I also have a copy of the Complete C64 Inner Space Anthology somewhere - I wonder what the eBay-ability of these things are.

  17. Re:Good Old Day? on Where Are the Original PC Programmers Now? · · Score: 3, Insightful

    Why the heck don't people like you post more often? I love hearing this stuff.

  18. Re:High level of quality on Where Are the Original PC Programmers Now? · · Score: 1

    Sorry, I totally misunderstood - I thought you were implying that MS in the '80s was not what he described, when in fact it was just that. My apologies.

    However, having contributed to lots of projects from Gentoo to Debian to Asterisk, I will say that not only did I not know any of my fellow contributors other than by the occasional email conversation, I have no idea what they even looked like. The atmosphere of early MS was like a startup - a very close atmosphere that builds some pretty intense relationships, nothing like open source in my opinion.

  19. Re:High level of quality on Where Are the Original PC Programmers Now? · · Score: 1

    I guess you were working at MS back in the '80s to make such a comparison. Can you share any other gems from that era with us?

  20. Re:Whether a file has changed = complex? on Linux 2.6.36 Released · · Score: 2, Informative

    Er, "for example...for example". Great proofreading there. And I meant ANTI-malware vendors, of course...

  21. Re:And yet? on Linux 2.6.36 Released · · Score: 1

    Fair enough. I was responding in the context of open/close source code, not openness as an abstract concept.

  22. Re:And yet? on Linux 2.6.36 Released · · Score: 1

    Yes Apple, the same company that runs this site: http://www.opensource.apple.com/ They are big contributors and users of open source.

  23. Re:Whether a file has changed = complex? on Linux 2.6.36 Released · · Score: 4, Interesting

    fanotify seems interesting because it allows you to watch for arbitrary events on a global basis without specifying which file descriptors you want to watch. It seems to pass the actual file descriptor back to the original object. You read events via getsockopt().

    So, for example, it's very easy to say "notify me of all file open events", for example.

    You can also do the opposite of a global watch, of course, and have it watch for specific file events, much like inotify.

    As I understand it, fanotify came about because of vendor demand for an efficient, non-hackish way to watch for arbitrary filesystem events without ever specifying precise files, paths, etc. An example would be malware vendors.

  24. Re:And yet? on Linux 2.6.36 Released · · Score: 3, Informative

    Actually, all the relevant particulars of Flash are openly available (see Adobe's Open Screen project). The big exception is Sorenson Spark, but that's already available via ffmpeg. Basically, Gnash just isn't there yet.

  25. Re:Patches have been available for a long time on A Tidal Wave of Java Flaw Exploitation · · Score: 1

    You can always tell the people that don't work in "the biz" when they make comments like the parent's.