Slashdot Mirror


User: maxwell+demon

maxwell+demon's activity in the archive.

Stories
0
Comments
12,279
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 12,279

  1. Re:Stay With Me Here on What Do You Do With a Personal Domain? · · Score: 1

    Viola! The Worlds Worst Website

    How does that web site relate to a Viola?

  2. Re:Killer App on Device Reads Messages From Surface of the Brain · · Score: 1

    Probably because a cursor is about the simplest to control.

  3. Re:Their lives are already ruined on Sorry For the Detainment, Here's a Laptop · · Score: 2, Insightful

    or let them go.

    And in what country do you propose to deposit them?

    The United States of America, of course.

  4. Re:excellent sales story on When VMware Performance Fails, Try BSD Jails · · Score: 1

    I agree that for Virtualisation is great for managing machines (failover,migration,etc) but running a whole os in a vm just for browsing is ridiculous, it offers no real advantage to a chroot/jail while giving you more things that need to be kept up to date and so is infact *slightly* less secure

    I'd already consider chroot just for browsing ridiculous. If you are paranoid, just run the browser under a different user ID.

  5. Re:excellent sales story on When VMware Performance Fails, Try BSD Jails · · Score: 1

    How did you get that through the junk character filter?

  6. Re:Cue postgres fan bois on Has MySQL Forked Beyond Repair? · · Score: 5, Insightful

    OTOH, a dead project provides the ultimate stability

    Not when it comes to security vulnerabilities.

    OTOH, a dead project provides the ultimate stability

    Not when it comes to security vulnerabilities.

    It's stable in respect to security vulnerabilities as well. No need to create new exploits just to keep your malware compatible.

  7. Re:Illegal on Robot Warriors Will Get a Guide To Ethics · · Score: 1

    But you can have killbots which kill killbots. Those don't need a limit (well, they probably shouldn't kill each other, but only the enemy robots).

  8. Re:Fundamental change on Robot Warriors Will Get a Guide To Ethics · · Score: 1

    On the positive side, there's no ethical problem about destroying a robot.

  9. Re:Been there, done that on Robot Warriors Will Get a Guide To Ethics · · Score: 3, Insightful

    But (most) humans have this innate condition where taking another life weighs on them somewhat - even most veterans and soldiers I know get twitchy about having to shoot at another person. A robot removes this and replaces it with cold logic.

    I don't see a technical reason why a robot couldn't get that, too. It would be just a negative score for any killed human, which would enter the equation when making the decision.

  10. Re:One byte for base pair on 13,000 Volunteer To Put Personal Genomes Online · · Score: 1

    Since there are four different bases, you need two bits to store a pair, which means you could get 4 bases into a byte without using any non-trivial compression method.
    But given that the genomes of different people are very similar, they should already save a lot of memory by storing just diffs to a "standard" genome (say, the sequence from the Humane Genome Project).

  11. Re:Plural? on 13,000 Volunteer To Put Personal Genomes Online · · Score: 2, Informative

    Isn't the plural of "volunteer", "volunteers"?

    For the noun, yes. For the verb, no.

  12. Re:Let Java do it for you. on Microsoft To Banish Memcpy() · · Score: 1

    Java? Unlambda!
    <marketingspeak>

    • No explicit managing of memory!
    • All programs are automatically typesafe! (there's only one type: function of one argument)
    • The full power of functional programming! All your programs will be fully functional as soon as they pass the syntax test!
    • Easy to learn syntax!

    </marketingspeak>

  13. Re:Not for C++ on Microsoft To Banish Memcpy() · · Score: 1

    = never modifies the right-hand side of the equal sign, only the left hand side.

    std::auto_ptr would like a word with you. This was one of the dumbest decisions the committee made.

    Indeed. But the next version of the C++ standard will deprecate auto_ptr.

  14. Re:Pure Python != panacea on Microsoft To Banish Memcpy() · · Score: 1

    I guess he just saw that the link leads to some page at perl.org, didn't follow the link, wrongly assumed that it led to some Perl advocacy, and decided to put his Python link against it.

  15. Re:What an idiotic idea. on Microsoft To Banish Memcpy() · · Score: 1

    There are two arrays to overflow

    Well, that's an argument to have three size parameters: One for the size of the source array, one for the size of the destination array, and one for the amount to copy. After all, the amount to copy not just shouldn't exceed the destination array size, but also shouldn't exceed the source array size. So according to this argument, the perfect function would be

    void memcpy_ss(void* dest, size_t destsize, void* src, size_t srcsize, size_t size)

    with an error if size exceeds either srcsize or destsize.

  16. Re:if (dest_sz copy_sz) throw; else memcpy(...); on Microsoft To Banish Memcpy() · · Score: 1

    Indeed, throwing an exception is the worst thing you can do to such a low-level function (and yes, memcpy is about as low level as you can get).

    High-level C++ code shouldn't use memcpy, simply because it's too low-level (it won't even work correctly if there's a non-trivial copy constructor). Use std::copy instead. For low level code, memcpy makes sense, but exceptions don't.

    Why not just doing the same as the strnXXX functions, i.e. just stop copying at the end of the destination buffer? That is, just implement it as

    memcpy(dest, src, min(destsize, srcsize));

  17. Re:deniers come out in 3 .. 2 .. 1 .. on Ocean Circulation Doesn't Work As Expected · · Score: 1

    Just wait until some crazy Romulan with a scary looking CGI drilling device comes along ;)

    Why does it matter if they control the drilling device with a CGI script?

  18. Re:But Al Gore says on Ocean Circulation Doesn't Work As Expected · · Score: 1

    3. While you are correct that the world will probably survive just fine as a whole, some of us are rather concerned about the amount of climate refuges we are going to see and in time the wars that will most likely follow.

    Good point. Part of what killed the Roman empire was a slight climate change (the world getting colder), causing more people going southwards, where the Roman empire was "in the way".

  19. Re:But Al Gore says on Ocean Circulation Doesn't Work As Expected · · Score: 2

    Some species will die. Others will benefit. END OF STORY.

    The only question is in what group our species will be found.

  20. Re:No, No, now it's worse!!!! on Ocean Circulation Doesn't Work As Expected · · Score: 3, Funny

    Don't worry. It won't affect us before the CERN black holes have eaten the planet. :-)

  21. Re:deniers come out in 3 .. 2 .. 1 .. on Ocean Circulation Doesn't Work As Expected · · Score: 5, Funny

    There is no global warming. It's just the surface. The core temperature is unaffected.

  22. Re:Offer the Ebook for free. on What Can I Do About Book Pirates? · · Score: 1

    1: Publish to PDF
    3: Link to your homepage and paypal account
    2: Post the torrent yourself
    4: Profit!

    No missing steps, yay!

    But you do the third step before the second! :-)

  23. Re:Offer the Ebook for free. on What Can I Do About Book Pirates? · · Score: 1

    We won't ever get a world without work, because there are many activities which you wouldn't do as hobby, e.g. I cannot imagine anyone doing canalisation cleaning as hobby.

  24. Re:Offer the Ebook for free. on What Can I Do About Book Pirates? · · Score: 2, Insightful

    That's fact, and what's fact is by definition fair, if the term has any meaning at all.

    In some contries there's still (inofficial) slavery. That's a fact. So I should conclude it's fair?
    In some countries you can get arrested for saying something the government doesn't like. That's fact. Therefore it's fair?

    Actually, according to your definition of "fair", there cannot be any unfairness in the world. Because whatever happens in the world is fact, therefore according to your definition it's fair.

  25. Re:yes we had backups on Hacker Destroys Avsim.com, Along With Its Backups · · Score: 3, Insightful

    That's a really bad analogy. The backup is not there in order to prevent hackers from breaking in, the backup is there in order to prevent loss if they break in, or if data gets lost for some other reason. That is, backups are not a security measure, they are a measure to limit damage.