Slashdot Mirror


User: TazMainiac

TazMainiac's activity in the archive.

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

Comments · 11

  1. Re:End of Firefox? on Firefox With H.264 HTML 5 Support = Wild Fox · · Score: 1

    Meanwhile, here in the free world, h.264 is an open standard, as are all file formats, so...

    Really?

    Really:

    http://slashdot.org/submission/1222248/Microsoft-gets-its-FAT-Patent-back-in-Germany

  2. SL-9000 - no seperate navigation/play keys on Recommendations for a Universal Remote? · · Score: 1

    I didn't like mine. The main reason was that with the DVD player, you typically want seperate "navigation" (up/down/left/right/enter) and "play" (play, pause, stop, rewind, ff, etc) buttons. With my SL-9000, I had to reprogram the number pad to do the navigation, which was a royal pain.

    My new receiver (Denon) came with a very nice remote that is very similar to the SL-9000, but has a seperate navigation circle and play control keys. Highly programmable as well. So that's my current universal remove.

  3. swapping Ctrl/Caps on Have Keyboards Gone Crazy? · · Score: 1

    The NT Emacs FAQ has a number of simple solutions for generically swapping Ctrl/CapsLock under WinNT/2kXP, either permanently (no driver needed, just a registry hack) or per-user (needs a driver). Go here.

  4. Re:same article from realworldtech.com on Why The Dinosaurs Won't Die · · Score: 1
    Why the hell can't I post this fargin URL!?!?! It keeps inserting a space between the 00 and 22.

    Nuke the space, cut and paste and there you go. Same article posted back in march.

    Sigh... One more try, link here

  5. Re:same article from realworldtech.com on Why The Dinosaurs Won't Die · · Score: 1

    Damn formatting... here's the URL: http://www.realworldtech.com/page.cfm?AID=RWT03100 2214227

  6. same article from realworldtech.com on Why The Dinosaurs Won't Die · · Score: 1

    This is the same article the same author wrote
    back in March in Real World Tech:

    http://www.realworldtech.com/page.cfm?AID=RWT031 00 2214227

    Some nice pictures, but it looks the same.

  7. eEye's response on On The Costs of Full Security Disclosure · · Score: 2, Informative

    eEye's response,

    http://lwn.net/2001/0816/a/eeye.php3

    clearly points out that they provided *NOTHING* to the virus writer, and in fact the virus writer used another virus as a template. The criticism in this
    case is quite unfounded.

  8. Re:someone should make a code red three on Code Redux · · Score: 1

    This is a really good question, I haven't even seen any discussion about it. Really, how hard would it be to write another virus/worm that acts like Code Red II, but instead of the exploits does something like:

    a) shuts off IIS
    b) downloads the patch and installs it
    c) puts a big notice on the screen about what it just did

    Seems appropriate to fight fire with fire, so to say.

  9. Re:@Home on Code Redux · · Score: 2, Informative

    It's all the arp requests from all the Code Red
    probes for non-existant IP addresses.

    tcpdump -i eth0 -n

    (or whatever your external ethernet interface is).

    I was seeing 2000/minute ARP requests on Monday,
    don't know what it is now...

  10. TheaterMaster SL-9000 on The Do-It-All Remote? · · Score: 1

    http://st2.yahoo.net/e-town/theatunrem.html

    Got one. It's awesome. Has 8 different device
    modes, and presets for just about everything.
    And anything it doesn't have presets for, it
    can learn from your old remote. Now, if I can
    only rember what buttons I program where...

  11. Re:buzz buzz buzz on All-Purpose Distributed Computing · · Score: 1

    You can try and think about it as just another optimization, but it won't work very well. Many programmers (especially younger ones) do a *very* poor job of writing code that can be easily adopted for parallel executions: loads of globals, poor structure, etc, etc, etc. When you try to automatically parallelize this, you end up with lots of locks all over the place, and performance, even in a distributed system, will certainly go down. Everything ends up serialized anyway, and now you have the communications and locking overhead on top of everything else.

    Plain and simple fact is that parallel programming is not easy to get right even now (I *know* this, having spent *way* too much time debugging such things), and automating it is NOT going to help anyone. Garbage in, parallel garbage out. You *have* to think about parallel execution, from the beginning, if you want to have any chance at decent parallel performance, either explicitly or via some kind of automatic conversion. I know that optimizing compilers can do a lot of good, but no one has yet convinced me that they the can make up for poor, serialized, designs.

    Pete