Slashdot Mirror


User: Eudial

Eudial's activity in the archive.

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

Comments · 1,157

  1. Re:A clear advantage on Mozilla/Firefox Bug Allows Arbitrary Program Execution · · Score: 1
    This was redundant in your code:
    • printf (for unformatted text you should use puts).
    • argc, argv (never used).
    • the indentation. 2 spaces is enough.

    This was deprecated:
    • return 0, use EXIT_SUCCESS instead.
    • The uppercase 'W' in "World".

    You should also end your sentences with a dot.
    #include <stdio.h>

    int main(void)
    {
    puts("Hello world.");
    return EXIT_SUCCESS;
    }
  2. Re:Foreign jurisdictions on Senate Takes Aim At P2P Providers · · Score: 2, Funny

    Or even better, we could start eliminating kids that are likely to code such appliations in the future!

    = Intellectual people.

    I bet RIAA would be in favor of that as well :-)

    Heh, the RIAA is like a crossbreed between Mao Tse Dong and Gestapo.

    Ein Volk, Ein Reich, Nicht P2P?

  3. Re:It's come a long way, I'll admit that.... on Fedora, SuSE And Mandrake Compared · · Score: 1

    ...If you don't makes sense you can allways...

    Eh. I'm going to blame my spelling on that it's 5 am local time and i really need some sleep.

  4. Re:It's come a long way, I'll admit that.... on Fedora, SuSE And Mandrake Compared · · Score: 1

    Why would you want your distro to detect your hardware? Not like you don't know what you put in your computer. If you don't makes sense you can allways do a modprobe * and check in dmesg which modules worked and which were redundant.

  5. Wrong power-setting on What Was Your Worst Computer Accident? · · Score: 1

    Ever connected all the cords to a computer in a dark room, accidentally flipping the red power setting switch?

    Boom.

  6. Re:I'll be really spoiled when... on Linux Users Are Spoiled · · Score: 2, Insightful

    Gimp doesn't crash randomly when editing very large images

    That's when you buy more RAM ;)

  7. rot13 on China Will Monitor, Censor SMS Messages · · Score: 1

    Time to start rot13ing them SMSes?

  8. The difference between Linux and Windows is on Linux vs. Windows: What's The Difference? · · Score: 1

    That Linux is an operating system kernel and Windows is an operating system.

    That article is a comparison between Linux + a bunch of 3rd party software not necessary to run Linux and Windows.

  9. Re:Bushgame on In These Games, the Points Are All Political · · Score: 1

    The interface was kinda buggy as well. (although that might have been my Linux Flash plugin messing with me)

  10. o.O on Reducing Electricity Bills For Buildings With XML · · Score: 1

    *jot 220V on a note*
    *stick in power outlet*
    *insert cord*

    220 V power? ;)

  11. Suppose they're afraid on Microsoft Launches Visual Studio Express, VS 2005 Beta · · Score: 1

    Suppose they're afraid that if everyone starts out with applications like KDevelop and Eclipse they'll loose ground. I'd be if i were them.

  12. Re:Let the market speak on EC Suspends Microsoft Sanctions Due to Appeal · · Score: 1

    The law is too slow - let the market decide.

    The market's too slow, let's decide in hand to hand combat! c'mon! It'll be fun! We're 100 times as many...

  13. Re:Must we? on Arctic Ocean Survey May Reveal Lost World · · Score: 4, Informative

    Until we taint it with our presence.

    True,the modern bacteria we're going to bring will literarlly obliderate any life that exists in there.

  14. Oh my god! on Mutation Creates SuperKid · · Score: 1

    X-men is becomming reality!

  15. Re:Yeah... Ok on Report From "Get The Facts" · · Score: 1

    On the other hand, who said that corporations should develop software?

  16. Re:Yeah... Ok on Report From "Get The Facts" · · Score: 2, Insightful

    5. On this point, I dont' care who says what - Microsoft has better (and I mean this in all respects) tools available for Rapid development.

    Do we want rapid development? The shorter development stage the greater the chance of overlooked bugs. RAD-tools makes programming, which used to be quite a craftmanship - which required a great deal of intelligence and wisdom, to pointless point and clicking.

    // Low level C / Assembly programmer (and somewhat biased by that :-)

  17. Atom by atom? on Cars To Be Assembled Atom By Atom · · Score: 4, Funny

    Somehow i feel sorry for the poor people assigned the job of actually putting them together.

  18. Re:Freedom of Speech has limits... on EU Pushes to Limit Internet Speech · · Score: 1

    It's absolutely justified banning public statements like "All jews should be gased" or "All blacks should be hung" or "Our race should be cleansed".

    As soon as you start censoring a democracy it ceases to be a democracy. All opinions should be allowed independent of their nature, since no man is greater then any other man and because of that no man has the right to decide what ideological ideas are right or wrong.

    The line between a censored democracy and a dictatorship is infinitely thin. Tampering with freedom of speech to protect yourself only removes the little protection you have left.

  19. Re:Mainstream. on Scanlation: Distributed Manga · · Score: 1

    Possibility A:
    Aliens kidnapped you and dropped you off in Tokyo and then brought you back and erased most your memory of it.

    Possibility B:
    Are you on drugs?

    Possibility C:
    Timespace folded over itself causing a distortion in the universe that allowed for such unbeleivable things to happen.

    Possibility D:
    You're just saying that to get friends.

  20. Spreads via bluethooth eh? on First Mobile Phone Virus Discovered · · Score: 1

    Great! In the future moms won't tell you to stay away from public toilets and murky places because you can get STDs. Now you can get PTDs as well x.x;

  21. I don't get it on Yahoo Boosts Email Space in response to Gmail · · Score: 0

    Why use external mail providers?

    Step 1. Install sendmail & some spam filter
    Step 2. Get a free domain (dyndns.org)
    Step 3. [insert-your-drive-capacity-here] mail storage (~ 180 Gb for me).
    Step 4.???
    Step 5. Profit!

    Ok, sure, some people are on dialup and so, but the rest of us. why?

  22. Re:How hard does it GET? on Flaw in Florida E-Voting Machines · · Score: 1

    To be more unix-alike you could do it like this =P

    #!/bin/bash
    # vote.sh (C) 2004 us govt.

    ELECTION = 2004_election

    read vote
    echo vote >> $ELECTION

    # end of vote.sh

    create 2004_election, chown it to root, and set permissions to 660, and set setgid the vote.sh program =P

  23. How hard does it GET? on Flaw in Florida E-Voting Machines · · Score: 1

    How hard does it GET? Why can't they just CnP this code, install linux on the machines and just ... vote??

    #define _GNU_SOURCE
    #include

    int main(void) {
    char* c = NULL;
    FILE* votes;
    size_t len = 0;
    size_t readb = 0;

    if((votes = fopen("votes_nov_2004", "a")) == NULL) {
    perror("votes_nov_2004");
    exit(EXIT_FAILURE);
    }

    puts("Enter your vote>");
    while((readb=getline(&c, &len, stdin))>0) {
    fputs(c, votes);
    putc('\n', votes);
    puts("Enter your vote>");
    }

    fclose(votes);
    exit(EXIT_SUCCESS);
    }

  24. Re:GNOME heavy? on Is the Linux Desktop Getting Heavier and Slower? · · Score: 1

    You might as well run 30 xterms and let the wm handle it. Not like you'll ever use the 30 tabs simultanously anyway.

  25. Re:GNOME heavy? on Is the Linux Desktop Getting Heavier and Slower? · · Score: 1

    Why use those bloated terminals anyway. I think this proves my point (and i had QT and kde-libs loaded just to give Konsole a chance):

    bash-2.05b$ time for i in 0 1 2 3 4 5 6 7 8 9; do xterm -e date; done

    real 0m1.013s
    user 0m0.280s
    sys 0m0.090s

    bash-2.05b$ time for i in 0 1 2 3 4 5 6 7 8 9; do konsole -e date; done

    real 0m6.617s
    user 0m3.870s
    sys 0m0.290s