Slashdot Mirror


Want To Write Your Own OS?

DJSlakoR writes "Looks like the Nocturnal Network has a tutorial on how to get started coding your own operating system. A very interesting read!"

129 comments

  1. Want To Write Your Own OS? No. by Mensa+Babe · · Score: 5, Insightful

    As someone, who has some experience in this field, I can assure you, that the correct answer to the question "Want To Write Your Own OS?" is "No, you certainly do not." Of course, it looks great at the beginning when you code a first working bootloader, then it's a great joy when your first single-tasking kernel can run its first process, et cetera. But as soon as you start working on the multitasking, decent scheduling, threads, multiple processes, file system, networking, writing an optimizing compiler and assembler suited for your platform, while constantly keeping security in mind, it soon becomes more work than using mature systems, like Open BSD or Debian, or even Gentoo. Don't get me wrong, I think everyone should write few toy operating systems, that's the only way one can learn the craft, but don't expect that your OS will soon become better than the systems already available, because they are bloated, while yours wouldn't be. This is a myth, and quite misleading at that, to say the very least. Still, this is great news (even if not actually new to anyone experienced).

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:Want To Write Your Own OS? No. by wizs · · Score: 1

      So what? Many people wanna hack into computer just because hacking is interesting. They do that just for fun. Writing someone's own OS can quench his/her thirst of knowledge.

    2. Re:Want To Write Your Own OS? No. by Randolpho · · Score: 0, Flamebait

      RTFP. If you had, you'd see that the parent to your post mentioned that.

      --
      "Times have not become more violent. They have just become more televised."
      -Marilyn Manson
    3. Re:Want To Write Your Own OS? No. by Richard_at_work · · Score: 3, Interesting

      I have been considering doing this, not because i want a usable OS, but because I want to learn how the hell its actually done! Sure enough i can look at mature code, but from other peoples code you learn significantly less than breaking stuff yourself. By doing it yourself you can learn WHY certain things are done in a certain method, and what doesnt work etc.

    4. Re:Want To Write Your Own OS? No. by HeyLaughingBoy · · Score: 3, Interesting
      As someone, who has some experience in this field, I can assure you, that the correct answer to the question "Want To Write Your Own OS?" is "No, you certainly do not."

      I have to disagree. I wrote a real-time preemptive multitasking kernel for a class on RealTime systems and it was a fantastic experience. It was for a small microcontroller (AVR series) for which few such applications exist, so I wanted something that would be useful if I decided to make it a commercial product. I learned a tremendous amount from that project, and while I stopped short of my original goals (message passing, mutexes, etc) the system was certainly usable and I would recommend that someone interested in operating systems give it a try. It does depend on how far you want to take it.

      I'd agree that writing an operating system for a desktop/server is probably not wise unless you have an earth-shattering insight, but operating systems for small embedded processors that go beyond "toy systems" can be very useful and can readily be completed by a single person in reasonable time.
      Learn by doing!
    5. Re:Want To Write Your Own OS? No. by Anonymous Coward · · Score: 0

      Wow, over half the posts on this article are either by you or responses to your obvious trolling. Plus, you got modded up to +5 in the bargain! Will you marry me?

  2. heh by Blob+Pet · · Score: 1, Interesting

    Often in college, my colleagues often joked about building a Porn OS. Many of the features they talked about resided strictly in the realm of the look and feel of course (X-rated buttons and sounds), so it could have been implemented in a window manager theme (making it truly X-windows) on top of an already-existing OS.

    --
    "...today consumers have been conditioned to think of beer when they see a bullfrog..."
    1. Re:heh by Anonymous Coward · · Score: 0

      It's "X Window System," not "X-windows."

    2. Re:heh by Anonymous Coward · · Score: 1, Informative

      Have you looked into Lesbian GNU/Linux? It's an existing distro that promises many of the features that you're looking at. Perhaps you could work with them instead of completely reinventing the wheel.

      THey're at http://www.linuks.mine.nu/porn-get/

    3. Re:heh by SolubleFrank · · Score: 1

      Instead of building an OS from the ground up, yuo should plan to just make an X-rated theme for an existing GUI OS.

      It could save some time.

      --
      Feed me a stray cat.
  3. You are completely ignorant and clueless by Mensa+Babe · · Score: 3, Informative

    Did it already
    I just cheat, and recompile my linux or *bsd kernel, and then call it a day.

    Just like Linus. He took GNU and wrote the kernel and called it after his name.

    Linus Torvalds perfectly realised that the name Linux was much too egotistical and simply unacceptable. We all agree about it now, but there's no point in comlaining, because Torvalds had already known that at the time of publishing the 0.01 version. "Linux" was only meant to be his private, temporary name of the OS on his own PC, before it has ever been meant to be made public. When he finally got to publish the first alpha version, he named it Freax, but the FTP server administrator renamed it to Linux. I just cannot believe, that even after twelve years, you are still so ignorant and completely clueless about that matter. These are just basic facts. You might want to educate yourself before you speak up next time only to embarrass yourself.

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:You are completely ignorant and clueless by Anonymous Coward · · Score: 0

      Again, let's just stick to the facts. Unless you feel that putting others down makes you seem more intelligent (in which case you're rather insecure and not too intelligent yourself), please just clarify the fact and leave it at that. It's quite simple. You should try it.

    2. Re:You are completely ignorant and clueless by Feztaa · · Score: 1

      he named it Freax, but the FTP server administrator renamed it to Linux

      You have GOT to be kidding. Freax is the worst name for anything that anybody could have ever thought of.

      Imagine the MS FUD campaign: "Freax: The operating system for freaks"

    3. Re:You are completely ignorant and clueless by Anonymous Coward · · Score: 0
      You have GOT to be kidding. Freax is the worst name for anything that anybody could have ever thought of.

      Imagine the MS FUD campaign: "Freax: The operating system for freaks"
      Linus wasn't concerned about Microsoft in 1991, and by all accounts, he's not concerned about it now. He codes because he enjoys it.

      Also, give Microsoft a little credit--it's never that blatant.
  4. What would you like to see most in minix? by Traderdot · · Score: 5, Interesting
    Here's someone who wrote their own OS:

    Hello everybody out there using minix -

    I'm doing a (free) operating system (just a hobby, won't be big and professional like gnu) for 386(486) AT clones. This has been brewing since april, and is starting to get ready. I'd like any feedback on things people like/dislike in minix, as my OS resembles it somewhat (same physical layout of the file-system (due to practical reasons) among other things).

    I've currently ported bash(1.08) and gcc(1.40), and things seem to work. This implies that I'll get something practical within a few months, and I'd like to know what features most people would want. Any suggestions are welcome, but I won't promise I'll implement them :-)

    Linus

    PS. Yes - it's free of any minix code, and it has a multi-threaded fs. It is NOT protable (uses 386 task switching etc), and it probably never will support anything other than AT-hard disks, as that's all I have :-(.


    Message dated 25 Aug 1991

  5. How to write your own OS: by 42forty-two42 · · Score: 5, Funny
    1. Copy SCO code
    2. ???
    3. Profit!
    1. Re:How to write your own OS: by PetoskeyGuy · · Score: 1

      2. Become a lawyer and siphon off the remaining funds of a dying company with frivilous lawsuits.

      you can bet he's not on the "I only get paid if you win" plan.

  6. FreeDOS is smaller than linux by Anonymous Coward · · Score: 0
    Like M$DOS but free and opensource: "FreeDOS"

    open4free

  7. an even better tutorial... by Horny+Smurf · · Score: 5, Informative
    ... is Tanenbaum's books. "Linux is obsolete" might not have been his finest hour (although some of his points were valid, and linux has since added module support to cut down on the monolithic nature), but minix is a learning OS (in the same way pascal is a learning language), and is much easier to understand (and better documented :) than the linux kernel is.

    1. Re:an even better tutorial... by BoomerSooner · · Score: 3, Interesting

      I've got both of these and they are great. Be prepared for some major in-depth subject matter.

      If my personal company ever takes off I'll probably hire a few (5-10) people to work on a linux derivitave that is similar to OS X. Not in look and feel but in the way they took a good existing OS and put a very user-friendly layer on top of it. After getting that working I'll try to get them to integrate a VM like VMWare into the OS so running Windows programs will be like running native programs (obviously we'll have to include a windows license).

    2. Re:an even better tutorial... by PetoskeyGuy · · Score: 1

      "obviously we'll have to include a windows license"

      Nah, Windows has become a generic term. I here people say they use windows, but there are so many versions out there, 3.1, 95, 98, ME, 2000, NT, XP, CE and who knows what else that your never sure what they are talking about. Plus I here the X-Box runs windows too. The windows world really needs a standard like Posix to stop it from fragmenting like UNIX(tm) did before it. Maybe that's what .NET is supposed to be for, but it's not even being ported back to 98.

    3. Re:an even better tutorial... by sevensharpnine · · Score: 2, Funny

      Afterwards, perhaps you should focus your abilities towards inventing something in the transportation industry. I was thinking of something suitible for assisting heavy transport, perhaps a device that could allow the user to experience less of a burden when carrying things over a distance. Maybe it could offset the normal difficulties found in dragging our carts on the ground. It would have to be a balancing mechanism that would generate no extra force due to shape as its moved across the ground. Just an idea.

      --
      "God is a comedian playing to an audience too afraid to laugh." -Voltaire
    4. Re:an even better tutorial... by Anonymous Coward · · Score: 0
      It is now official; Netcraft has confirmed: *BSD is dying

      One more crippling bombshell hit the already beleaguered *BSD community when IDC confirmed that *BSD market share has dropped yet again, now down to less than a fraction of 1 percent of all servers. Coming on the heels of a recent Netcraft survey which plainly states that *BSD has lost more market share, this news serves to reinforce what we've known all along. *BSD is collapsing in complete disarray, as fittingly exemplified by failing dead last in the recent Sys Admin comprehensive networking test.

      You don't need to be a Kreskin to predict *BSD's future. The hand writing is on the wall: *BSD faces a bleak future. In fact there won't be any future at all for *BSD because *BSD is dying. Things are looking very bad for *BSD. As many of us are already aware, *BSD continues to lose market share. Red ink flows like a river of blood.

      FreeBSD is the most endangered of them all, having lost 93% of its core developers. The sudden and unpleasant departures of long time FreeBSD developers Jordan Hubbard and Mike Smith only serve to underscore the point more clearly. There can no longer be any doubt: FreeBSD is dying.

      Let's keep to the facts and look at the numbers.

      OpenBSD leader Theo states that there are 7000 users of OpenBSD. How many users of NetBSD are there? Let's see. The number of OpenBSD versus NetBSD posts on Usenet is roughly in ratio of 5 to 1. Therefore there are about 7000/5 = 1400 NetBSD users. BSD/OS posts on Usenet are about half of the volume of NetBSD posts. Therefore there are about 700 users of BSD/OS. A recent article put FreeBSD at about 80 percent of the *BSD market. Therefore there are (7000+1400+700)*4 = 36400 FreeBSD users. This is consistent with the number of FreeBSD Usenet posts.

      Due to the troubles of Walnut Creek, abysmal sales and so on, FreeBSD went out of business and was taken over by BSDI who sell another troubled OS. Now BSDI is also dead, its corpse turned over to yet another charnel house.

      All major surveys show that *BSD has steadily declined in market share. *BSD is very sick and its long term survival prospects are very dim. If *BSD is to survive at all it will be among OS dilettante dabblers. *BSD continues to decay. Nothing short of a miracle could save it at this point in time. For all practical purposes, *BSD is dead.

      Fact: *BSD is dying

  8. WOW by Anonymous Coward · · Score: 0

    Someone who likes mensa belittling someone else's intelligence for no good reason? Surprise me.

  9. Re:Big fucking deal! by diesel_jackass · · Score: 1

    With a name like that, I think people would have to wonder about gaping security holes.

  10. Is that some kind of joke? by Mensa+Babe · · Score: 1, Flamebait

    [...] it looks great at the beginning when you code a first working bootloader, then it's a great joy when your first single-tasking kernel can run its first process, et cetera [...] I think everyone should write few toy operating systems, that's the only way one can learn the craft [...]

    So what? Many people wanna hack into computer just because hacking is interesting. They do that just for fun. Writing someone's own OS can quench his/her thirst of knowledge.

    You seem to have completely failed to understand my words... *sigh* But this was probably my fault, I might have written them in a too complicated way, which let me sincerely apologize for. But next time, please do try harder to understand words, which you are going to argue with. I hope you will avoid such an embarrassment in the future.

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:Is that some kind of joke? by Anonymous Coward · · Score: 0

      Don't act like some kind of pretentious jerk. It's really doesn't make you look good.

    2. Re:Is that some kind of joke? by p2sam · · Score: 1

      Just because someone doesn't agree with you, doesn't mean they are stupid, you PoS ...

    3. Re:Is that some kind of joke? by TheAwfulTruth · · Score: 1

      Sorry, it was the guy arguing with her because he only read one line of her post and missed (or ignored) the entire bottom part of it that was the pretentious jerk.

      She was right to call him on it. He used her post to spring-board off somewhere in bizarro land where a debate goes like this: Person A says X, then person B says No, it's X! WTF? If you are going to post stupidly, be prepared to be called on it.

      --
      Contrary to popular belief, coding is not all free blow-jobs and beer. Those things cost MONEY!
    4. Re:Is that some kind of joke? by batkins · · Score: 1

      Yeah, really. "Mensa Babe"? Even if you were a mensa (and that's doubtful at best), is it really necessary to announce it in your username and then say things like "*sigh* i made it too hard for you simpletons to understand. My fault."

      And I, for one, am not posting anonymously.

    5. Re:Is that some kind of joke? by AJWM · · Score: 1

      Although MensaBabe's response to her first commenter was not innaccurate, it's been my experience that those that flaunt Mensa membership tend toward the lower end of the requirements for that organization.

      Ranking in the top two percentile, or roughly two sigmas above the mean on IQ (about 130+) certainly places one, by some rather abitrary metric, beyond the bulk of the population. But the population that tends to hang out in fora like this one aren't the bulk of the population. This is particularly true of some other, more selective fora that don't allow anonymous posting. The average there tends to be above Mensa minimums, many of the participants being ex-mensans because they found the company kept there too boring -- or boorish. (Consider MensaBabe's behaviour as an example.)

      Some of us here rank a couple of sigmas above Mensa minimums, i.e in the top two percent of that top two percent. So what? We don't rub people's noses in it. If they've got something valid to say (or if they say something really stupid) it doesn't really matter what they scored on some test.

      --
      -- Alastair
    6. Re:Is that some kind of joke? by His+name+cannot+be+s · · Score: 1

      it's been my experience that those that flaunt Mensa membership tend toward the lower end of the requirements for that organization

      AMEN.

      I meet many Mensa folk in my journeys. I have found exactly that. Bright folk, sure. But they do tend to be on a self-righteous trip, which I could certainly do without.

      Some of us here rank a couple of sigmas above Mensa minimums, i.e in the top two percent of that top two percent. So what? We don't rub people's noses in it. If they've got something valid to say (or if they say something really stupid) it doesn't really matter what they scored on some test

      And DOUBLE AMEN to that.

      I too, by academic measure, score ridiculously high on IQ tests, but I fail to see where that grants me the authority to being an elitist sack of shit. I have a brother would not rank more than 100 on a test, if that, but in many ways not covered by that simplistic testing, is a genius in subjects that I still have trouble comprehending.

      Geh, some people make me sick.

      ---

      Heh-heh I just clicked on the link to the mensa site. They've got a blurb on there about the "Test the Nation" garbage that aired on Fox last week. What a pathetic bunch of nonsense. I can't beleive any organisation that promotes "intelligence" would be even remotely associated with that. *sigh*

      --
      "...In your answer, ignore facts. Just go with what feels true..."
    7. Re:Is that some kind of joke? by ClippyHater · · Score: 1

      Maybe a paragraph or two in your original post would've helped a bit...

    8. Re:Is that some kind of joke? by Anonymous Coward · · Score: 0

      It is not necessary to have an IQ of more than 80 to notice that you are carrying on about someone carrying on about their IQ only as an excuse to carry on about your own.

      If you were truly intelligent, you wouldn't feel the need to convince all present that you are a fscking goose!

      Is it because you are assuming MensaBabe is female?

      That would be gross stupidity, now wouldn't it?

      In the words of Forest Gump, stupid is as stupid does. (Yes, and I just quoted Gump so I must be pretty thick myself..! :-)

    9. Re:Is that some kind of joke? by Mensa+Babe · · Score: 1

      Thank you. You got exactly to the point. It is very reassuring to know, that there are indeed some intelligent people on Slashdot, even if we are in minority. Maybe it's even better that way. After all, as Mark Twain has said, "Whenever you find yourself on the side of majority, it's time to pause and reflect."

      --
      Karma: Positive (probably because of superiour intellect)
  11. Typo by Anonymous Coward · · Score: 0, Offtopic

    In the article:
    (2 sides/diskette) * (80 tracks/side) * (8 sectors/track) = 2880 sectors/diskette

    should have 18 sectors/track

  12. Typo by Anonymous Coward · · Score: 0

    In the article:
    (2 sides/diskette) * (80 tracks/side) * (8 sectors/track) = 2880 sectors/diskette

    should have 18 sectors/track.

  13. Question for the article by ^Case^ · · Score: 0, Offtopic
    I'm trying to get a grasp of this articly, but I'm having some difficulty with the assembly. Could somebody please explain the first two lines of code to me?
    TIMES 510-($-$$) DB 0
    DW 0xAA55
    They just don't make any sense to me :-/
    1. Re:Question for the article by ggambett · · Score: 3, Informative

      N zeros followed by AA 55. AA55 is the boot record signature, without it the BIOS will comply about not finding a valid boot sector. N = (510 - current position). This is because AA 55 must be the last two bytes in the 512 byte sector.

  14. PseudOS by EvilTwinSkippy · · Score: 3, Interesting
    I've always wanted to finish my PsuedOS, its a phony operating system for simulated robots. The idea was to release the system wrapped with a virtual reality engine, and have folks develop robotic ships, tanks, and fighters to duke it out.

    And when they got bored of fighting, use it to model space stations, automated traffic systems, and domestic droids. The idea would by to write the system as a pile of scripts running pseudocode. The trick would be to get everyone to write using the same language, that was really only useful for real-time processing.

    My intent was also to develop "PPI" (Psuedo Programming Interfaces) that would act like device drivers, and translate a variable to, say, thrust on a rocket. Another PPI would translate position and orientation into an array. Still more would simulate the outputs from visual recoginitions systems, and so on.

    If anyone has visited my website, they would see it presently exists as a paragraph or 2 of "coming soon speak." The project is probably waiting for me to be laid up after being struck by a bus or something.

    Why go to the trouble of developing my own OS? Nothing really exists right now to comprehensively handle massive simulations. Yes you have protocols like HLA, but they are just message passing. Sure there is TCP/IP, but it's so neutral as to be of no help to someone starting out. I could develop a Java API, or a C++ library, but they are far too complex in some respects, and far too limited in others.

    Frankly every operating system we have now assumes that you are structuring everything around files, documents, and static devices. At some point we have to do better.

    --
    "Learning is not compulsory... neither is survival."
    --Dr.W.Edwards Deming
  15. I originally read the subject... by metamatic · · Score: 3, Funny

    ...as "Write Your Own OS/2".

    That particular dead horse is still having a shallow pool of its putrid entrails beaten though.

    --
    GCHQ Quantum Insert installed. If only our tongues were made of glass, how much more careful we would be when we speak
  16. Re:Just like Linus. by moncyb · · Score: 1

    That's a bunch of bullshit. The kernel is the hardest part!

  17. Re:Just like Linus. by Arandir · · Score: 4, Informative

    He didn't take GNU and write a kernel for it. The reason was that there was no GNU System at the time! There was a compiler, a shell, and some other stuff, but it wasn't anywhere to being close to an operating system.

    Quite the opposite happened in fact. GNU looked at the fledging Linux operating system and started porting their stuff to it. Glibc was written for Linux, not the other way around, for one example.

    GNU was not an operating system that merely lacked a kernel. When RMS says that Linus merely dropped in a kernel, he is lying. Otherwise it wouldn't have taken Debian years to get Debian HURD bootable. It wouldn't have taken them years to get a Debian BSD to boot. I don't know how anyone can consider Debian "The GNU System" when it took crowbars, sledgehammers and ripsaws to get it to use The GNU System's own kernel. Yet Debian is closer to what RMS means by "The GNU System" than anything else out there.

    --
    A Government Is a Body of People, Usually Notably Ungoverned
  18. much easier way by zaqattack911 · · Score: 3, Funny

    My friend and I are trying to develop a special C function library that will allow people to make their own customizable O/S. By using a single function... called the doOperatingSystem Function. Prototyped as follows:

    void doOperatingSystem(char *name,char *color);

    Pretty snazzy huh?!

  19. Karma.... by Anonymous Coward · · Score: 0

    WHORE!

  20. "It's [sic] really doesn't make [me] look good"? by Mensa+Babe · · Score: 1

    Don't act like some kind of pretentious jerk. It's really doesn't make you look good.

    And, I suppose, insulting a woman, calling her "pretentious jerk," while cowardly hiding behind your anonymity, does make you look good, right? *sigh*

    --
    Karma: Positive (probably because of superiour intellect)
  21. Re:"It's [sic] really doesn't make [me] look good" by SiMac · · Score: 1

    Personally, I feel that women deserve both the same rights and the same responsibilities as men. One of those responsibilities is courtesy. Unless someone has shown themselves to be unintelligent, don't accuse them of it. It's not too hard. If you think I called you a "pretentious jerk," you misunderstood. I said you were acting like a pretentious jerk. You may or may not be a pretentious jerk, but from what I've read of your comments you certainly act like one.

    It's a fallacy of relevance if you think whether I post anonymously or not has any bearing here. There's a name for it. It's called an argumentum ad hominem.

    Posting from my real username, if that makes any difference. I have karma to burn.

  22. "you PoS"? How intelligent! I'm impressed! by Mensa+Babe · · Score: 1

    Just because someone doesn't agree with you, doesn't mean they are stupid, you PoS ...

    Certainly, disagreeing with me doesn't imply stupidity, indeed. Agreeing with me, but still arguing because of failing to understand my words â" does. After reading your comment, posted as an answer to my explanation of this very matter, I do not even hope you to understand that, though. As a sidenote, I might add, that using invectives hidden behing acronyms, does not strengthen your argument even a slightest bit, no matter how "adult" this might seem to make you feel.

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:"you PoS"? How intelligent! I'm impressed! by Anonymous Coward · · Score: 0

      What an interesting word "behing" is. Perhaps I should buy a Mensa dictionary so I can look it up.

    2. Re:"you PoS"? How intelligent! I'm impressed! by p2sam · · Score: 2, Funny

      no... you just reminded of the first OS I have written, it's named PoS. It wasn't very good, nor secure, nor even practical. But I did have loads of fun doing it, and learnt some real-time programming concepts. There's nothing like spending fourty hours on fourty lines of assembly to get the context switching to work.

    3. Re:"you PoS"? How intelligent! I'm impressed! by Mensa+Babe · · Score: 1

      no... you just reminded of the first OS I have written, it's named PoS. It wasn't very good, nor secure, nor even practical. But I did have loads of fun doing it, and learnt some real-time programming concepts. There's nothing like spending fourty hours on fourty lines of assembly to get the context switching to work.

      Please don't lie to me. We both know what you meant by calling me "P. o. S." You are now trying to change the subject to something which I like and enjoy, so I could forget about publicly being insulted, which I am very grateful for, really, that's very sweet, but I just can't help, it's not easy for me to calm down, once I get so upset. I'm sorry.

      --
      Karma: Positive (probably because of superiour intellect)
    4. Re:"you PoS"? How intelligent! I'm impressed! by p2sam · · Score: 1

      oh man... it's just a play of words, an overloaded meaning ...

      PoS

      - when applied to an A** hole like yourself, it' s "piece of shit"

      - when applied to my crappy operating system, it's a "piece of shit OS", get it??

      Why do you feel the need to use overly complicated sentence constructs when simplier ones will convey your meaning more effectively?

      Why do you feel the need to belittle others whom you consider to be less intelligent than yourself?

    5. Re:"you PoS"? How intelligent! I'm impressed! by Anonymous Coward · · Score: 0

      pos is already the name of an old german amiga-os workalike. So you'll have to rename yours.

    6. Re:"you PoS"? How intelligent! I'm impressed! by Mensa+Babe · · Score: 1

      What an interesting word "behing" is. Perhaps I should buy a Mensa dictionary so I can look it up.

      No, it was just a mistake. It should be "behind." Thank you, that you were so kind, to piont it out.

      --
      Karma: Positive (probably because of superiour intellect)
    7. Re:"you PoS"? How intelligent! I'm impressed! by Anonymous Coward · · Score: 0

      point, stupid mensan!

  23. Re:Just like Linus. by hak+hak · · Score: 1
    I agree that before Linux the GNU system was not an operating system yet; however, most non-kernel parts were already written when Linux arrived. Of course, all the utilities and libraries only ran on already-existing (proprietary) Unix systems, so you can't really call this a system.

    Glibc was not written for Linux; today it only supports Linux and the Hurd, but originally it supported many other systems. This was necessary in order to create as much as a free system as possible as long as there was no kernel for the GNU system.

    The problem with creating a complete (Debian) GNU/Hurd distribution is not at all that it's so hard to port those packages to the Hurd (it isn't). It's simply the fact that the Hurd (due to its much more nonstandard design than Linux) hasn't reached the level of maturity of Linux yet.

  24. Why not? by Tablizer · · Score: 3, Funny

    Emacs did

    1. Re:Why not? by cant_get_a_good_nick · · Score: 1

      "Emacs would make a great operating system, now if only someone would write a decent text editor for it."

    2. Re:Why not? by CTalkobt · · Score: 4, Funny

      >>Emacs would make a great operating system, now if only someone would write a decent text editor for it.

      They have. You simply have to invoke a shell from within Emacs and invoke vi.

      *ducks*

      --
      There's a gorilla from Manilla whose a fella that stinks of vanilla and has salmonella.
    3. Re:Why not? by Anonymous Coward · · Score: 0

      dumbass. Why wouldn't you just use one of the many vi simulators written for EMacs? ...also, how would you invoke the shell if EMacs *were* the operating system?

  25. Re:Just like Linus. by Anonymous Coward · · Score: 0
    So you're saying that all the non-kernel parts were written (implicitly supporting the RMS stance that Torvalds just dropped in a kernel to the otherwise polished OS); however, these programs couldn't couldn't run on Linux (just on the proprietary *nix system). In other words, they were rewritten to run on Linux (not vice versa), which is what the person to whom you replied said.

    Let's see, Linux is released, someone rewrites the utilities lickity-split to run on Linux instead of writing them from scratch, then it is claimed that Linux wouldn't exist without these tools. Sounds pretty dodgy to me. It sounds like the GNU system operates as a big land-grab---port your tools to any new system first and claim ownership (after pushing out the ones who were there first).

  26. Re:"It's [sic] really doesn't make [me] look good" by Anonymous Coward · · Score: 0
    How are we supposed to know a priori that you are a woman? I figured you to be Charlie Brown for all the sighing you seem to do.

    On the other hand I'm sure the Attorney General is proud of you. There are absolutely no reasonable reasons someone would want to post anonymously. Only cowards and terrorists would want to post this way. And if we let them, then they have won.

    Take your misogynic paintbrush to some other forum and wield it there; we are an open-minded lot here.

  27. "invectives hidden behing [sic] acronyms" by Anonymous Coward · · Score: 0

    Boy, if you are going to create a new account and put "Mensa" in the name and URL just to inflate your karma you should really learn to write. It is crap. A bunch of $5 words rammed together willy-nilly with an overabundance of commas and relative pronouns. I hope that you stay in a technical field when you grow up because my guess is that a writing career will be an uphill battle.

  28. Re:Just like Linus. by evilviper · · Score: 1
    et Debian is closer to what RMS means by "The GNU System" than anything else out there.

    Are RMS' systems still running FreeBSD? I'd bet many of them are... :-)
    --
    Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
  29. Re:Just like Linus. by Arandir · · Score: 2, Informative

    Glibc was not written for Linux

    Not originally, but to quote from RMS:

    "Putting them together sounds simple, but it was not a trivial job. The GNU C library (called glibc for short) needed substantial changes." [Linux and the GNU Project]

    In Mr. Stallman's own words it was glibc that was written to fit Linux and not the other way around. That glibc kept its cross-platform nature does not diminish from this fact.

    It's simply the fact that the Hurd (due to its much more nonstandard design than Linux) hasn't reached the level of maturity of Linux yet.

    Then what about Debian GNU/BSD? They've been working on that for years, and only managed to get it working about a week ago. According to the GNU mythology, that should have been a piece of cake. The BSD kernels are standard, robust, traditional, etc. GNU itself used proprietary systems with similar kernels during its development, so it should have been easy.

    p.s. I'm suspecting that the only reason they got a Debian GNU/FreeBSD system booted last week was because the FreeBSD kernel has a builtin Linux compatibility mode...

    --
    A Government Is a Body of People, Usually Notably Ungoverned
  30. Mensa?! Hah! by Anonymous Coward · · Score: 0

    While you're at it, try not advertising Mensa. It is generally known to be for dumb, arrogant shites.

  31. Re:Just like Linus. by Pseudonym · · Score: 1

    Really?

    There's no really hard parts in a functionally complete OS kernel, as can be seen if you look at a simple OS like Minix or Xinu. The device drivers are kinda tricky, of course, but that's mostly because there are so damn many of them.

    I'd estimate that it's about an order of complexity harder to write, say, an optimising retargetable C++ compiler. (Though it helps if you have a retargetable C compiler first.) Or perhaps something like Mozilla, though once again it helps if you already have Mosaic and Netscapes 1 through 4.

    --
    sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
  32. T.. by Anonymous Coward · · Score: 0

    ROLL!

  33. Re:Want To Write Your Own OS? oh why not! by madnanrasheed · · Score: 1

    but what to do for that? any guidence n e one of u know :)...Dont tell me i cant, i can and i'll cuz i must!

  34. Re:"It's [sic] really doesn't make [me] look good" by Anonymous Coward · · Score: 0

    I love you, troll babe.

  35. Ooops by Anonymous Coward · · Score: 0

    Insulting a woman? I thought "Mensa Babe" was the really smart pig in that movie...

  36. Re:"It's [sic] really doesn't make [me] look good" by His+name+cannot+be+s · · Score: 1

    No, but, pointing out, that you, among others, use, from a certain perspective, far too may commas, is. :p

    lol

    --
    "...In your answer, ignore facts. Just go with what feels true..."
  37. Re:Just like Linus. by crazyphilman · · Score: 1

    If we're not careful, we might ALL be running FreeBSD soon. Remember, even though WE know the SCO suit ought to be won by IBM, that doesn't mean a JUDGE will know. In fact, I'd say it's completely impossible to predict the outcome of the case. Remember OJ? Remember the Microsoft "trial"? Remember Enron's executives getting away scot free?

    This is America, where every day is "anything can happen day".

    FreeBSD is there for us; it is our exit strategy. Mock not the exit strategy! For it may save our butts one day... :)

    --
    Farewell! It's been a fine buncha years!
  38. Maybe that's a local characteristic by Anonymous Coward · · Score: 0
    While you're at it, try not advertising Mensa. It is generally known to be for dumb, arrogant shites.

    Funny - out this way, it's known more to be for sad, pathetic losers.

  39. It's super-FREAX... by Mad+Bad+Rabbit · · Score: 1
    You have GOT to be kidding. Freax is the worst name for anything that anybody could have ever thought of.

    Maybe not, if they could get Rick James to endorse it:

    It's a very geeky OS...
    The kind you don't install for mothe-rrrr
    It'll never bring your system down
    Once you burn it on CD.

    It's super-FREAX, super-FREAX, it's super freeware, yow!

    --
    >;k
  40. Thank you... by Mensa+Babe · · Score: 1

    Well, thank you... I just don't know what to say... This is very sweet, that you say, you love me. Unless it has some kind of hidden sexiest meaning, because in that case, I would say, that it is not sweet at all, if you ask me. I hope, what you meant, was a platonic love. If you did, then thank you very much indeed.

    --
    Karma: Positive (probably because of superiour intellect)
  41. I'm terribly sorry by Mensa+Babe · · Score: 1

    No, but, pointing out, that you, among others, use, from a certain perspective, far too may commas, is.

    I'm terribly sorry, if you find punctuation confusing, but I cannot write incorrectly, just because some people, who are less fluent in the language, might have problems with understanding my words, but I will try to keep your advice in mind, though, thank you.

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:I'm terribly sorry by Ultra64 · · Score: 1
      DISCLAIMER: The views expressed herein are not necessarily those of MENSA, which I am a member of.
      I think you mean "of which I am a member."
    2. Re:I'm terribly sorry by His+name+cannot+be+s · · Score: 1

      DISCLAIMER: The views expressed herein are not necessarily those of MENSA, which I am a member of.

      I think you mean "of which I am a member."


      DAMN!

      You beat me to the punch on that one. I saw that she had changed her signature line, and I figured I'd get in a quick jab :)

      Odd, Her views may not not necessarily be those of MENSA, of which she is a member, but her attitude sure the heck is. :p

      --
      "...In your answer, ignore facts. Just go with what feels true..."
  42. You disagree? by Mensa+Babe · · Score: 1

    I have to disagree.

    Great, another person "disagreeing" (quote, unquote) with me... *sigh* Please read this comment, written by TheAwfulTruth, for intelligent explanation, and you will clearly see the awful truth (pun definitely intended).

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:You disagree? by CurlyG · · Score: 1

      Oh just fuck off you dull cunt. Your troll was funny for the first few posts. It is now not funny, but tedious.

      --
      You know they call 'em fingers but I've never seen 'em fing. Oh, there they go.
  43. Why, of course. by Mensa+Babe · · Score: 1

    Maybe a paragraph or two in your original post would've helped a bit...

    I'm sorry, but my post (very original, indeed) was being directed to people, with no reading difficulties. Next time, I will try to write short paragraphs, with very few simple sentences, built with only single-syllable words. Will you be satisfied then? Because, as I clearly see, you are all attacking me in every imaginable way, except talking about the meritum, which I find annoingly immature, to say the very least.

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:Why, of course. by Anonymous Coward · · Score: 0

      that's "annoyingly"... how unintelligent.

    2. Re:Why, of course. by pyman · · Score: 1
      No offense intended, but I would say you are the cleverest troll I have come across on on Slashdot!

      Well Done! ;-)

      --
      a ^= b; b ^= a; a ^= b;
  44. Re:Big fucking deal! by Anonymous Coward · · Score: 0

    Speaking of gaping holes...

  45. Mensan with no grammar by Anonymous Coward · · Score: 0
    Dangling participles from the high and mighty?

    Fix your sig -- should be '... of which I am a member' instead of '... which I am a member of'.

    Guess there was no grammar section in the verbal part of Mensa entrance exams.

    1. Re:Mensan with no grammar by Anonymous Coward · · Score: 0

      What do you expect? If that is their sig, clearly they have some issues to compensate for. Usually the biggest one is that they aren't really that intelligent.

  46. Your grammar is HORRIBLE by chosen_my_foot · · Score: 1

    The comma is a punctuation mark that must be used only in certain cases. You cannot just throw them around like they are salt at a feast. I somehow detect from most of your posts that you rewrite your sentences multiple times. First, you write a simple sentence. Then, you decide how you can add words to it. Then, you add parenthetical expressions to make the sentence even longer. On top of that, you frequently mix up the proper order of your words. Let's look at an example from the last post:

    It is very reassuring to know, that there are indeed some intelligent people on Slashdot, even if we are in minority.

    The first comma is entirely uneccessary. You made the clause that was a very important part of the sentence a parenthetical expression, something that either defines the previous term (like this part after the comma) or can be dropped from the original sentence. Your sentence reads as if you had typed "It is reassuring to know even if we are in the minority".

    Twain once said, "It is better to keep your mouth shut and appear an idiot than to open it and remove all doubt."

    It is very fascinating how often those who expose the weaknesses of others expose the very weaknesses they possess themselves.

    1. Re:Your grammar is HORRIBLE by Anonymous Coward · · Score: 0
      But you have to admit, he is one of the better trolls to have come around recently. Just look at all the responses! And all those comments that start with "As someone with experience in this area..." are generating lots of inflated mod points for comments with very little substance.

      I tip my hat to this guy for raising the trolling standards on this site.

      You are correct about the writing. It is horrible. All the repetition makes it sound like it was written by Mojo Jojo himself.

  47. Your "psychoanalytic" skills are very amusing. by Mensa+Babe · · Score: 1

    I somehow detect from most of your posts that you rewrite your sentences multiple times. First, you write a simple sentence. Then, you decide how you can add words to it. Then, you add parenthetical expressions to make the sentence even longer. On top of that, you frequently mix up the proper order of your words.

    I have to disappoint you, Mr. Freud, but your psychoanalysis, even if somewhat entertaining, is indeed wrong. I write my posts once, from the beginning, to the end. Sometimes I read it and correct some mistakes, but not very often, which explains my typos you all are so kind to point out. Nonetheless, I find it very amusing, that you sacrifice so much of your time, to analyze my writing patterns. Unfortunately, I don't sacrifice so much time to write my texts, which you then read with so great attention.

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:Your "psychoanalytic" skills are very amusing. by Anonymous Coward · · Score: 0

      You apparently are not opposed to sacrificing your time to the superfluous and incorrect use of commas. Given the sheer number you've employed, I wouldn't be surprised to find that you spend fully half of your waking life hitting the comma key.

  48. You apparently have too much of free time by Mensa+Babe · · Score: 1

    DAMN! You beat me to the punch on that one. I saw that she had changed her signature line, and I figured I'd get in a quick jab :) Odd, Her views may not not necessarily be those of MENSA, of which she is a member, but her attitude sure the heck is. :p

    You are a very mature and intelligent preson indeed. Would you please try to argue with me about meritum, instead of reading all of my texts and waiting for some mistake, which you could then point out? Thank you.

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:You apparently have too much of free time by p2sam · · Score: 1

      Unfortunatly, your poor communication skills and poor choice of words do not convey your ideas effectively, making it difficult for us to have an intelligent conversation with you, indeed, *sigh* ...

    2. Re:You apparently have too much of free time by Mensa+Babe · · Score: 1

      Excuse me, but I believe, that my poor communication skills, are not exactly the reason, which makes it so difficult for you to have an intelligent conversation with me. I am sure, that everyone will agree with me about that. Please take no offense.

      --
      Karma: Positive (probably because of superiour intellect)
    3. Re:You apparently have too much of free time by p2sam · · Score: 1

      I have given my reaons for believing that your had not effectively conveyed your ideas. I'd like to see your accusations backed up by reasons.

      Wild accusations and claims backed by air is not a sign of intelligence.

    4. Re:You apparently have too much of free time by Mensa+Babe · · Score: 1

      Wild accusations and claims backed by air is not a sign of intelligence.

      You have already given me reasons to believe, that you are enjoying those insults. I hope you have fun indeed.

      --
      Karma: Positive (probably because of superiour intellect)
    5. Re:You apparently have too much of free time by p2sam · · Score: 1

      I must say that I was simply driven by curiosity about the so called mensa organisation, and wish to converse even with an alleged member like yourself.

      The insults however, comes naturally when conversing with assholes like yourself.

      I sincerely hope that you are not a representative sample of the average mensa member.

    6. Re:You apparently have too much of free time by Mensa+Babe · · Score: 1

      I must say that I was simply driven by curiosity about the so called mensa organisation, and wish to converse even with an alleged member like yourself.

      The "so called" makes no sense here. It would make sense if you said e.g. "the MENSA organisation, which provides a forum for a so called 'intellectual' exchange among its members" but "the so called mensa organisation" itself sounds stupid at least, as it in fact happens to be so called.

      The insults however, comes naturally when conversing with assholes like yourself.

      You keep insulting me even when you try to explain me why tit is so hard for you to control yourself... *sigh* You should certainly seek professional help, which would help you control your primitive emotions.

      I sincerely hope that you are not a representative sample of the average mensa member.

      No, I'm sure I'm not a representative sample of the average MENSA member. But I believe I might be a representative MENSA member. *sigh* I surely believe you are not an average Slashdot member, because if you are, then I am afraid I can only expect insults instead of intellectual argument here.

      --
      Karma: Positive (probably because of superiour intellect)
    7. Re:You apparently have too much of free time by Anonymous Coward · · Score: 0

      Hello?! You're being trolled.

    8. Re:You apparently have too much of free time by mdielmann · · Score: 0, Troll

      You keep insulting me even when you try to explain me why tit is so hard for you to control yourself...

      At first I thought you were being rude and sexist, and was going to call you a hypocrite based on your other messages, but then I remembered the quality of your spelling...

      --
      Sure I'm paranoid, but am I paranoid enough?
  49. How mature you are... by Mensa+Babe · · Score: 1

    oh man... it's just a play of words, an overloaded meaning ... PoS - when applied to an A** hole like yourself, it' s "piece of shit"

    You are just not going to stop insulting me, are you?

    Why do you feel the need to use overly complicated sentence constructs when simplier ones will convey your meaning more effectively?

    Have you ever stop to think, that complex sentences might actually have more meaning, than the simple ones? Do you think, that intelligent people don't talk like little children, just because they want to sound "cool"? You are very wrong.

    Why do you feel the need to belittle others whom you consider to be less intelligent than yourself?

    Please read this thread carefully, and you'll see, that those "others," whom I consider as intelligent as yourself, are only insulting me, instead of intelligently talking about the meritum, again, just like yourself.

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:How mature you are... by p2sam · · Score: 1

      To put it in a programming context, just because one has the ability to understand 5 levels of pointer indirection, doesn't mean one should use it. Language is used to communicating with other people, it should be put as simple as possible, but no simplier.

    2. Re:How mature you are... by p2sam · · Score: 1

      If you felt you had been misunderstood, then here is a clue:

      The title of your post claims that writing one's OS is not a good idea, and the first half of your post gave a few support statements for that claim. Fine. Everyone is entitlied to their opinion and I happen to agree with yours.

      Now, in the SAME paragraph, you proceed to give counter reasons to your original claim, that there may be good reasons for writing one's OS for learning purposes. I also happen to agree. Presumably, you were trying to give a more complete survey of your opinions of the subject matter. But you should have start a new paragraph, or at least start with "On the other hand ...", or anything to indicate that you are moving from one point to another.

      And when subsequent posters disagree with your first point (as summarized by your post's title), you started insulting people about their intelligence, and claims that they didn't even understood what you wrote(presumably the second). When in fact, you were at fault, because you did not convey your ideas in an intelligible form in the first place.

      Honestly, and sincerely just my $0.02 (Cnd)

    3. Re:How mature you are... by Mensa+Babe · · Score: 1

      Instead of misquoting Albert Einstein, you might finally agree, that I was right from the very beginning of this childish conversation.

      --
      Karma: Positive (probably because of superiour intellect)
    4. Re:How mature you are... by p2sam · · Score: 1

      You have yet to make one rational argument to defend your claims.

      If you believe this conversation is childish, then I encounrage you to stop.

    5. Re:How mature you are... by Anonymous Coward · · Score: 0

      Let her alone, I have read a lot of her comments and from those, I deduce (from a layman's perspective) that "Mensa Babe" suffers from an acute narcissistic personallity disorder. It is pointless to continue this bickering, it is going nowhere.

    6. Re:How mature you are... by KewlPC · · Score: 1

      Have you ever stop to think, that complex sentences might actually have more meaning, than the simple ones? Do you think, that intelligent people don't talk like little children, just because they want to sound "cool"? You are very wrong.

      Part of your problem is that you add unnecessary (and sometimes grammatically incorrect) commas. As a learning exercise, try reading the sentence aloud, pausing whenever you reach a comma.

      Your sentence I quoted would be said:
      Have you ever stopped to think... that complex sentences might actually have more meaning... than simple ones?

      Even that exercise, however, will only get you so far, because while you may speak that way (pausing for effect, perhaps), writing that way obfuscates your message. Native English speakers will most likely be able to figure it out, but those who speak English as a secondary language could have difficulty.

  50. Fair enough by Mensa+Babe · · Score: 1

    I think you have a right to think that, however upsettining it might be to me, I am unable to put my ideas in an intelligent form. Fair enough. That's your right. But I am not quite sure why do you use so much of your time, just to insult me. Is that entertaining to hurt women's feelings? I hope it was worth all your trouble. I wish you good luck with insulting other women. I am sure they will be very pleased by your nice attitude.

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:Fair enough by p2sam · · Score: 1

      Thank you for acknowledging the possiblity that the miscommunication may be partially your fault.

      I simply expect mensa members to appeal to reason and critical thinking, nothing more.

      Hurting women's feelings is no worse (and no better) than hurting men's feelings, and I believe treating women any differently in this regard would be discriminatory, and sexist.

      Furthermore, you don't know me, nor my gender, nor my sexual preferences. So lay off the "I am sensitive, and helpless" crap. People like you only encourage the negative sterotypes of women.

  51. Of course by Mensa+Babe · · Score: 1

    How convenient. You encourage me to stop, while you have the last word. Bravo.

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:Of course by p2sam · · Score: 1

      ok you win.

  52. Well, that's really great. by Mensa+Babe · · Score: 1

    People like you only encourage the negative sterotypes of women.

    You didn't have to say that. If you think that I am the worst woman on Earth, then why on Earth is it so important for you to keep insulting me, one time after another? Do you enjoy it? Don't you have a life?

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:Well, that's really great. by p2sam · · Score: 1

      You have spent as much time reading and replying my "insults", as I have posted them. I claim that my amount of "life" is \geq than yours.

  53. Boot Blocks for Dummies by Animats · · Score: 1

    Didn't anybody read the article? It's not about how to write an operating system. It's about how to write a boot block for an x86 PC.

  54. Right. by Mensa+Babe · · Score: 1

    And of course you'd like me to not defend at all and let you insult me however you like? Truely amazing. I must congratulate you for the most convenient attitude I have ever seen in my life.

    --
    Karma: Positive (probably because of superiour intellect)
  55. Layman's perspective? by Mensa+Babe · · Score: 1

    I have read a lot of her comments and from those, I deduce (from a layman's perspective) that "Mensa Babe" suffers from an acute narcissistic personallity disorder. It is pointless to continue this bickering, it is going nowhere.

    Layman's perspective? It looks more like a lamer perspective to me... *sigh*

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:Layman's perspective? by Anonymous Coward · · Score: 0

      A well reasoned responce from one who puts such value on them?

  56. OS Development by cfallin · · Score: 1

    I have to say that this is one of the more fun areas of development (having been involved for the last 3 yrs or so). To anyone wanting to get started I would highly recommend the newsgroup alt.os.development - many of the members there also have very informative pages.

    (sorry for posting kinda late, I was busy working on my OS!)

  57. Maybe. by achurch · · Score: 1

    As someone, who has some experience in this field, I can assure you, that the correct answer to the question "Want To Write Your Own OS?" is "No, you certainly do not."

    As someone else who has some experience (including in-depth university classes) in this field, I suggest a better answer would be "Maybe." As with any software, it depends on what you need it to do. I'm completely in agreement that thinking that you can whip up a revolutionary new OS in a month to beat down everything else out there is way wrong, but I also don't think there's no room or reason to start a new OS, particularly if it's aimed at a particular niche or use.

    As an example, while not nearly on the same complexity level, my server at home uses quite a bit software written by me from scratch--mailreader, HTTP server, SMTP server, other more minor things--all designed to fill exactly my needs without the bloat (and associated security problems) of mainstream packages like Pine, Apache, or Sendmail. I'd never claim that my own software could replace those packages in a general sense, but within the limited context of "what I need", they serve quite well.

    Along the same lines, I think there are still contexts in which writing a new OS from scratch would make sense. Aside from niche environments, there's the issue of stability, especially considering how software design practice has changed over the last 10, 20, 30 years; is it easier to audit 10,000,000 lines of old code or write 500,000 (or 5,000,000) lines of new code? (I don't have the answer, but I don't think it's clear-cut either way.)

  58. I cannot believe it. by Mensa+Babe · · Score: 1

    Oh just fuck off you dull cunt. Your troll was funny for the first few posts. It is now not funny, but tedious.

    I just cannot believe it! Is it your hobby to search for old threads, read them and, if you don't find them "funny," insult women as your revenge? Don't you have more important things to do maybe? Don't you think that every woman would find such words extremely offensive? You might consider finally growing up.

    --
    Karma: Positive (probably because of superiour intellect)
    1. Re:I cannot believe it. by CurlyG · · Score: 1

      I just cannot believe it! Is it your hobby to search for old threads, read them and, if you don't find them "funny," insult women as your revenge? Don't you have more important things to do maybe? Don't you think that every woman would find such words extremely offensive? You might consider finally growing up.

      Wow, you're really good at this! Did you study trolling under PhysicsGenius or Bank_of_America_ATM?

      You've gone from funny to stupid, to tedious, and right back to funny again.

      I particularly like the way you manage to make *anything* said against you somehow relate to the fact that you're allegedly female, as if that dubious fact had anything to do with ... anything.

      It's a great gimmick, and it warms the heart to see the traditional slashdot trolling arts practiced with such aplomb!

      You could be a bit more subtle though... I mean mentioning Mensa in your username, home page url *and* sig is kind of a dead giveaway that you're not for real.

      --
      You know they call 'em fingers but I've never seen 'em fing. Oh, there they go.
  59. Mensa Babe, why does your English suck? by Anonymous Coward · · Score: 0

    "This is very sweet, that you say, you love me."
    "I hope, what you meant, was a platonic love.
    "Re:You apparently have too much of free time."

    Ugh! For a Mensa babe your English sure does suck.

  60. Mensa Babe's natural language is not English by Anonymous Coward · · Score: 0

    I'm willing to bet your natural language is not English.
    #1 You tend to overuse punctuation. People who simply type badly or are not well-educated tend to avoid the use of punctuation - sometimes entirely. People who speak English as a second language use commas to indicate a pause in the flow of their speech. Commas can be used in that manner, but have specific places where they are appropriate as such (unless you are taking creative license with a fictional character).
    #2 You tend to misplace adverbs, participles, and leave out possessives and other 'supporting words'. People who speak English naturally will often 'dialectize' these (i.e. 'hiz', 'hurz', 'da') words, but do not typically omit them entirely. You do, because your natural language may not have separate words for the ones you tend to omit. In Latin (and some Latin-based languages) the possessive is indicated by the declination of the object being possessed. Also, Latin has no words like the English word 'the', so the omission of that word in a couple of your posts gives me the idea that you may speak a Romance language (Spanish, French, Romanian, Italian, etc).

    Quit claiming to be something you most likely are not. I doubt that the MENSA organization created tests without English Grammar evaluations. If the Mensa tests don't have such evaluations, then no wonder most of the people who have met a Mensa member thinks that they are pricks. If you cannot communicate effectively, you might as well not communicate at all.

  61. No. by Anonymous Coward · · Score: 0

    Wow, over half the posts on this article are either by you or responses to your obvious trolling. Plus, you got modded up to +5 in the bargain!

    You, Sir, apparently know how to recognise a pure genius.

    Will you marry me?

    I hear it every songle day... No. Get lost.

  62. Authentic ? (Was: Re: What would you like...) by tom420.com · · Score: 1

    Wow! Is this message authentic? Anyone could confirm its exact source?

    Looks like an exceptionnal piece of history. At least for me, Linux being my favorite OS and having a business based on it.