Slashdot Mirror


User: red_gnom

red_gnom's activity in the archive.

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

Comments · 144

  1. Quick, quick, everybody... on Camera Meets Speedometer, Travel Across Country Together · · Score: 1
    It is a 20MB file.

    Quick, quick, everybody, before it gets slashdoted!

  2. Re:More coverage... on Gene Therapy Cures "Bubble Boy" · · Score: 4, Informative
  3. The retrovirus is harmless. on Gene Therapy Cures "Bubble Boy" · · Score: 2, Informative
    The retrovirus is used only as a harmless vehicle for transportation of the good gene. It has an ability to penetrate into cells. Eventually the virus gets destroyed, and the "fixed" gene remains inside.
    Gene therapy


    Similar method was originally tried on cystic fibrosis patients, but the positive results lasted only for about three weeks, after that repaired cells were replaced back again with the faulty ones.
    It seams to be more complicated.
    Cystic Fibrosis Gene Therapy

  4. Re:selfdestruct chemicals on Cracking the Smartcards · · Score: 1

    That is exactly what I thought he tried to spell.

  5. You have got to learn good programming practices! on It's Not About Lines of Code · · Score: 1
    Everybody knows that size DOES mater.

    I will give you a good advice: DO NOT, and I repeat DO NOT use loop statements. They are very bad. Instead use simple and tried copy and paste, paste, paste, paste, paste, paste, paste, paste. You will observe instant productivity boost. You will gain applause of your management, and maybe some day you will became one of them.

    Have a happy LOC programming.

  6. Re:selfdestruct chemicals on Cracking the Smartcards · · Score: 1

    Believe it or not, but you carry that "dangerous" chemical in your stomach buddy ;-)

  7. One question: on Every Species on Earth · · Score: 1

    I just want to know one answer: if the dancemonkeyboy is already classified?

  8. Here is a list of all the theaters. on Lack of Digital Screens for Attack of the Clones · · Score: 2, Insightful
  9. Good Hobby Suppliers on MIT's Acrobatic Helicopter · · Score: 1
  10. Let the championship begin! on Carmack: Lord of the Games · · Score: 1
    "I just want you to know that I can write slicker and tighter code than John."

    I propose to organize a match between the two code champions Mr. Gates and Mr. Carmack, which would allow Mr. Gates to prove that he is neither a coward nor a liar.

  11. The real security hole. on Security Hole in Morpheus · · Score: 2, Insightful

    The only security hole is the hole in the brain of the person who created the article :-)

  12. This is great news! on Borland C++ For Linux · · Score: 1
    Maybe they have a reason to believe, that their compiler will produce better optimized binaries.

    I would love to see C++Builder for Linux though. It is incredibly good product. I use it for Windows, and love it.

    Yes! This is great news for Linux comunity.

  13. Re:Using Linux on RTCW Single Player Demo & Linux Binaries · · Score: 1

    I went through that dilemma already. I have an ATI 7200 SDR 64MB. It rocks on Linux and Windows. The difference in the image quality is clearly visible in higher resolutions, such as 1600x1200. On this territory nVidia is not a competitor to ATI or Matrox. Not yet.

  14. Already done in Canada on Science and Education in Biodomes · · Score: 1
  15. Or buy verisign.com on VeriSign/NSI Proposes Domain Name Wait Listing Service · · Score: 1
    Or even better, we could bid for verisign.com

    That would be a spin.

  16. $18.79 for DSL on AOL/TW Plans for $230 Monthly Cable Bill · · Score: 1

    The DSL from Bell Canada costs only 30 Canadian dollars a month, which is US$18.79. Please tell me, where in US the price for DSL is that low?

  17. Re:Won't this hurt accuracy? on Microfluidics: Miniature Chemistry Labs · · Score: 1

    This is absolutely truth.
    For the best results doctors should take no less than five liters of the patient's blood for testing.

  18. Re:optimization or beauty on Quake 2 Source Code Released Under The GPL · · Score: 1

    Ooops, the braces:


    ...

    void err(void)
    {
    /* error handler | err(0);*/
    }

    void err(int errorNumber)
    {
    /* error handler */
    }

    etc...

  19. Re:optimization or beauty on Quake 2 Source Code Released Under The GPL · · Score: 1

    How about this?

    void func(void)
    {
    if (func1())
    err();
    /* ... */
    if (func2())
    err();
    /* ... */
    if (func3())
    err();
    /* ... */
    return;
    }

    void err(void)
    /* error handler */
    }
    void err(int errorNumber)
    /* error handler */
    }
    etc...