Slashdot Mirror


User: ageforce_

ageforce_'s activity in the archive.

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

Comments · 24

  1. Re:Like a WiiMote! on Cheap 3D Motion Sensing System Developed At MIT · · Score: 1

    the big difference is, that the wiimote needs to have an IR camera. In the presented method the receptors are cheap infrared sensors. The position is calculated by decoding the patterns the projectors send.
    A similar technique has been used to calibrate the image of a projector to a surface. Here is a video: http://blog.makezine.com/archive/2008/04/automatic_projector_calib.html

  2. Re:Sez who? on Obama Says 3% of GDP Should Fund Science Research And Development · · Score: 2, Insightful
    You view is flawed:
    • government and businesses do not always have the same interests.
    • if the government invests into research it might _not_ need private businesses to pay for the outcome of some research. In other words: the research might benefit every citizen and not just the owners of some businesses.
    • Not many businesses (let alone individuals) have the means to do important research. The government is, for instance, one of the rare ones being able to build nuclear colliders.
    • Sure, some "ivory-tower" bureaucrat will decide into which area most of the money will go to. For the US probably a big part will go into the car-industry to catch up with the other countries, but just by balancing the money the bureaucrat can't do _that_ much wrong. In the worst case the US will become specialized in some area.
      The real decision what to research is usually done by the universities and research institutes.
  3. Re:Linux on Intel Cache Poisoning Is Dangerously Easy On Linux · · Score: 1

    I entirely agree with you. I have proposed improvements on the KDE brainstorming forum, but unfortunately nobody really seems to care, or my proposal is just not good enough... http://forum.kde.org/avoid-password-stealing-t-39488.html

  4. Re:euch on Review of KOffice 2.0 Alpha 8 – On Windows · · Score: 1

    AFAIK KDE-lib depends on many libraries. It would be a waste of bandwidth to bundle these libraries to every KDE-program. If you install Amarok and Koffice you should not need to download these libraries twice.

  5. Mutopia on Provider of Free Public Domain Music Re-Opens · · Score: 3, Informative

    Can somebody explain the difference between IMSLP and Mutopia ( http://www.mutopiaproject.org/ )?

  6. Lilypond on Provider of Free Public Domain Music Re-Opens · · Score: 4, Interesting

    Sad they do not promote Lilypond more. Many PDFs on the site have been typeset using Lilypond, but only the PDFs are available.
    Lilypond: http://lilypond.org/

  7. Re:Iris gives away too much information on FBI's New Eye Scan Database Raising Eyebrows · · Score: 1

    Just found similar information on Wikipedia's article on "Retinal Scan"s.
    http://en.wikipedia.org/wiki/Retinal_scan#Uses

  8. Re:Iris gives away too much information on FBI's New Eye Scan Database Raising Eyebrows · · Score: 2, Informative

    somehow the link did not come through... http://www.springerlink.com/content/32p6733743573016/

  9. Iris gives away too much information on FBI's New Eye Scan Database Raising Eyebrows · · Score: 1

    Iris scans are a really bad idea. An iris gives away way too much information. In particular it allows to diagnose many illnesses:

  10. getting slow on 2008 International Broadband Rankings · · Score: 4, Informative

    Here's the ranking:
    Score on Specific Broadband Measures
    Household Price5
    penetration3 (Lowest monthly
    Ranking2 (Subscribers Speed4 price per Mbps)
    per (Average download (US $ purchasing Composite Score6
    Nation household) speed in Mbps) power parity)
    1 South Korea 0.93 49.5 0.37 15.92
    2 Japan 0.55 63.6 0.13 15.05
    3 Finland 0.61 21.7 0.42 12.20
    4 Netherlands 0.77 8.8 1.90 11.77
    5 France 0.54 17.6 0.33 11.59
    6 Sweden 0.54 16.8 0.35 11.53
    7 Denmark 0.76 4.6 1.65 11.44
    8 Iceland 0.83 6.1 4.93 11.20
    9 Norway 0.68 7.7 2.74 11.05
    10 Switzerland 0.74 2.3 3.40 10.78
    11 Canada 0.65 7.6 3.81 10.61
    12 Australia

  11. Re:open street map? on Open US GPS Data? · · Score: 5, Informative

    I could help that project by uploading my route tracks but what if I use mapsource (garmin software) to look up the road name am I infringing on something?
    Yes. Unfortunately you are not allowed to do that. Map-vendors are protecting themselves against copying by deliberately introducing errors. See for example http://wiki.openstreetmap.org/index.php/Copyright_Easter_Eggs
  12. Re:Because of the Bayh-Dole act on Nanowires Boost Laptop Battery Life to 20 Hours · · Score: 1

    According to the wiki page only the institution receives the patent. (It must however share royalties with the inventor.)
    I just skimmed over the article, so maybe I missed something, though.

  13. patent on Nanowires Boost Laptop Battery Life to 20 Hours · · Score: 2, Insightful

    why does the assistant professor get the patent?
    I would say he was employed by Stanford. So Stanford should receive the patent. If his research-money was provided by a public institution (some sort of grant), then either the research should be public (patent-free), or the patent should be somehow associated to the country.
    I don't see why he gets to profit from the discovery. (After all he was payed to do that. It would have been bad, if he hadn't found anything.)

  14. Re:radix sort vs. comparison sort on Sort Linked Lists 10X Faster Than MergeSort · · Score: 1

    I can't reproduce your O(N^3). At every level he runs 2.5 times through the list. Once to get its length. 1/2 to split and once to join. -> O(2.5N) = O(N). And there are log(n) levels. -> O(logN*N)
    His implementation might not be efficient, but it is still in O(logN*N).

  15. Re:Doesn't work like that. on How to get a Refund on Your Unwanted Windows · · Score: 1

    proposing multiple OS does not need to be more expensive for Dell. Just dump several encrypted OS' on the disk, and let the user buy the decryption keys. The necessary software shouldn't be that difficult...

  16. Re:I love the autopointerage & hate the scope on Should JavaScript Get More Respect? · · Score: 1

    next is the scope issue i've talked about suppose i'm dynamically creating objects on the fly and want the callback to reflect the id thus
    for( i=0 ; i<10 ; i++ )
    {
    someObject[i] = new SomeObject();
    someObject[i].onclick = function(){ myFunction( i ) }
    }
    every single object will pass the value of 10 to myFunction, because after the function has finished the instance of i in memory that was used is still sat there and every myFunction has been given a pointer to it, not the value it was when it was initialised!
    That has been fixed in JavaScript 1.7. A new keyword (let) allows to limit the scope of a variable, which is exactly what you would need here.
  17. Re:JS is not the problem, the whole environment is on Should JavaScript Get More Respect? · · Score: 1

    such language exist and become more and more common.
    Google already released their gwt (http://code.google.com/webtoolkit/) but there are also other languages like HOP (http://hop.inria.fr/) or Links (http://groups.inf.ed.ac.uk/links/)

  18. Re:Ugh not again... on 2006 ACM Programming Contest Complete · · Score: 2, Interesting

    You should have a look at the ICFP contest then: http://icfpcontest.org/.
    No prefabricated problems.
    More time to do the job.
    Any programming language.
    ...

  19. bridge on Your Favorite Math/Logic Riddles? · · Score: 1

    one of my favorite riddles:
    the bridge: 4 men need to cross a bridge in the dark. The bridge can only take two persons at once, and to cross they need a light. The group only has one light, and after two persons crossed one of them need to return (if somebody rests on the other side) to bring the light back. The men are at different shapes, and it takes different times to cross the bridge for each of them.
    1: 10min
    2: 5min
    3: 2min
    4: 1min
    If two men cross together, the faster one has to adjust its speed to the slower one: if #1 and #2 cross together it takes them 10min. Question: How long does it take them to cross the bridge. Bad example (as it goes faster):
    1 + 4 -> 10min
    4 5min
    4 2min
    --------------------
                              19min

    It's possible to be faster than that (just by changing the order. A bruteforce algorithm would find the solution).

    Solution (rot13):
    guerr + sbhe
    guerr
    bar + gjb
    sbhe
    guerr + sbhe
    friragrra zva

  20. Re:news? on DIY Electronic Paper Display · · Score: 1

    I haven't been following e-ink, but Gumstix, and Holly Gates (a guy btw) is one of the most active users on the mailing list there. He is working for e-ink, and this dev-kit is certainly the first kit containing a Gumstix.

  21. Re:it's all about size on World's Smallest Linux Box Fits in RJ-45 Jack · · Score: 3, Informative

    true.
    but a gumstix has bluetooth (which is IMO even cooler). Also a Gumstix has more RAM, more flash and is faster. And (as you point out with your link) you could always add the ethernet-board if you really need ethernet (and in some weeks the double-ethernet board).

  22. Great build-environment for Gumstix' on World's Smallest Linux Box Fits in RJ-45 Jack · · Score: 5, Informative

    We are currently using a Gumstix for a robotics-project, and eventhough the size is amazing, the really big advantage of Gumstix' are their build-environment, and a really efficient and responsive support there.
    In addition they have a Wiki-page which has a nice tutorial (I must know it, I wrote it;) and other helpful tips.
    Add to that: cutting edge software (latest Linux kernel and gcc) and bluetooth (do you remember the bluetooth-sniper from some days ago? It was based on a Gumstix).
    Really cool!

  23. Re:bargaining chip on French Response to Google is Microsoft · · Score: 2, Informative
    I actually read the article (not just the blog), and it's even less than that.
    I'll try to quote the phrase:
    "Would the president consider a meeting with Google's concurrent Microsoft, as he converges in so many point of views with its president Bill Gates, [...]? 'Why not?' answered the president."

    AFAICS Chirac didn't even say they have so many views in common. And replying "Why not?" from a politician counts next to nothing...

  24. Re:Well... on LG CD-ROMs Destroyed by Mandrake 9.2 · · Score: 2, Informative

    i'm not sure, but this could be the thread in question:
    google