Slashdot Mirror


User: ubergeek65536

ubergeek65536's activity in the archive.

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

Comments · 212

  1. Re:Shooting themselves in the foot on MPAA Files Lawsuits Targeting Major Torrent Sites · · Score: 1

    You're absolutely full of shit. The media levy only applies to cds and 90% of the time it's ignored by vendors. You can go and buy a 50 pack of brand name cd-r disks at best buy for $25 (levy included). Let's see.. at $0.59 per disk the levy is $29.50

    also see http://www.cbc.ca/story/arts/national/2005/08/08/A rts/levy050808.html

  2. 2.4GHz is just a convenient frequency on HOWTO, Cook an Egg With Your Cell Phone · · Score: 1

    Something I remembered reading...

    "A commonly held myth is that water "resonates" at 2.4GHz, which is why that frequency is
    used in microwave ovens. Actually, water doesn t appear to have any particular "resonant" fre-
    quency. Water spins and jostles around near radio, and will heat when in the presence of high
    power radio waves at just about any frequency. 2.4GHz is an unlicensed ISM frequency, and so
    was a good political choice for use in microwave ovens."

    Excerpt from "A Practical Introduction to Radio Physics"

  3. CS degrees are a waste of time on Computer Science Students Outsource Homework · · Score: 1

    I've seen too many applicants with BSc or Masters degrees that couldn't build an app if their life depended on it. Good grades don't show if someone is bright, capable, or reliable. One of the best developers I've worked with dropped out of university because of two things, money and he wanted to learn something useful. Theory is only the beginning of a career; it means nothing if you don't know how to put it in practice. Does my boss care if I know what a red black tree or a Duff's device is? I doubt it.

  4. Re:More cores are cool but are not the solution on IBM's Radical Cell Processor · · Score: 1

    GPUs can be used for all sorts of scientific processing.

    Here Mike Houston talks about using a GPU for scientific calculations.

    http://graphics.stanford.edu/~mhouston/public_talk s/R520-mhouston.pdf

    also see

    http://www.gpgpu.org/

  5. Unfair comparison on MySQL Beats Commercial Databases in Labs Test · · Score: 1

    The reviewer should have factored in the cost of the hardware. After all what good is an application without the hardware. Why did they choose to use a quad Xeon box? I'm estimating $15-20K for that which brings the cost of MySQL to about half the cost of DB2. Also how do the different engines compare running on different hardware? I know that MySQL runs much better on an Opteron box than a P4 box of the same price point. Is that true for the other database engines? Does DB2 perform better under Linux or Windows 2003? Etc etc.... There are just too many holes in the review to take it seriously.

  6. Re:Let me rephrase it a lot... on No Respect for Windows Open Source · · Score: 1

    Just because something is developed for Windows doesn't mean you can't make it easily portable to other platforms. That's where standards like POSIX and the .Net CLR come in. As long as you develop to open APIs you are not locked in. Free software only gets my attention if it's free as in beer or free as in I can do whatever the hell I want with it no strings attached. RMS + FSF = BGEA.

  7. Where's the GUI? on Ant - The Definitive Guide · · Score: 1

    Another great tool that I'll never use.

  8. Re:What's in it for Comcast? on Comcast Sued For Giving Customer Info to RIAA · · Score: 1

    Their relationship with the recording industry and hollywood may not be as strong as Time Warner (AOL) but I presume they want to keep cozy just in case that aquisition opportunity comes along. Luckily I live in Canada. (The courts won't make ISPs give out personal info unless someone ended up dead.)

  9. Re:What in the World? on Ask mc chris · · Score: 1

    You didn't have to quote the word insult. You can listen to what ever the hell you want as long as you don't drive down the street playing it at 115db; a bit too common with rap fans.

    He'll keep selling out concerts (better to call them shows since there is no music involved here) because people have seemed to forgotten that music is more than poorly constructed rhythm, no melody, and lyrics that have no insight. Enough said.

  10. Re:What in the World? on Ask mc chris · · Score: 1

    Points for giving to away? Of course he has to give it away.

  11. Re:Never do (x==NULL), do (NULL==x) on Optimizations - Programmer vs. Compiler? · · Score: 1

    That syntax doesn't read well and I guess you've never heard compiler warnings or tools like lint.

  12. No code is real fast on Optimizations - Programmer vs. Compiler? · · Score: 1

    Most modern compilers know more tricks than even a hardend developer. One places where you will still find great performance gains is in the algorithm design. A slow quick sort will most likely be far faster than hand tweaked asm code any day. I was once told "The best code is no code. It's easier to read and runs a lot faster." Think at the algorithm level and let the compiler do the rest.