Slashdot Mirror


User: Cyberax

Cyberax's activity in the archive.

Stories
0
Comments
5,567
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 5,567

  1. Re:Hmmm.... on Sneak Peek At Neal Stephenson's "Anathem" · · Score: 1

    So? Just fire up your browser, navigate to http://en.wikipedia.org/ and check the facts.

    I actually liked it in Baroque cycle.

  2. Re:Plain old English anyone? on Sneak Peek At Neal Stephenson's "Anathem" · · Score: 1

    In "The Moon Is A Harsh Mistress" Heinlein just uses straightforward Russian. I always wondered why that's such a big deal.

    PS: maybe because I'm speaking Russian.

  3. Re:Fast as C but uses lots more memory on Firefox Gets Massive JavaScript Performance Boost · · Score: 4, Informative

    What a bunch of stupidity...

    First, "programs reliant on STL" can be as fast as anything on plain C. And very often they can be faster (for example, because dwarf-style exception handling is faster than return result checks).

    Second, JITs are NOT "very far along". HotSpot is _already_ faster than C/C++ on some benchmarks. And it's only going to get better, because HotSpot can use real runtime statistics to guide optimizations (C/C++ can also use Profile Guided Optimizations but it relies on static data).

  4. Re:Fast as C but uses lots more memory on Firefox Gets Massive JavaScript Performance Boost · · Score: 3, Informative

    "It wouldn't be JIT then, it'd have to be 'before the code is executed', because you wouldn't want the compiler to spring into action, run on core 2 whilst core 1 twiddles its thumbs waiting for the compilation to finish."

    For example, in Java HotSpot it _already_ works this way. A special thread compiles the code while other thread(s) work in interpreted mode. When compilation is finished, other thread(s) switch to this new fast compiled code.

    Also, there are optimizations in Java HotSpot which are _impossible_ to do using static analysis.

  5. Re:DES, AES, Blowshifh, twofish likely immune on New Attack Against Multiple Encryption Functions · · Score: 3, Informative
  6. Re:It hurts you to learn C++ is still being used. on Interview Update With Bjarne Stroustrup On C++0x · · Score: 2, Informative

    To summarize it, C++ now moves toward design which allows to catch more and more errors during compilation. But at the same time C++ provides tools which allow to write generic code.

  7. Re:It hurts you to learn C++ is still being used. on Interview Update With Bjarne Stroustrup On C++0x · · Score: 2, Informative

    Read: http://www.amazon.co.uk/Modern-Design-Applied-Generic-Patterns/dp/0201704315

    It's a good introduction to modern C++. While the book itself is not really helpful, it gives you a nice overview of "modern" development techniques.

  8. Re:What could possibly go wrong? on Amateur Scientists Seek Fusion Reaction · · Score: 3, Insightful

    Homemade fusors are not likely to have really dangerous levels of neutron radiation.

    The principal danger in fusors is X-Ray radiation. It's produced in generous amounts and can kill you just as good as another types of penetrating radiation.

  9. Re:I use the tools... on Game Developer's Response To Pirates · · Score: 5, Insightful

    You might notice, that since the days of floppies copy protection IS NOT STOPPING PIRACY.

  10. Re:encryption on UK Gov't Proposes Massive Internet Snooping, Data Storage · · Score: 1

    To break 256-bit encryption you need about the same energy as is generated in supernova explosions.

  11. Re:Question on OpenGL 3.0 Released, Developers Furious · · Score: 1

    Bullshit. D3D can be used for CAD programs just fine.

    A lot of CAD developers simply have mountains of _legacy_ OpenGL code back from times when OpenGL was the _only_ working 3D API.

  12. Re:What's so funny about an illegal war? on Google News Has Russian Army Invading Savannah, GA · · Score: 1

    Well, that tells a lot about Putin too.

  13. Yeah, that stuff is dangerous! on Home Science Under Attack In Massachusetts · · Score: 2, Funny

    Yeah, that stuff is dangerous! We need to stop it RIGHT NOW!

    Think of the children! They might get EXPOSED to these vile chemicals.

    Call your congressman!

  14. Re:Utility computing w/o virtualization on Massive VMware Bug Shuts Systems Down · · Score: 1

    How about load balancing then? It's fairly easy to move container applications between nodes.

    Also, some applications may take a long time to restart.

  15. Re:Utility computing w/o virtualization on Massive VMware Bug Shuts Systems Down · · Score: 3, Informative

    Isolation and easy management.

    Isolation of applications in OSGi containers is leaky, one bad-behaving application can bring down the whole containers.

    Lightweight containers (OpenVZ, Virtuozzo) have almost no overhead and allow cool features like load-balancing of ALL applications between cluster nodes. However, all lightweight containers use the same kernel, and one kernel bug can bring down all virtual nodes.

    XEN/KVM have a bit more overhead but with even more isolation (each node has its own kernel).

  16. Re:License Management Software!? on Massive VMware Bug Shuts Systems Down · · Score: 2, Informative

    LARGE corporations usually just buy site licenses. It's easier for them this way.

  17. Re:A local radio station was having fun on Google News Has Russian Army Invading Savannah, GA · · Score: 1

    It's NOT in Ossetia. It's a bit south of Ossetian border.

  18. Animal specimens? on Robot Submarine To Dive Deep In the Caribbean · · Score: 1

    Well, I hope they debugged their image-recognition code.

    In any case, I wouldn't like to be a scuba-diver near this vehicle.

  19. Re:OpenID on Moving Beyond Passwords For Security · · Score: 1

    Yes, it's a weakness. We really need to speed up DNSSEC adoption.

    In fact, I'm going to install it on my DNS servers ASAP.

  20. Re:OpenID on Moving Beyond Passwords For Security · · Score: 1

    In theory, hardware tokens can also authenticate that the OpenID server is the real one.

  21. Re:OpenID on Moving Beyond Passwords For Security · · Score: 1

    No, it's more like RSA tokens used in Internet-banking.

    TPM ensures that no 'untrusted' code is running, hardware tokens are used to ensure your identity.

  22. Re:OpenID on Moving Beyond Passwords For Security · · Score: 1

    A PIN is a weaker form of password. It also relies on hardware (to lock you out if you enter PIN incorrectly several times). It's useful to make simple attacks (like stealing your token) harder.

    A written-down password is less secure than a hardware token. Because you can simply copy the written password (and use it later) but you need to have a physical token to use it. Of course, assuming tokens are not easy to clone.

  23. Re:OpenID on Moving Beyond Passwords For Security · · Score: 1

    There's no real reason for it.

    They are expensive because demand for them is low and economy of scale doesn't have a chance to kick in.

    Combine it with a lot of conflicting proprietary implementations.

  24. Re:b.authenticator on Moving Beyond Passwords For Security · · Score: 1

    So? Of course you can screw up anything.

  25. Re:OpenID on Moving Beyond Passwords For Security · · Score: 2, Insightful

    For most applications "something held" (maybe with a simple PIN-protection) is perfectly fine. Like your keys, for example.

    Good key revocation system is essential in this scenario, however.

    Passwords are much overrated, anyway. Most users inevitably either choose weak passwords or just write them down somewhere.