Slashdot Mirror


User: ls671

ls671's activity in the archive.

Stories
0
Comments
2,940
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,940

  1. Re:This doesn't prove ants can count on Ants That Can Count · · Score: 1

    > "It seems these ants do rely on walking the exact same number of steps each time. "

    I don't think so, I figure the ants are smart enough to find the nest when they are only a few steps away from it. Also, see my above example on drummers playing whole songs without counting. Counting is typically human and gets in a way when you play music, you only count when you are beginning and learning to play. Who knows ? Counting might be a very primitive behavior after all. If more intelligent life forms exist, maybe they don't need to count (i.e. use numbers) ;-))) Think of it, maybe humans count because their brain isn't sophisticated enough to remember quantities otherwise.

    I am over doing it quit a bit but then again who knows ? ;-)))

  2. Re:This doesn't prove ants can count on Ants That Can Count · · Score: 2, Insightful

    What I was trying to say is that counting usually involves numbers. You could build a car engine (or do almost anything) without using numbers. Instead of knowing the clearance for a given part is say 11mm, you could just use a mark on blank ruler or other tool the find out the right clearance. I suspect something similar is going on with the ants.

    Also, I am glad you specified that you were no drummer. Drummers can reproduce songs with thousands of hits on the drum pads over and over again without counting. Don't let the drummer counting "1-2-3" at the beginning of a song fool you. He could as well go "Pom, pom, pom" and it would work as well.

  3. This doesn't prove ants can count on Ants That Can Count · · Score: 5, Interesting

    If the experience results are valid, there is still a difference between counting and remembering and reproducing a sequence of movements.

    Ants might remember that they have to do "step step step step step step step step" to get back to their nest without actually counting. This would seem much more natural to me.

    Here is an example applicable to humans: As a drummer, I can create and reproduce the same roll on the fly. But if you asked me how many times I hit the drum pad, only then I would have to count. I did not need to count in order to reproduce the roll nor did I know how many times I actually hit the drum pads.

    This leads me to believe ants cannot count, why would they need to. Counting is good for humans in order to trade, so they have developed that capability. Same goes for female animals that could notice one of their puppy is missing. They don't have to "count" them, they only have to remember a picture of all the puppies and notice the picture they now see is different from the normal picture. There is many more examples you can think off where one can appear to count without actually doing so.

  4. Re:For the most part. on Moving Decimal Bug Loses Money · · Score: 1

    Yep, of course they are byte arrays ! What else could they be ??? Not cow arrays for sure... ;-)

    But they are a lot more convenient than strings when you need to perform operations (like, add, multiply, square, etc. ) on the numbers ;-))

    Also, nowadays, some languages use 2 bytes for each char in a string in order to support unicode and still perform quick operations on strings. You would then waste some memory when you store a lot of very large numbers.

    Finally, BigIntegers in the link I sent are actually bit arrays with a size rounded to the nearest multiple of 8. You must know that computers are much faster performing operations on binary representation of a number than on a string representation of the same number ! ;-)

  5. Re:That's... on Australian Govt. Proposes Internet "Panic Button" For Kids · · Score: 4, Funny

    What do you mean, I just called 911 because I have been modded down on Slashdot and they said its being taken care of...

    I wish I had that panic button.

    P.S. I am 11 years old.

  6. Did he cross the English Channel to speak with...? on Jetman Attempts Intercontinental Flight · · Score: 2, Funny

    Did he cross the English channel to speak with Elton John so they could sing "Rocket Man" together ? ;-))

  7. A way to solve tsunamis problems on Earth ? on STEREO Satellites Spot Solar Flare Tsunami · · Score: -1, Offtopic

    Maybe if we harness solar tsunamis, we could use them to cancel out the wave of sea water tsunamis on Earth or at least cause them to evaporate !

  8. Re:For the most part. on Moving Decimal Bug Loses Money · · Score: 2

    Huh, haven't you heard of BigInteger like data types ?

    They are pretty common in accounting in various languages...

    http://java.sun.com/j2se/1.5.0/docs/api/java/math/BigInteger.html

  9. Re:You mean 11,500 Euro on Moving Decimal Bug Loses Money · · Score: 1, Informative

    I am not American, but I find the comma used as decimal point stupid and silly although I should be using it in my native locale.

  10. Re:No contacts, please on Where Are Your Contact Lens Displays? · · Score: 1

    I said: I wear my CONTACT sunglasses at night.
    I wear my contact sunglasses at night
    I wear my contact sunglasses at night.
    I said to you now: I wear my contact sunglasses at night

    http://www.anysonglyrics.com/lyrics/c/corey-heart/sunglasses-at-night.htm

  11. Re:Glad I am not the only one believing that... on Senators Ask EC To Let Oracle-Sun Deal Go Through · · Score: 3, Interesting

    I agree with you, I didn't write: "that philosophy plays into the Sun/Oracle situation" ;-))

    But can we be absolutely sure that Oracle buying Sun was the one and only way to get Sun out of financial problems ?

  12. Glad I am not the only one believing that... on Senators Ask EC To Let Oracle-Sun Deal Go Through · · Score: 5, Insightful

    From TFA:

    "The DoJ runs on completely different competition rules than the EU," he said. "The DoJ looks at where there is harm to consumers. Their decision is businesses can look after themselves. The EU is more likely to be protective of competitors. They believe trade is better with more small competitors."

    I am glad I am not the only one believing that... ;-)))

  13. One step closer to the desktop ? on Ubuntu Reaching Out To 16,000 Anime Lovers · · Score: 1

    Reading TFA surprised me at first; what linux is used to do manga anime ???

    But I guess after all it is a good sign that linux might be getting closer the desktop, e.g. multipurpose desktop computer ;-))

    It wasn't traditionally used for such tasks, at least at first.

  14. Re:Is it just me ? on Haskell 2010 Announced · · Score: 1

    Interestingly enough, there is talks about implementing “soft tail call” and "“hard tail call” optimization in the JVM:

    http://blogs.sun.com/jrose/entry/tail_calls_in_the_vm

  15. Re:Is it just me ? on Haskell 2010 Announced · · Score: 1

    Almost all programming languages support recursion so recursion is recursively redundant ! ;-))

  16. Re:Is it just me ? on Haskell 2010 Announced · · Score: 1

    Hehe /. screwed the Haskell code, look here for the source :

    http://www.haskell.org/haskellwiki/Introduction#Quicksort_in_Haskell ;-)))

  17. Re:Is it just me ? on Haskell 2010 Announced · · Score: 3, Informative

    > I'm not sure what you mean by "recursive style",

    Look at Quicksort in Haskell :

    qsort [] = []
    qsort (x:xs) = qsort (filter (= x) xs)

    This is what I mean, no loops, recursion. I used Prolog and ML to solve logic problems and it is pretty handy. Prolog is especially suited for solving logic problems ( "logic programming" ).

  18. Is it just me ? on Haskell 2010 Announced · · Score: 3, Insightful

    I admit that a function with no side effects can ease making things thread safe, but are recursive style functional programming languages really used that much in "SMP and concurrency programming" nowadays. I wrote some code in that category but I never envisioned a functional programming language would suit the job. Am I the only one ? ;-))

    Thanks for your replies,

  19. Re:Uh... on Google Patents Displaying Patents · · Score: 3, Funny

    Never mind that... I sense a business opportunity...

    "Google Patents can't seem to find the new Google patent for Google Patents."

    I am going to patent the process by which Google Patents will be able to find the new Google patent for Google Patents. ;-)

  20. Re:Easy way to disable...? on Fedora 12 Lets Users Install Signed Packages, Sans Root Privileges · · Score: 1

    I do not know much about the inner working of yum, my distro doesn't use it so bear with me if my comment sounds stupid ;-)

    At first glance, it sounds to me that if a plain user can install packages on a system outside its home folder, he must be granted root privileges through a setuid program somewhere along the path or be granted sudo root permissions. So why not just remove the setuid bit on the culprit program or remove sudo privileges ?

    Removing setuid bit on some programs is a normal step for me in hardening the security level on any system. It seems to me like a more straight forward and surer way to close potential holes. By changing configuration parameters, one needs to actually look at the source code of the programs in order to make sure that the potential holes are actually eliminated.

  21. Re:New department for demolitions firms on Bomb-Proof Wallpaper Developed · · Score: 1

    Hehe ;-)

    Demolition needs to attack the structure. Actually, I think this is a good thing for stopping flying debris so blasting demolition crews won't have to put their own layer of "wallpaper" around the building to stop flying debris, thus making the demolition easier and cheaper ;-))

  22. Proper monitoring on $9 Million ATM Hacking Ring Indicted · · Score: 3, Insightful

    Just earlier, we heard about a hole in Bing cash-back program and many people rightfully stated that not enough care is taken when developing and more importantly, designing secure systems.

    This is one more case that proves them right. Bright hackers usually pick the easiest target. Due to the hit and run nature of the theft, I believe that proper real-time monitoring of the system could have prevented most of the attack. Maybe half an hour or less instead of 12 hours time span before it would have been stopped.

  23. Re:fp on Feds Bust Cable Modem Hacker · · Score: 2, Funny

    Be careful, you could be charged with "conspiracy, aiding and abetting computer intrusion, and wire fraud."

  24. Re:Linkstation Pro Duo on Low-Power Home Linux Server? · · Score: 2, Interesting

    Nope, both system are the same you are not taking into account the following factors:

    1) additional hard drives will cause your power supply to generate more heat and to consume more energy.

    2) additional hard drives will cause your controller to generate more heat and to consume more energy.

    3) additional hard drives will cause all fans on your sytem to rev faster and to consume more energy.

    4) Additional hard drives will cause your cpu to work harder generate more heat and to consume more energy especially if you are using software raid. If using hardware raid, your raid card will consume more energy.

    etc. etc.

    All these components don't have a 100% efficiency and transforming power from the 110 AC outlet produce energy lost trough heat.

    Do the test yourself by measuring the power drawn from the AC outlet, not the power drawn at the hard disk connector.

    The utility company bills you according to this.

  25. Re:Vodka on A Tale of Two Windows 7s · · Score: 1

    Nope, they were aware of this just as I am.

    WinMe, Win 98, Win 95 and Win 1.X were not even OS, they were just a graphical interface to DOS.

    Still, they aren't considering windows 2000 and above as "true multitasking OS".

    Didn't you notice the distinction ?

    multitasking OS vs "true multitasking OS" ?

    Cheers,