Slashdot Mirror


User: tonigonenstein

tonigonenstein's activity in the archive.

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

Comments · 105

  1. automatisation is not intelligence on Intelligent Satellite Notices Volcanic Activity · · Score: 2, Insightful
    Is this real intelligence? "Absolutely," he says. EO-1 passes the basic test: "If you put the system in a box and look at it from the outside, without knowing how the decisions are made, would you say the system is intelligent?" Chien thinks so."

    All the system does is basically to compute the score (interest) of the different points of the earth's surface using predetermined criteria (plume of smokes +5 points, flash-floods +2 points) set by humans, and then allocate observation time in priority to the points that have the highest score. This is not what I call intelligence.
    An intelligent system would set its own goals, not follow predetermined ones. In this case an intelligent system would decide by itself that a certain phenomenon is interesting and decide to observe it, without being told about it beforehand.
    If intelligence is their goal they have a long way to go.
  2. Re:Watch out for attacks on ICANN Under Pressure Over Non-Latin Characters · · Score: 2, Insightful

    As a human you might be fooled, but a well designed browser could tell the difference and alert you. So this shouldn't be a problem.

  3. Re:Better alternative on Cross-Platform Development For Windows and OS X · · Score: 3, Informative
    Yep. Which is what permits it to use a signal-slot mechanism which spanks wxWidgets and any other C++ system out there. No more crashes due to dangling pointers, yay!
    libsigc++ (used in gtkmm) gives you typesafe slots/signals in ISO C++, no need to invent your own language. (No granted this wasn't possible at the time QT was originally designed).
  4. Re:Better alternative on Cross-Platform Development For Windows and OS X · · Score: 1
    Oh, and tell me, where are the wxWidgets killer apps?
    Right Here: http://www.aolepk.com/communicator/index.html (Seriously!)
  5. datasheet on The Mechanics of Motion Sensing · · Score: 3, Informative

    Right from the source: http://www.st.com/stonline/products/literature/ds/ 11115.pdf These things are not exactly new. They are used in the automotive sector, or for "stabilizers" in camcorders.

  6. Exactly... on Nokia the Next Gizmondo? · · Score: 1

    I want my DynaTAC 8000X back!

  7. two things on British "Secure" Passports Cracked · · Score: 3, Insightful

    1. I don't understand why they use RFID. If you are not supposed to read it from further than two centimeters then why not use a contact chip (smartcard) ? It would be as practical to read and you would be sure that no one could read it without your knowledge. 2. The argument in the article that goes "if you can read it you can clone it" it completely bogus and make them sound like idiots. Have they never heard of challenge-request authentication ? The basic idea is that the reader authenticates the chip to ensure it is not a forged one. To do this you have a shared secret in both the chip and the reader. The reader then sends a random challenge to the chip, which encrypts it with the secret and send the result back. The reader does the same operation and compares the result. If it matches it considers that the chip knows the secret and is thus original.

    The key idea then is that the chip never sends the secret directly, so a cloner could never guess it, even if it could issue an unlimited number of challenges to the original chip. And without the secret, it cannot produce a clone that would authenticate.

    So in short to clone the chip you need more than the chip, you need to compromise the manufacturer of the system to get the secret.

  8. Re:Governments and computers don't mix on British "Secure" Passports Cracked · · Score: 2, Informative
    sn't 3DES being phased out because the cost of cracking it has fallen dramatically recently?
    No. DES is easy to crack, but 3DES is quite secure. Its disadvantage compared to e.g. AES is its inefficiency.
  9. a minimalist programmer/mathematician's bookshelf on What Good Technical Books Adorn Your Library? · · Score: 1

    I found out you could get away with very few technical books, if you choose them well. Mine are: The C programming language The C++ programming language Effective C++ Design patterns Teubner Taschenbuch der Mathematik The art of computer programming Numerical recipes in C Cours de théorie des modèles Categories for the working mathematician

  10. Lemme guess: on PHP 5.2.0 Released · · Score: 1
    char buf[1024];
    scanf("%s", buf); /* oups */
    When you could do
    std::string buf;
    cin >> buf;
    This is 2006 people, buffer overflows are so 1970.
  11. Lack of details on How Encrypted Binaries Work In Mac OS X · · Score: 1

    Unfortunately the article doesn't explain in any way the really interesting points. For instance:

    - How is the decryption key protected ? If it is included in the kernel binary you can read it.

    - How is the kernel protected? Can you write a modified kernel that use the kernel extension unmodified and allows you to look at the decrypted code ?

    - Can you run the kernel on an emulator (on a mac) that relays the calls to the TC chip so that the kernel thinks it is on a Mac while making it possible for you to look at the decrypted code and package an unencrypted binary back ? If not, why ?

    These are some of the things I'd be interested in knowing.

  12. Re:WHY XHTML are going unnoticed ? on HTML to be 'Incrementally Evolved' · · Score: 1

    Exactly. Assembly works, why bother with so called "high level" languages?

  13. Re:Don't get yer hopes up on Java To Be Opened For Christmas? · · Score: 1
    GCC now accepts Java source and emits either native binaries or Java bytecode. Can it take C/C++/etc and emit bytecode?
    Sure. There are already a few projects aiming to do just that. You can find a partial list here.
  14. Re:Bennett on iPod Cracked, But Does it Matter? · · Score: 1
    Who is this Bennett person ?
    This guy
  15. Re:Bennett on iPod Cracked, But Does it Matter? · · Score: 1
  16. Had to be said... on A Single Pixel Camera · · Score: 5, Funny

    One pixel should be enough for anybody.

  17. It's about time on Google Office To Get an API · · Score: 2

    It's about time their office include an Animal Protection Institute for their code monkeys.

  18. Re:1020 petas on Ext4 Filesystem Enters Experimental Kernel Tree · · Score: 2, Interesting
    My porn collection will now be complete
    In fact, 315 TB should be enough for anybody.

    Here is why:
    Suppose you want to watch porn 24 hours a day from the age of 15 till 75. Thats 60 years = 60 * 365.25 * 24 * 60 * 60 s = 1.89 * 10^9 s
    A DivX is around 600 MB / hour = 600 * 1000000 / (60 * 60) = 1.67 * 10^5 B/s
    So for your lifetime porn collection you need 1.89 * 1.67 * 10^14 B = 315 TB.
  19. Great but... on Water-cooled Radeon X1950 XTX Benchmarks · · Score: 4, Funny

    ...does it come with a cooler for my wallet ?

  20. Java ? on Google "Office" Released · · Score: 1

    I still do not understand why java applets were abandonned in favor of html+javascript applications. Applets are faster, they behave just like regular desktop applications, they are easier to develop, more secure, work the same on every platforms, and you don't have to install anything either.

    It really seems we traded a nice technology perfectly suited to the purpose for a barely working hack. That's sad.

  21. Re:So what's changed? on EU and US Reach Deal On Airline Data · · Score: 1
    Unless the data itself has dramatically changed, I really can't see any functional difference.
    push and pull explained
  22. Re:And this is surprising? on Rough Guide to Outsourcing In China · · Score: 1
    this is the most complex PCA they have manufactured to date
    And what exactly has the Professional Cricketers' Association and The Pennsylvania Council on the Arts to do with this ?
  23. The swiss situation on Dell Launches Free PC Recycling · · Score: 1

    From the comments written so far I thought an exposition of the swiss system may be interesting.
    For a few years now, whenever you buy a piece of electronics you have to pay a mandatory recycling tax, which the store gives back to a government managed recycling fund. The amount depends on the type of equipment.
    Next, every electronics store is required by law to accept any piece of equipment for recycling. You can basically bring your old gear to any store for recycling for free, whether you bought it there or not.
    Finally the store will then arrange for a recycling company to take these items. For every item processed, the two companies will receive back the corresponding tax amount from the global fund, which they will share in a law-mandated proportion.
    The government only manages the fund. Any recycling company can do the job provided it is certified.
    The system works well. For the buyer, it is a lot more convenient to bring his old gear to the next store than to get rid of it any other way. And since you were forced to pay for recycling anyhow, why not do it ? I don't rember the numbers but the percentage of recycled gear is quite high.

  24. Re:RTGs are not dangerous on Are Nuclear Powered Mars Rovers a Good Idea? · · Score: 1
    An RTG-powered rover will work longer and better than a MER rover, assuming all other things are equal (not breakdowns elsewhere)
    Except that power is not necessarily the limiting factor. Spirit lost one wheel and won't be able to move at all if it loses one more. So in this case an RTG won't make it work longer.
  25. Damn... on Intel Previews Potential Replacement for Flash Memory · · Score: 4, Funny

    ... and here I tought naively we could kiss goodbye to Macrobe Flash.