Slashdot Mirror


User: BisexualPuppy

BisexualPuppy's activity in the archive.

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

Comments · 146

  1. Re:Money ? on Google Donating $11.5M To Fight Modern Slavery · · Score: -1

    Yes, my point. I can't see any concrete action there, only paperwork and advertising. That's only a matter of political decisions, not a "if people know, slavery will stop" mantra.

  2. Money ? on Google Donating $11.5M To Fight Modern Slavery · · Score: -1

    How does one fight slavery with money ? Isn't that the job of states ? Or will there be some really nice commercials telling us "slavery is bad, don't do it" ? No seriously, what will they do with $11.5M, apart from paperwork for politicians who just don't care ?

  3. Re:Business are getting smarter, too on Groupon Not Doing So Well On Wall Street · · Score: -1

    That's stupid, and you are an attention whore. "whoo, look at meee, I don't use the same font as you, look at meeeee". So gay.

  4. Re:Show me the money on Groupon Not Doing So Well On Wall Street · · Score: -1, Flamebait

    Stop changing the font, that's annoying and doesn't make your comment more valuable, you gay.

  5. Re:Journey to the Center of... on X-ray Facility To Simulate Conditions At Earth's Core · · Score: -1

    That cool man, shut up now ?

  6. Re:Touchscreen? on Ask Slashdot: Touchscreen Device For the Elderly? · · Score: 0

    He was obviously better at politics than at painting, though.

  7. Re:Sounds like a good follow up on Superluminal Neutrinos, Take Two · · Score: -1

    Do you have something even more interesting to say ? Because that one was really really really boring.

  8. Re:....What??? on XML Encryption Broken, Need To Fix W3C Standard · · Score: -1

    That was very funny in 1992, so please shut up.

  9. Re:Well, of course. on Early Speed Tests For Windows 8 · · Score: -1

    That's cool man, but no one cares about your life.

  10. Re:So fix it! on Linux Kernel Developer Declares VirtualBox Driver "Crap" · · Score: -1

    Oh that surely is interesting for someone who gives a crap.

  11. Re:Real life measure of 350 grams on India Launches $35 Tablet · · Score: -1

    I believe I can fly

  12. Re:almost 100km on New Close-Ups of Saturn's Geyser Moon · · Score: -1

    Shut up, you are annoying.

  13. Re:Sounds cool on Company Wants You to Visit Near-Space In Their "Bloon" · · Score: -1

    Every tried winding in 30 km of cable? Slower than molasses. People would starve to death.

    Ever tried to lift 30km of cable ? With a fscking balloon ?

  14. Re:Necessary on Among the Costs of War: $20B In Air Conditioning · · Score: -1

    "I sure as hell respect the men and women who are doing their best to get their paycheck."

    FTFY.

  15. Re:This is why you use encryption programs... on Brute-Force Password Cracking With GPUs · · Score: -1

    The passphrase is hashed, and uses effectively the whole bit range. Your passphrase can be 8bits long, the hash will be what the algorithm needs. This hash will then be used as the actual key.

  16. Re:Really? on Windows 8 ARM Will Not Support Legacy Software · · Score: 1, Insightful

    ARM doesn't even have an FPU (although it does have a matrix multiplier), so even emulating an x86 fir anything other than integer logic would be a challenge
    "ARM" is not a processor, like "Intel" is not a processor. High-end consumer ARM processors (ARM9 for instance) have something called VFP, which is ... an FPU. Here is the wikipedia article.
    Do you think iphone/ipad/android devices do their 3D computations using software floating point ? Are they doing that using fixed point ? You are stuck in the 90's it seems.

  17. Re:god, I hope not. on Facebook Wants To Buy Skype · · Score: -1

    Even my cat knows how to use Facebook. You must be a dog.

  18. Re:Speculation on PSN Outage Continues, Console Hack Claimed To Be Responsible · · Score: -1

    Bet ?

  19. Re:WebM is too "geeky"; too "open/free" on YouTube Now Transcoding All New Uploads To WebM · · Score: -1

    " Let's take two examples everyone knows: OGG/Vorbis. What's the penetration of this open and free format out in the music player industry? Zero"
    I know you are just trolling, but just getting the fact straight : ogg/vorbis was read by my samsung 'mp3' player in ~2005/2006. It is also the format of Spotify streams. That's the two examples I've got right now, personnal experience, and it was not a choice of my own at all.
    Another example, nearly every single professionnal (AAA etc etc.) video game you buy today uses ogg/vorbis (that's ... free).
    You yes, you are indeed trolling. Or dumb. Or both.

  20. unparalleled on Intel Unveils 10-Core Xeon Processors · · Score: 5, Funny

    claiming that they will deliver nearly unparalleled advances in CPU performance

    What's the point of having 10 cores then ?

  21. Japanese funding agencies on Journey To the Mantle of the Earth By 2020 · · Score: -1

    From TFA: "Teagle, who will lead a run-up expedition this spring to bore further into the oceanic crust than ever before, said the forward push to get this project rolling is coming largely from Japanese funding agencies and the availability of a massive Japanese deep-sea drilling vessel called Chikyu."

    Japanese funding agencies would maybe have something else to do with their money in the next ten years, sadly ?

  22. Re:finally on Getting Closer To Using Graphene For Electronics · · Score: -1

    Did you know it could be used in medicine, aerospace, and military applications ?

  23. Re:Godzilla on Undersea Cables Damaged By Earthquake · · Score: -1

    That's so funny ! No one made this joke before ! Godzilla jokes are so original !

  24. Re:Silly. on China Switching To Home-Grown Chips For Supercomputers · · Score: -1

    "That's silly. They're trying to build a supercomputer out of MIPS chips. That'll never work..." THAT's what I'd call an argument. May I ask why ?

  25. Re:Bad Tech Journalism on Cloud Gaming With Ray Tracing · · Score: -1

    This is raycasting, not raytracing.

    When doing raycasting, you will basically throw one ray per column (320x240 resolution -> 320 rays) (only primary rays are thrown, most of the time). Perspective is then added (the farest the ray hits, the smallest the wall will be on the screen). Quite fast, albeit very simple (no lighting, reflexion, or such).
    When doing raytracing, you throw one ray per pixel (that's the primary one) to know which object it hits, then another one for each light source (secondary one, for shadows and color), then N others if needed (think reflection, etc.). Each of these secondary rays will then throw other rays, etc etc. Computationally very intensive, even after good optimizations, but quite realistic.