Slashdot Mirror


User: MikeBabcock

MikeBabcock's activity in the archive.

Stories
0
Comments
6,826
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 6,826

  1. Re:Java is fast on C++ the Clear Winner In Google's Language Performance Tests · · Score: 1

    It really amazes me how people on slashdot fail to read the sentences other people write, assume some arbitrary point and then goes on a rave about it.

    Happens all the time. Nobody seems to realize that different programmers are like different languages; they're different and often have different uses ... although some just suck.

    As a *nix guy, I always laugh about the C/Java debate and wonder where my shell scripts, PERL, Python and quicky awk programs fit into the debate.

    That is to say, I often solve a programming problem with PERL, Awk or Python faster than I'd choose the appropriate #include's for a C* program. Not large programs obviously, but an awful lot of system automation, reporting, maintenance and other code that seems to be done with compiled languages on Windows systems just seems faster to write and easier to maintain in special purpose interpreted languages.

  2. Re:Common knowledge on C++ the Clear Winner In Google's Language Performance Tests · · Score: 1

    The argument presented was that using a GC allows for better algorithms. Better algorithms aren't necessarily faster, they may simply be more correct or generate smaller, better or faster code.

    How is the speed of programs output by GCC vs. CLang in a benchmark?

  3. Re:The real news on EVE Online Targeted By LulzSec · · Score: 1

    You really think that's worth banning someone from a paid online community?

  4. Re:The real news on EVE Online Targeted By LulzSec · · Score: 1

    I don't recall instances of Sony randomly banning users for posting good scores.

  5. Re:The real news on EVE Online Targeted By LulzSec · · Score: 1

    Sony has a better online network for actually making games on.

    Hint: I can play Portal 2 on my PS3 vs people on Steam on PC or PS3. PSN allows for a more open online experience than does XBL.

    Criterion Games said the same thing when they made Burnout Paradise. Same comment about the PS3's openness from Unreal Tournament 3 and its ability to allow PC-made mods on the PS3 version of the game.

    Feel free to sit in your XBL chats and feel superior but the PSN actually offers devs more flexibility.

  6. Re:Shock! on Gran Turismo Gamer Takes Second In Class In World-Renowned Race · · Score: 1

    Guy who is good at driving never would have been discovered without game that simulates race car driving accurately enough to pick up on the fact that he's actually good at driving.

    Take your red herrings elsewhere.

  7. Re:Why wealth matters on Gran Turismo Gamer Takes Second In Class In World-Renowned Race · · Score: 1

    Like any pro sport, its called sponsorship. If you're good enough, you get paid to do it, and it becomes your job.

  8. Re:I call BS on EVE Online Targeted By LulzSec · · Score: 1

    There is no group by their own claims. Therefore Anonymous doesn't exist as a classifiable entity.

    Without formal leadership or membership, Anonymous can in fact be categorized by the acts of "splinter" groups because they are no less official than any other member of Anonymous.

    When you get tired of people misrepresenting your ideals, you create formalities like membership and leadership and disciplinary committees and ... omg, just like the real world.

  9. Re:frogger on Gran Turismo Gamer Takes Second In Class In World-Renowned Race · · Score: 1

    I bet you haven't been hit by a car lately lol

  10. Re:I would be amazed . . . on Gran Turismo Gamer Takes Second In Class In World-Renowned Race · · Score: 1

    Commenting on where they finished overall shows a lack of understanding of multi-class races.

    Multiple classes of cars race on the same track together, adding a lot of moving speed bumps for the fast cars and strategy for the slower cars. You aren't competing against the faster cars in the slower cars, you're competing against your own class.

    Imagine formula 1 and stock cars simultaneously on big oval at Daytona. There's no contest between the classes, but it adds a lot to the experience.

  11. Re:I would be amazed . . . on Gran Turismo Gamer Takes Second In Class In World-Renowned Race · · Score: 3, Insightful

    Unfortunately a lot of people will read this and not understand how grueling Le Mans is. Its a 24 hour endurance race. Its designed to be hard just to compete in, never mind winning.

  12. Re:I would be amazed . . . on Gran Turismo Gamer Takes Second In Class In World-Renowned Race · · Score: 3, Informative

    Finishing a Le Mans is impressive enough.

  13. Re:TMBG... on John Linnell of They Might Be Giants Talks Tech · · Score: 1

    If you enjoy live DJ'd mixes, you want the "drive at 5 street mix" which is 5PM EST or about 2PM LA time iirc. Many weekday evenings and every weekend they're live from one of the local clubs too.

  14. Re:Like the cloud... on Turkish Police Nab 32 Suspects Tied To Anonymous · · Score: 1

    Pfft.

    Running a vulnerability scanner and clicking the 'exploit' button isn't hacking.

    Discovering those vulnerabilities and writing the tool, now that's got some brains involved.

  15. Re:Now the real "lulz" begin for those hacktivists on Turkish Police Nab 32 Suspects Tied To Anonymous · · Score: 2

    Destroying peoples' lives and work online isn't funny either, but Anonymous and its ilk haven't really thought that through.

    Welcome to immature pranks.

    Thought puzzle: if you want to create a future with open rational discussion about a variety of issues, is making people afraid of being hacked and 'outed' the way to get there? No, its the way to create silence and fear.

    Anonymous is counter-productive.

  16. Re:TMBG... on John Linnell of They Might Be Giants Talks Tech · · Score: 1

    That's funny.

    Z103.5 plays almost entirely new music. They frequently play not-yet-promoted music, and have a good collection of DJs who do live mixes on the air as well as at the local club scene here in Toronto.

    If you claim to be a top-40 station and you're not playing the top-40 list, you're just lying.

  17. Re:Academia v. industry on Ex-Google Engineer Blasts Google's Technology · · Score: 1

    Sounds like they moved you from Unix to Windows ;-)

  18. Re:MapReduce vs Hadoop on Ex-Google Engineer Blasts Google's Technology · · Score: 1

    Rewriting from scratch is bad.

    Tweaking something that works is good.

  19. Re:Problem of perception? on Mozilla MemShrink Set To Fix Firefox Memory · · Score: 1

    Thought puzzle:

    Which one understands which pages are needed better: the OS or the Application?
    Which can decide to set aside data that won't be needed for a while more intelligently?
    Which can easily predict if it will need to make large allocations in the near future?

    Applications depending entirely on the OS to handle memory pressure situations and acting stupid are inefficient in the long run and cause performance problems.

    A similar situation (and argument) exists with how Apache handles forking and threads (much much faster than just letting the OS deal with it) or how Squid handles file names.

    Sure, you can make the OS efficient at forking, or the filesystem efficient at name finding, or malloc more efficient at allocations, but the user space application knows better than the OS and can do much smarter things like pre-allocating large chunks of memory or freeing unused data that it knows it can find on disk later if the user really wants it.

    Intelligent application handling of memory is better than not.

  20. Re:Problem of perception? on Mozilla MemShrink Set To Fix Firefox Memory · · Score: 1

    I have 8GB of RAM and I've seen Firefox use up all of it in a few hours.

    Programs that over-allocate are a problem, no matter how intelligent your OS tries to be (I run Linux fyi) or how much RAM you have.

  21. Re:So if they're faking counterfeit data on Canadian IP Lobbyists Caught Faking Counterfeit Data · · Score: 1

    Knowingly presenting false data should be treated as libel against truth. Sadly, lying about data to the public isn't illegal.

  22. Re:Police have no expectation of privacy on Court Case To Test Legality of Recording the Police With Your Cell Phone · · Score: 1

    Worked on an Android version for a bit but it didn't work out in terms of battery life :(

  23. Re:Expectation of privacy and all that on Court Case To Test Legality of Recording the Police With Your Cell Phone · · Score: 1

    Yes up here in Canada, public servants' browser histories at work are subject to FOIA requests as well. No expectation of privacy on the job at all if you're on the public payroll.

  24. Re:So it makes you thin on Research Suggests Tobacco Companies Add Weight Loss Drugs · · Score: 1

    I suppose you consider the yellow teeth, loss of skin tone, complaints from non-smokers around you to also be net benefits?

    Personally I try to practice habits that don't make me look stupid and that I can stop doing whenever I feel like it without getting jitters.

  25. Re:Hmmm on Research Suggests Tobacco Companies Add Weight Loss Drugs · · Score: 1

    I believe cancer treatments also help with weight loss. Win win.