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:No problem... on The 5 Most Laughable Terms of Service On the Net · · Score: 4, Funny

    A simple yellow Post-It note with my terms stuck to the screen allows me to click "OK" to the presented terms.

    So much for the blonde joke about putting whiteout on the screen... they were way ahead of us all along.

  2. Re:SUN used to do it. on Coating a Motherboard In Thermal Resin? · · Score: 5, Interesting

    Someone guy unpotted a Votrax module and refurbished the damaged components so that it still worked afterwards and he could reverse-engineer it. It's interesting and has lots of pictures of before and after. The thing starts out as a a big block of epoxy and ends up a normal-looking circuit board.

  3. Re:The dirty little secret on Restaurant Owners Use Zapper To Cook the Books · · Score: 1

    People say "everybody does it" to try to relieve their guilt at stealing from the honest people. I don't cheat on my taxes, and I have to pay more because of the people who do.

    Who are these honest people that are being robbed?

  4. Re:And you guys want to bring democracy to others? on In MN, Massive Police Raids On Suspected Protestors · · Score: 1

    The USA is so generous we gave all our democracy away, mostly to Iraq. But don't worry, we're working on Democracy 2.0, which fixes all the problems with 1.0, things like Habeas Corpus and security from unreasonable searches.

  5. Re:This only works on SOME phones on A Device to Grab Data From Cell Phones · · Score: 1

    If content encryption is on, then the blackberry won't send data via the data port or bluetooth until the password is entered. Enter the wrong password 10 times and the blackberry securely wipes itself.

    Couldn't it do something less-drastic like exponentially reducing the frequency of password attempts allowed? So after 10 errors, there's an hour delay before it allows another? And after say 15, several hours?

  6. Re:I know I know! on How Can Nerds Make a Difference In November? · · Score: 1
    1. Figure out a way of rigging a vote for a believable candidate.
    2. Describe exactly what you are going to do and how you are going to do it, and encrypt this document.
    3. Send the encrypted document anonymously to all the media organisations you can think of in advance of the election.
    4. Rig the vote.
    5. After the election, send the decryption key to all the media organisations.

    Do the above except step 4, only use encryption that can encrypt both outcomes in a single document, then send the appropriate key that decrypts whichever outcome occurred.

  7. Re:Efficiency? on MIT Secretly Built Mega-Efficient Nano Batteries · · Score: 3, Funny

    I've found a box of matches to be a perfect model for laptop batteries.

  8. Re:More Andy Hertzfeld on Andy Hertzfeld Shares His Thoughts on 25 Years of the Mac · · Score: 3, Informative

    Folklore.org is full of great stuff.

  9. Re:What are people using to dodge spam? on Facebook & Myspace Taking Some Spammers To Court · · Score: 1

    Oh, I only use those services to provide disposable e-mail addresses that forward to my main one. I don't know whether they even have any spam filtering.

  10. Re:Why on Best Western Loses Details On 8 Million Customers · · Score: 1

    I just don't get it. I recently wanted to post to the GameFAQs message boards, so I went to register for a new account. Unfortunately, they required my name, address, date of birth, and gender before I could register, and providing false information for these was against their terms of service. It's insane, just to post to a message board. I'm guessing it's due to CNet owning them now. Oh well, just have to find somewhere else.

  11. Re:Paper and gasoline-based dinosaurs on 5 Ways Newspapers Botched the Web · · Score: 1

    Ever used a typewriter? They were a real pain in the neck.

    No, sorry, I've only used the hand-operated kind.

  12. Re:What are people using to dodge spam? on Facebook & Myspace Taking Some Spammers To Court · · Score: 1

    I've been using GishPuppy for a while, though it's sometimes down and doesn't forward as instantly as I like. Its simple interface for creating new addresses and expiring current ones is the best aspect for me. I've used Spam Gourmet a few times and it looks promising. It has several interesting features that I have yet to master.

  13. Re:As fast as C code??? on Firefox Gets Massive JavaScript Performance Boost · · Score: 1

    I really hope the future is dynamically-compiled languages, because they can optimize for a particular machine on a particular boot; many more things become compile-time constants. Apple's use of LLVM is promising.

  14. Re:C++ has one major problem on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    Since I don't use string::find much, I'd guess the last one is valid, since a "past-the-end" index is a useful value to allow (in quotes since pos isn't technically an iterator). Reading the 2003 standard (ISO/IEC 14882:2003(E)) section 21.3.6.1, it seems all four are valid, with the last two returning npos, since no value can be found that satisfies pos<=result and result+1<str.size(), and the function has no preconditions listed. Are you saying that some implementations don't merely return npos for the one you have marked "runtime error"?

  15. Re:Wonderful on Wealthy Mexicans Getting Chipped in Case of Abduction · · Score: 5, Insightful

    Think "watchdog timer". It's like all you sysadmins who can tell when a system goes down, not because it sends a "Hey, I just went down" signal, but because it stops sending a "hey I'm up" signal.

  16. Re:Encryption on UK Gov't Lost Personal Data On 4M People In One Year · · Score: 1

    Encryption makes it easier to lose data, not harder. For example if it gets corrupt, it's basically all gone. Or if the encryption key is lost, the data is lost too. Anyway, I think it's a good thing that governments are losing data on people. Maybe at some point they'll know nothing about us, like it should be.

  17. Re:Billing per bandwidth on Comcast Has 30 Days To 'Fess Up About P2P Throttling · · Score: 1

    I'd hate to consider the financial consequences of getting recruited into a botnet. Could you imagine finding out that you have a virus when you receive a $200+ cable bill?

    An mass switch to more secure operating systems, Microsoft being forced to clean up its act? It's not like those botnets are currently free; everyone pays, just not in a tangible way.

  18. Re:C++ has one major problem on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    I was looking for concrete examples of "getting into trouble", because often such things are due to misunderstanding of the library/language, rather than inherent problems.

  19. Re:Why not just call it C++#? on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    That's what this is... automatic memory management...bigger libraries... restricting pointers more and more.... I mean, C++ is evolving so badly it makes Pascal suddenly look a lot better as a compile time language.

    Because it's not Microsoft's language, for one. Also, you really should evolve your reading comprehension, because C++ will not be adding automatic memory management (GC), merely better guarantees so that GC libraries can be more portable. But reading the interview wouldn't have helped for your goal of a half-assed swipe at C++.

  20. Re:C++ is no longer a modern language on Interview Update With Bjarne Stroustrup On C++0x · · Score: 2, Informative

    Implicit conversion to const char* is not in the standard string. Neither is a constructor which allows string(n). Your string examples could be supported by a string class, but they would reduce safety by allowing accidental addition to integers. The preferred way is to use a stringstream to convert any object T to a string using its operator . C++0x will address the copying issue via the move constructor, giving user code the benefits without any changes since it mainly concerns library implementors. Really, your post comes off as an ill-informed swipe at C++. For example, "I could go on with other examples of things that the super-powerful C++ can't do". Why the petty attitude?

  21. Re:C++ has one major problem on Interview Update With Bjarne Stroustrup On C++0x · · Score: 1

    As long as you do programming full time you are OK but if too much of your time is spent on the application side of things you quickly get in trouble.

    Examples?

  22. Re:Good payback on 42% of Web Users Sneak Onto Others' Online Accounts · · Score: 1

    Had a girlfriend who turned out to be promiscuous. She used the same password for everything, or a very small variation.

    That's not all she used for everything....

  23. Re:Whoops on James Powderly of Graffiti Research Labs Detained In China · · Score: 1

    Wow, Death Vans. That's creepy as hell. I mean, I know that there's been state-sanctioned capital punishment since the beginning of civilization but it just seems creepy when combined with the mobile approach. I'm used to seeing mobile clinics, mobile libraries, mobile law offices, not mobile death chambers.

    Funny, most people I know drive one every day.

  24. Re:"Millionth of a meter" on Mars Lander Snaps the Most Detailed Pics Yet · · Score: 1

    And a microscopic photo of dust would require a microscope just to see. I think they meant photo of microscopic dust. I'm guessing the article submitter wouldn't fare well in a programming language involving indirection.

  25. Re:Lets call this what it really is on Support Grows For Blanket Music Licensing · · Score: 1

    Don't worry, you'll also be making monthly welfare payments to other imaginary property industries too, as part of your ISP bull. You think they'd let the music people be the only parasites?