Slashdot Mirror


User: scudderfish

scudderfish's activity in the archive.

Stories
0
Comments
6
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 6

  1. Re:Before... on Hidden Codes in Printers Cracked · · Score: 1

    But after they pull you in, they will be able to show that your printer produced the offending document in question.

  2. It's never too early on When Should You Buy Your Kid A Laptop? · · Score: 1

    I bought my daughter a 12" Powerbook when she was 2 weeks old. Admittedly she's never used it, and it rarely leaves my side, but it is technically hers and not a geek toy for me :)

  3. Re:At least it's not us. on The Great Firewall of China, Continued · · Score: 1

    Yet.

  4. 15 fixed, what about the others? on MS Security Chief Says Windows is Safer Than Linux · · Score: 1

    It doesn't matter how many are fixed, it is the number of unfixed that are important. I'd be happier with 45 out of 50 fixed than 15 out of 600.

  5. Indy 500 on History of "Gods Eye View" 3D Game Perspective? · · Score: 1

    Indy 500 had replays back in 89-90 sort of time. Great for qualifying at the front of the grid and then standing on the brakes and swerving at the start :)

    I'm sure Stunt Car Racer on the Amiga did a similar thing at a similar time.

  6. Re:"Expert Programmer" on Funniest IT Related Boasts You've Heard? · · Score: 2, Insightful

    void addToList(Element *item,Element **head)
    {
    item->next = head;
    *head = item;
    }

    Or something like that. Adding the the head of a list is always quicker than iterating to the end :)