Slashdot Mirror


Gentoo Founder Quits Microsoft

ChocLinux writes "ZDNet is reporting that Daniel Robbins, the founder of Gentoo Linux, has left his job at Microsoft after only eight months. From the article: 'The reason I decided to leave had to do with my specific experiences working in Microsoft's Linux Lab,' says Robbins. 'I wasn't able to work at my full level of technical ability and I found this frustrating'"

10 of 271 comments (clear)

  1. A stunning non-story. Slashdot outdoes itself. by Anonymous Coward · · Score: -1, Troll

    Sorry, but IMO, /. is getting more boring and irrelevant by the minute.

  2. The problem was... by Anonymous Coward · · Score: -1, Troll

    The lack of computers runing Linux in Microsoft Linux Lab. Turns out, they all run Windows.

  3. Re:Zombified? by Anonymous Coward · · Score: -1, Troll

    Sadly, it is all too common that a brush with the Devil leads to a selling of one's soul:

    Charlie Sheen = Hookers
    Robert Downey Jr. = Crack
    Daniel Robbins = ASP.NET


    Btw, please check out my new puzzle game: Traffic Jam

  4. Self-Important, Classless Move by MeauxToo · · Score: -1, Troll

    I take it from the article that he informed the media about his departure from Microsoft. Who cares if one mid-level guy, regardless of his contributions to an open source project, leaves a large company like Microsoft? Informing the media of his resignation says two things about him -- unprofessional and arrogant. Professionals don't publically decry former employer on the way out -- regardless of their disdain. Further, to assume that anyone would care that he is no longer a microserf goes beyond the the pale of self-importance and arrogance.

    Thank you Slashdot for feeding this bad behavior.

    1. Re:Self-Important, Classless Move by Anonymous Coward · · Score: -1, Troll

      Um I seriousally hope you get some new heros to worship.

      any fool can put together a distro. Gentoo is not even a distro on it's own but a fork of something that has all the hard work done.

      Simply doing some of the manageing to get all the contributors to produce something does not mean you have any skills.

  5. Re:For most... by Anonymous Coward · · Score: -1, Troll
    When was the last time you heard of a production application being written in Ruby on Rails, or in D? Sure, there are exceptions to every rule, but for the majority of us, we are stuck using older stuff.


    Both of which that build on C/C++/Java-type heritage but move towards features languages like Lisp had for a while, a language that is 50 years old (though not all its features are that old but still old). Oh, and the latest trend are "software patterns" which in functional languages like Lisp show that you are doing something redundant, but in most mainstream ones you have to read a book about to recognize.

    Yes, we programmers are getting smarter every year. 8 years ago, I hardly had to restart Linux, one "feature" that made MS the laughingstock of the OS community. Now ripping CDs on Soundjuicer in Ubuntu, once ripping/encoding speed eventually drops from 7.0x to 0.01, restarting is my friend. Truly, what remarkable achievements in such a short time:) Perhaps the OSS community may program the blue screen of death into our desktops in a couple years.

    Anyway, I think a lot of programmers say they like programming cutting edge stuff, some think it - but most like reinventing the wheel with tools they are familiar with (no matter how inferior they are).

    Linux is a good example of that (reinvention), some of it innovative, but most of it is old unixy cruft (X windows, xinetd, etcetera) that hangs there like a booger that should have been wiped away ages ago. GNU is also a good example of the (almost mindless) reinvention (without much improvement).

    If software improved at the same rate that hardware did..... if only:) Well, nautilus crashed again, time to finish up this post and do something important.
  6. Re:It probably went like this... by PornMaster · · Score: 1, Troll

    I think he may have asked when he'd get to -funroll-loops and they gave him a slinky to straighten.

  7. Recent Microsoft successes by metamatic · · Score: 0, Troll
    Microsoft has just had a string of very successful product launches

    Name three?

    --
    GCHQ Quantum Insert installed. If only our tongues were made of glass, how much more careful we would be when we speak
  8. Re:Bummer by bertramwooster · · Score: 1, Troll

    Sheesh, he didn't even have enough time to finish compiling Gentoo once.

    thats not coincidence.

  9. Re:For most... by Curtman · · Score: 0, Troll

    "Why the $EXPLETIVE can std::strings covert themselves to const char* but not char* when most functions dealing with strings expect a char* as a parameter?"

    Why the $EXPLETIVE wouldn't you use strndup() to do that? You want somestring.c_str() to return a freshly malloc'd string every time, or just a pointer to some internal/opaque memory store so you can copy it if you want? They're const char*'s because you can't/shouldn't change the strings they point to. If a char* is what you want, copy it somewhere first, or just cast the thing if you are really sure it is safe to do so.