Slashdot Mirror


User: FunkyELF

FunkyELF's activity in the archive.

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

Comments · 578

  1. Re:My school's CS club is very disappointed on Google I/O Sells Out In 20 Minutes · · Score: 1

    If they are indeed a couple of Java wizards with a strong interest in developing for Android, they don't need to go to Google IO to do so.

  2. Re:The first law of squirrels on Militarizing Your Backyard With Python and AI · · Score: 1

    My perch ring falls off from time to time from their fat asses jumping to it from a distance of falling down on it from the top.

  3. Boil the oceans on IBM Scientists Measure the Heat Emitted From Erasing a Single Bit · · Score: 1

    I remember reading in Bunnie Huang's book on Hacking the Xbox that a computer just enumerating 2**256 (let alone doing anything useful) would require enough power to boil the oceans.

    Maybe it wasn't 256, but it was related to cryptography.

  4. Re:Quad core on Apple Unveils New iPad · · Score: 1

    Isn't 4 a small number of cores for a GPU?
    Aren't cores in GPU's called shaders?

  5. Re:Strategic software on GitHub Hacked · · Score: 3, Interesting

    I think the use of Git makes it pretty safe to begin with.
    If someone gained access to do commits to what people consider as the "master" repo, any tampering would have to be done at the head because of all the hashes.
    Hopefully the maintainer would realize this the next time they go to push to it Git would tell them that the remote is ahead of them by X commits.
    In the case of Linux, I think Linus is the only one who pushes to the master branch, so he would notice.

  6. Re:Same Story / Different Day on Azure Failure Was a Leap Year Glitch · · Score: 2

    Picture this: You're gearing up to create a killer playlist on your 30GB Zune for your annual New Year's bash.

    Great... now I'm going to have nightmares

  7. Re:Core count obsession on Asus Transformer Drops Quad-core In Favor of Dual-core · · Score: 0

    So a quad-core tablet isn't for you, this doesn't mean nobody has a use for it.
    This isn't Apple where you have a one size fits all product.
    There are plenty of existing dual core Android tablets out there; and single core ones; and ones with small screens; and ones with big screens; etc.

    Most iSheep under-use their $600 iPads and they have no choice because there is only one model (with various amounts of storage)
    The good thing about Android tablets is the variety. Most people could save $400 and get a Kindle Fire, but if they want a big boy tablet, its nice that things like the Transformer Prime exist.

    I would love to have one of these quad-cores with the new Ubuntu for Android running on it.

  8. http://www.youtube.com/watch?v=pl4plPGRG8o on France's Bold Drunk-Driving Legislation - Every Car To Carry a Breathalyzer · · Score: 1
  9. oblig xkcd on Open Letter By Eric S. Raymond To Chris Dodd · · Score: 1

    http://xkcd.com/1005/

    This one you need to download and turn down the contrast to get the obligatory part.

  10. What Windows 8 Could Have Been on Canonical Puts Ubuntu On Android Smartphones · · Score: 3, Insightful

    If Microsoft allowed Windows 8 on ARM to have desktop applications this is what could have been.

    This sounds very intriguing. I hope something comes of this. I'm not sure I care about this for a phone but for a tablet it would be awesome.
    Imagine the Asus Transformer Prime running Ice Cream Sandwich as a tablet, and when docked its a full blown laptop.

  11. Re:hmmm on Apple Launches New Legal Attack On Samsung · · Score: 1

    Money shouldn't be able to buy patents or the sole right to produce something that is obvious, the same as it shouldn't be able to buy laws. The fact that they spent a lot of money on it means nothing.

  12. Android wifi tethering on Police Investigate Offensive Wi-Fi Network Name · · Score: 1

    I love using my Android wifi tethering at sporting events.
    I create names offensive to the opposing team.

  13. Re:This is a dead-end market on The Coming Tech Battle Over 'Smart TVs' · · Score: 1

    this is what computers and smartphones are for.

    This is what PS3, Xbox360, Nintendo Wii are for.

  14. Re:Oracle and Java on Oracle's Latest Java Moves Draw Industry Ire · · Score: 1

    we can only hope this happens

  15. Re:Why so high? on Protecting Your Tablet From a Fall From Space · · Score: 5, Informative

    It was curved because of a wide angle lens.
    With that lens you can see a curved earth from sea level if the center is above the horizon.
    When the center is below the horizon you get a concave looking earth.
    Didn't you notice how the earth appeared concave up there too?

  16. Re:Learn photography. on Ask Slashdot: Mirrorless, Interchangeable Lens Camera Advice? · · Score: 1

    You can frame and compose using an electronic viewfinder or even the back display.

    As for DoF, I would argue that this is better to do electronically.
    Most dSLRs have the aperture WIDE open when not shooting. They do this for focusing and so that there is enough light to your eye. When I press my DoF preview button on my Canon 7D the light is reduced and I see a very dark scene on anything f/4.0 and up. I would have to imagine that DoF previewing on a mirrorless camera would be better because they could adjust the exposure (ISO and such) in software so you can preview now only DoF but exposure at the SAME TIME.

  17. Re:Learn photography. on Ask Slashdot: Mirrorless, Interchangeable Lens Camera Advice? · · Score: 1

    Additionally, you give up battery life that could be used for other things like taking more photos or using a slightly smaller battery.

    Electronic wins over mechanical as far as battery life. The mechanical moving of the mirror, shutter, etc will soon be a thing of the past. Displays will require less and less energy while those motors will consume the same since they are already highly optimized.

  18. Re:Hardware folk shouldn't write code on Raspberry Pi Gertboard In Action · · Score: 1

    That was a 1:1 port. Using classes you could make it even more clean by having a gpio class.

    gpios = [GPIO(i) for i in xrange(17)]

    for _ in xrange(5):
            for gpio in gpios:
                    gpio.setValue(1)
                    sleep(TIME)
            for gpio in gpios:
                    gpio.setValue(0)
                    sleep(TIME)

  19. Re:Hardware folk shouldn't write code on Raspberry Pi Gertboard In Action · · Score: 3, Informative

    Python makes everything cleaner.

    # Make the 17 GPIO file systems & set them to output mode
    for g in gpiotbl:
            with open('/sys/class/gpio/export', 'w') as fout:
                    print >> fout, "%d" % g
            with open('/sys/class/gpio%d/direction' % g, 'w') as fout:
                    print >> fout, "out"

    # light effect on buffers
    for rep in xrange(5):
            for g in gpiotbl[:12]:
                    with open('/sys/class/gpio/gpio%d/value' % g, 'w') as fout:
                            print >> fout, "1"
                    sleep(TIME)
            for g in gpiotbl[:12]:
                    with open('/sys/class/gpio/gpio%d/value' % g, 'w') as fout:
                            print >> fout, "0"
                    sleep(TIME)

    test_motor()
    test_motor()

    sys.exit(0)

  20. Good video on governments blocking Tor on Iran Developing 'Halal' Domestic Intranet · · Score: 2

    www.youtube.com/watch?v=DX46Qv_b7F4

  21. Re:DSLR on Ask Slashdot: Mirrorless, Interchangeable Lens Camera Advice? · · Score: 1

    Looked up the E-P3. I question their use of OLED for color accuracy and longevity.

  22. Re:Learn photography. on Ask Slashdot: Mirrorless, Interchangeable Lens Camera Advice? · · Score: 1

    People interchangeably use DSLR instead of "camera with manual modes".
    The fact that you're actually looking through the lens doesn't really matter much.
    The SLRs design is because you couldn't look through film, so you had to have a mirror and a bunch of other things no longer needed in 2012.
    Today you can look through film, because the film is a CCD.

    All that said, I have a ton of Canon SLR equipment that I've bought over the past 2 years and I might start to regret it.

  23. Re:Get a Lumix on Ask Slashdot: Mirrorless, Interchangeable Lens Camera Advice? · · Score: 1

    I had a Panosonic FZ5 and wound up getting the Leica Elpro 2 for macros. It is a 5 element close up filter. AMAZING.
    I don't really use my Panosonic any more. I should probably sell it while it still has value. Looks like used ones are going for $99

  24. Re:Neat on An iPad Keyboard You Can Type On and Swipe Through · · Score: 0

    I had one of those rollup keyboards for the novelty of it. It sucked.

  25. $100 million dollar product on Will Firefox Lose Google Funding? · · Score: 2

    I'm using Firefox now... its pretty good, but it doesn't feel like I'm using a product that gets over $100 million a year in funding. I wonder how much goes into development and how much goes into web hosting.