Slashdot Mirror


User: ameline

ameline's activity in the archive.

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

Comments · 454

  1. Re:Only in the US... on Iowa Rejects Video Privacy Protection For Cows · · Score: 1

    Replace "Cows" with "Cops" and then I'll be interested...

  2. Re:Units of measurements on World's Servers Process 9.57ZB of Data a Year · · Score: 2

    Is that a metric or imperial Library of Congress?

  3. It's a 3GBps part on Intel Replaces Consumer SSD Line, Nixes SLC-SSD · · Score: 2

    It is a bit behind the times with no Sata 3 (6 GBps) support.

  4. You said "rape" twice... on Clinton Calls For "Ground Rules" Protecting Internet · · Score: 1

    You said "rape" twice...

    Just pointing that out...

  5. Does not render properly with firefox on the mac. on Slashdot Launches Re-Design · · Score: 1

    Lame.

  6. I Think.. on Oregon To Let Students Use Spell Check on State Exams · · Score: 3, Funny

    Eye think eye sea what their doing hear. :-)

  7. Re:Can't resist urge to make bad pun.., on Scientists Create Programmable Bacteria · · Score: 1

    Those aren't bugs, they're features.

    See how easy that was?

  8. No Hypocrisy... on US To Host World Press Freedom Day · · Score: 1

    No hypocrisy here, move on citizen.

  9. They are likely grateful... on Single Software Licence Shared 774,651 Times · · Score: 3, Insightful

    They are likely grateful that people are using their software rather than the superior (and free) Microsoft Security Essentials. (Yes, MS makes a piece of software that is superior in virtually every way to its competition. Hard to believe, but it's true.)

    http://www.microsoft.com/security_essentials/

  10. After reading this; on TSA Bans Toner and Ink Cartridges On Planes · · Score: 4, Informative

    http://www.npr.org/assets/news/2010/05/17/concern.pdf

    I am not going to go through one of those machines.

    VERY scary stuff here.....

  11. Re:slashdot's method on How To Protect Against Firesheep Attacks · · Score: 1

    Yeah -- I just tried https://slashdot.org/ and got redirected to http://.../

    Not cool.

     

  12. The fundamental difference... on Microsoft Is a Dying Consumer Brand · · Score: 4, Insightful

    The fundamental difference between Microsoft and Apple (or other consumer product companies) is that people like you or I are not MS customers.

    Microsoft's customers are Dell, HP and Acer, and large corporate IT departments. That's where most of their money comes from, and they know it. MS cares about their needs and not ours.

  13. My favorite one is this on Analyzing CAPTCHAs · · Score: 1

    http://lib.mipt.ru/?spage=reg_user From the Moscow institute of physics and technology. Described as a "little school-level problem" :-) Be prepared to dust off your knowledge of Kirchoff's law (http://en.wikipedia.org/wiki/Kirchhoff%27s_circuit_laws) and ohms law, and to solve a system of equations that boils down to a 6x6 matrix.

  14. Who the hell... on Scientists Using Lasers To Cool Molecules · · Score: 5, Insightful

    Who the hell uses Fahrenheit for anything remotely connected to science? I can understand translating 0K to -273.15C, then 1K is -272.15C -- but how meaningful to anyone is -459.67F?

  15. Really? A War? on WikiLeaks 'a Clear and Present Danger,' Says WaPo · · Score: 1

    When did Congress declare it, and against whom?

    Oh wait, it's not really legally a war is it?

  16. Re:Elation? on Outlook Plug-In Keeps Tone of Your Email In Check · · Score: 1

    > Oh, and while you're at it, can you make it so the program pokes the writer in the eye every time he writes the words "win" and/or "fail" in all caps? Thanks.

    THIS :-)

  17. I *hate* glossy screens on Does Anyone Really Prefer Glossy Screens? · · Score: 1

    I hate them with the heat of a thousand burning suns.

  18. Rowan Atkinson makes a great Doctor! on Matt Smith Leaving Doctor Who Already? · · Score: 2, Interesting

    Have a watch of http://www.youtube.com/watch?v=Do-wDPoC6GM

    If you can sit through this without laughing, you should seek professional help.

  19. Re:DO NOT WANT: print server, storage, P2P daemon, on Cheap ADSL Holds Up 802.11n Router Design · · Score: 1

    And the wireless network created by an airport extreme can be very easily extended with the cheaper airport express.

    Works great for me.

  20. Re:Mobile innovation *is* PC innovation on Why Mobile Innovation Outpaces PC Innovation · · Score: 1

    >Mobiles haven't even reached the low bar of being suitable for posting on Slashdot yet.

    I'm posting this from my ipad. Seems both suitable and mobile enough to me.

  21. Re:Why is the placebo effect a bad thing? on Acupuncture May Trigger a Natural Painkiller · · Score: 1

    > Tylenol is effective for fever and mild analgesia.

    Key here being "mild". Acetaminophen, in my experience, has absolutely no noticeable effect on real pain. Opiates are pretty much the only thing in the pharmacopoeia that really work for this. All drawbacks aside, if you have real pain, those pale in comparison. (The worst of them, imho, is the constipation :-)

    (I recently had knee surgery involving drilling holes, hammers/chisels, screws & staples, and even 60mg Codeine did nothing in the first 48 hrs post op. Good thing there are stronger meds than that -- percosets ftw.)

  22. Re:I have chosen my courtroom attire for the trial on ACLU Sues To Protect Your Right To Swear · · Score: 1

    You know, I don't think I'll click on that link at work....
    (just a hunch, given the url)

  23. Re:Cure? on Cheap Cancer Drug Finally Tested In Humans · · Score: 2, Funny

    > there is no way in hell he'd ever spend that much on Viagra

    Of course he wouldn't -- he would spend 6k on the hookers, 6 on the viagra, and 6 on the blow. :-)

    (I hope your dad gets well.)

  24. Re:Only scratching the surface on What Every Programmer Should Know About Floating-Point Arithmetic · · Score: 1

    If you're using the x87, just give up. It is very hard to efficiently conform to IEEE on that evil beast. (even setting the control register to mung precision only affects the fraction, not the exponent, so you still have to store to memory and reload to properly set precision.)

    A former colleague described it (the entire x87 unit) as "Satan incarnate in silicon". :-)

  25. Re:Only scratching the surface on What Every Programmer Should Know About Floating-Point Arithmetic · · Score: 1

    The brackets were implied by the ordering. Yes, a slightly non obvious case that comes up fairly often -- optimizing the computation of dot product of long vectors. This involves summing lists of numbers, and changing the order of summation (either through vectorization or threading) changes the results. Kahan summation would help if compilers did not break it.