Slashdot Mirror


User: noidentity

noidentity's activity in the archive.

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

Comments · 6,325

  1. Re:Not a good precedent to support on Northwest Privacy Lawsuit Dismissed · · Score: 1

    Saying that they don't have to bound to what they said in (virtual) writing because people didnt actually read the policy does not excuse Northwest, or others, from their obligations.

    Along these lines, I might not read the policy but find out about its content from other sources, like a privacy website or something like Consumer Reports. I might be better informed through third-party sources who have more expertise and time to devote to the task than me.

  2. Feedback score... on Huge Console Auction Debuts · · Score: 1

    Seller information
    lingjr (255)
    Feedback Score: 255


    What a fitting feedback score too, just waiting to roll over.

  3. Re:In case of slashdotting on New Linux Kernel Crash-Exploit discovered · · Score: 1

    And on the new trusted computing architecture machines, attempting to compile any program crashes the machine (well, and sends notification to the police).

  4. Re:Not quite the world's WiFi leader on Austin Becoming Wi-Fi Hot Spot · · Score: 0, Troll

    Do you know how nice it is to take your iBook, Vaio, whatever, down to the local park and have free high-speed WiFi access? Thanks to these people (and others!), some day you will.

    How much nicer to leave the junk at home.

  5. Re:Counterpoint on Why Learning Assembly Language Is Still Good · · Score: 1

    With the incredible power provided to us by modern CPU's, efficiency is just about completely irrelevant for 99% of non-game applications. Think... when was the last time you thought "This word processor just doesn't respond to my keypresses fast enough." or "AIM takes way too long to open a new IM window."? The reason why these programs aren't getting "faster" (as the article complains) is because there is no way to do so. They spend 99.9% of their time waiting for user input already.

    Nowadays the OS and other libraries provide common media services, like video and audio playback, so even processor-intensive things are mostly outside application code.

    When Apple moved from 68K to PowerPC processors, they added a 68K emulator to run old apps. Many of them run just fine because they call the OS to do most significant operations, which run in native PowerPC. I think that Microsoft had an issue where their newer PowerPC-native word processor ran slower than the older 68K version because PowerPC code is larger on average and was taxing the cache.

    It might be that in the future interpreted application code runs faster because it places less of a burden on the cache. I/O isn't keeping up with CPU speeds.

  6. Re:don't bother........ on Why Learning Assembly Language Is Still Good · · Score: 1

    Assuming the primary goal is performance, the blunt reality is that about 90% of the code is irrelevant as to impacting that performance. Any screweys in that code, particularly trying to "improve" performance, will have indirect deletorious effects on that performance.

    Performance can be improved only by changes to a small portion of the code, but correctness can be disturbed by changes to any secion of code. Thus, when optimizing one wants to change only that code responsible for performance, and as little as possible.

  7. Re:Little bits of metal == the only way to go on Not-So-Clean Hard Drives For Sale · · Score: 1

    Perhaps there's money to be made in performing this sort of destructive service for banks and other entities handling sensitive customer information.

    Maybe, but there's definitely money to be made in performing apparent destructive services on sensitive data...

  8. Re:DUPE! on Not-So-Clean Hard Drives For Sale · · Score: 1

    Stop, timothy... we've heard this joke before. In fact, you seem to post this same story every nine months or so.

    So... Slashdot is like those hard drives, with old data still hanging around to come across if you're bored.

  9. Re:I wouldn't worry about your grocery list... on Microsoft Patents The Task List · · Score: 5, Funny
    I wouldn't worry about your grocery list unless you generate it from comments in your source code. ;)

    It's so convenient to make notes in source code. Isn't that what our computers are for, to manage our data? Compare this
    need more jolt (emu.cpp line 2)
    pay electric bill (emu.cpp line 11)
    out of potato chips (emu.cpp line 24)
    with the verbose
    // start emulating a track
    // TODO: need more jolt
    assert( rom );

    // clear all memory
    cpu.low_mem.assign( 0 );
    sram.assign( 0 );
    eram.assign( 0 );
    unmapped_page.assign( 0 );

    // TODO: pay electric bill

    // set memory mapping

    // start out unmapped
    int i;
    for ( i = 0; i < page_count; ++i ) {
    cpu.data_reader [i] = read_unmapped;
    cpu.data_writer [i] = write_unmapped;
    cpu.code_map [i] = &unmapped_page [0];
    }

    // ROM
    // TODO: out of potato chips
    for ( i = 8; i < page_count; ++i ) {
    cpu.data_reader [i] = read_rom;
    int rom_bank = initial_banks [i - 8];
    cpu.code_map [i] = &rom [rom_bank * page_size];
    eram [0xFF0 + i] = rom_bank;
    }
    // ...
    Oh man, I need to pay my electric bill...
  10. Re:of course, I've used the same password for year on Passwords Can Sit on Hard Disks for Years · · Score: 2, Interesting

    Of course, I've used the same password for years and nobody's figured it out yet.

    Or maybe you've used the same password for years and haven't figured out that somebody else has.

  11. Re:Mac OS X and Pastor on Passwords Can Sit on Hard Disks for Years · · Score: 1

    So I went w/ this model and it's had great payoffs--when I need a particular login, I click on an alias to my main password (Pastor) file, enter the file's password to decrypt it, look for what I need (it alphabetizes), and I'm all set--meanwhile, there's absolutely no risk of security--I love it.

    So by having a single password, you gain security?

  12. WHAT? on Is Caps Lock Dead? · · Score: 1

    WHAT IS CAPS LOCK? THANKS.

  13. Re:It's been said before... on Don't Smudge The Sensor When You Press 'Play' · · Score: 5, Funny

    If I can hear it, I can copy it.

    Aha! That's the solution: make it impossible to hear! Boss will surely compensate me well for this...

  14. Microsoft must use this... on Using a Password One Doesn't Consciously Remember · · Score: 1

    ...to keep Windows users from realizing they're seeing the blue-screen-of-death for the nth time. "I don't know what it is about Windows, but I can tell it when I see it."

  15. Provides convenient excuse for content access on NetGear Also Has Remote Access Wide Open · · Score: 3, Funny

    Come on! These backdoors provide a convenient excuse when you're charged with breaking the law by accessing illegal content over your connection. If the vendor told you of their presence, you wouldn't be able to use them as a defense. Er wait, if you didn't know of them... hmmm...

  16. Re:In related news... on Bioterrorism Charges Brought Against Professor · · Score: 5, Funny

    "The FBI announced today that TCBY (The Country's Best Yogurt) has been shut down until further notice under section 817 of the PATRIOT Act."

    So, is "contains live and active cultures" a bug or a feature?

  17. Re:*sigh* on Is Your Computer Leaking Toxic Dust? · · Score: 1

    The more that we try to "fight" bacteria the more our civilization becomes prone to simple infection.

    Oh no! Is there a way we can stop this "simple infection"?

  18. Re:Portable HD durability? on 60GB iPod Coming? · · Score: 1

    Something I've always wondered: just how resistant are these HDs to (physical) shocks?

    Halve the size of a hard drive (halve each dimension) and its mass becomes 1/8 of its original, while cross-sections of internal components become 1/4 of what they were. Strength is determined by cross-section, thus every component's strength-to-load ratio is doubled.

    Of course, small drives aren't exact scaled-down versions of larger drives.

  19. Re:Not a one-time pad on One-Time Pads To Protect Electronic Bank Access · · Score: 1

    For instance, your phrase could be "Jack and Jill went up the hill", so your password would be, "JJW!TH". Then you add a number to it that you can remember, for instance, the last four of your phone number reversed. So JJW!TH9834. Now throw in something unique from each site you visit. Take Google, perhaps Jack and Jill don't go up the hill, they go to Google: JJW!TGGL9834.

    How about using passwords which look like normal addresses of things? This gives them built-in steganographic qualities, so way they can be written along with other addresses of the same type and won't stand out if you happen to be on a machine with keystroke logging. Examples include phone numbers, website addresses, e-mail-like usernames (remember, they can be made-up).

  20. Hacked message on Short Text Messages In Mid-Air · · Score: 1

    Yeah and then someone will hack it to show a different message than you entered (you'd only notice if you waved it to yourself or in a mirror).

  21. Re:Wikipedia Article on Colossus has been Rebuilt · · Score: 3, Informative

    There is also a wikipedia article about the Colossus computer , perhaps more relevant.

  22. Re:Reminder: on Colossus has been Rebuilt · · Score: 3, Funny

    It only matches the speed of a modern PC at the single task it was designed for.

    Yeah, they're still trying to figure out how to make it crash as often.

  23. Re:All I can say is on Touchscreen BoomboxPC · · Score: 1

    This thing runs Windows 98 with a scan of the original boombox' front panel as background image.

    Running Windows is a good way to make it go "boom!"

  24. Re: But what about.... on Build Your Own Dog Wagon · · Score: 1

    Yeah, all those dogs in a RAID array... sure to run fast.

    Unfortunately when a member craps out it's a little messier to rectify...

  25. Re:wow on When 8 Megapixels Just Isn't Enough · · Score: 3, Funny

    imagine penthouse printed out in this size format....

    It's their new response to piracy: make the images so large that it's easier to just buy the magazine.