Slashdot Mirror


User: dodobh

dodobh's activity in the archive.

Stories
0
Comments
1,765
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,765

  1. Re:The first step to a singularity? on Robot Makes Scientific Discovery (Mostly) On Its Own · · Score: 1

    Why would a singularity need to kill us? We are doing a good job of committing suicide anyway.

  2. Re:The first step to a singularity? on Robot Makes Scientific Discovery (Mostly) On Its Own · · Score: 1

    Just remember to build morality into the AI. Culture Minds FTW.

  3. Re:Acecoolco on Violent Video Games Can Improve Vision · · Score: 1

    These are gaming lawyers.

  4. Re:Computer Labs are still useful on RIP the Campus Computer Lab, 1960-2009 · · Score: 1

    I don't takes class notes there (yet), IRC works though.

    OTOH, my point was about low-powered, small form factor devices becoming the primary portable devices. Those are not suitable for running virtual machines.

  5. Re:Computer Labs are still useful on RIP the Campus Computer Lab, 1960-2009 · · Score: 1

    My primary portable computer is my phone (Runs Linux, has a shell, offers Python for programming by default). I might even move to a netbook.

    The leading technical people won't have the capacity to run VMs on their portable devices in a few years.

  6. Re:No, don't go for it. on With a Computer Science Degree, an Old Man At 35? · · Score: 1

    So did they write good code? And did they ever manage to implement a DSL to make their own lives easier?

  7. Re:One Ring to Bind Them All??? on Red Hat — Stand Alone Or Get Bought? · · Score: 1

    And then they finally replace the IP stack with a Token Ring stack?

  8. Re:Ballmer -1 Troll on Ballmer Scorns Apple As a $500 Logo · · Score: 1

    Businesses use Windows because their IT supports it, developers support it, OEMs support it, ad nauseam

    I believe that makes it a better whole product, as opposed to a better partial product.

  9. Re:You want idiots in the air too? on Flying Car Passes First Flight Test · · Score: 1

    I'll spend a week or two at home, or somewhere away from groups of humans with flying cars. Darwin will win. Always.

    Until Murphy steps in and I die in a landslide caused by a freak storm which all the flying cars stay safe in a garage.

  10. Re:Corporate culture on Shell Ditches Wind, Solar, and Hydro · · Score: 1

    Hey, you could lobby for easier immigration policies, so that the poor people of the third world countries could easily move to developed nations who ruled them and live a better life as well.

  11. Re:A Jury Of Our Peers on Internet-Caused Mistrials Are On the Rise · · Score: 1

    Your peers need to be Slashdot readers ;).

  12. Re:Unemployment? on Computer Science Major Is Cool Again · · Score: 1

    Cool. So instead of Indians going to the US, we will have more corporations coming over locally and paying better than local but less than US salaries? Win-win!

  13. Re:Dr. House Syndrome on Are Quirky Developers Brilliant Or Dangerous? · · Score: 1

    Genius developers like that should be employed as designers, not coders. By the time you start writing code, there should be no problems left that take even an afternoon, much less a month, to solve.

    Except that the code is the design, and wasting time doing too much design upfront is also stupid.

    You need to do some design, write code to validate that design, run it by the users to check that it does what they need, and then repeat the cycle.

    Good code doesn't need much documentation at the code level, but it does need documentation in the interplay of larger parts. An decent developer will be able to convey that level of documentation in minutes to another developer.

  14. Re:From across the pond on March 14th Officially Becomes National Pi Day · · Score: 1

    Turn to a life of crime. You can never be caught or convicted.

  15. Re:Lot's of iPhones out there on iPhone App Causes Google To Shut Down SMS Service · · Score: 1

    It would be truly interesting if the free SMS service was available outside the US. That might show a better perspective.

  16. Re:dynamic inter-language communication on Hope For Multi-Language Programming? · · Score: 1

    The network equivalent of the Unix pipe is the socket. Why would I want to make an API call instead of writing a message (text or binary) to a file?

  17. Re:Eyeballed the source code on Industry Open-Sources Model For Infamous CDS · · Score: 1

    That GOTO is a good way of error handling. It lets you put all the error handling and cleanups in one place, without having to repeat them all the time (yes, this is one of the primary use cases for goto statements).

  18. Re:Capitalism vs. Communism on Sun's McNealy Wants Obama to Push Open Source · · Score: 1

    That is exactly why you have global warming, pollution, the current financial mess, ...

    Capitalism would work if you could make people pay for externalities. Since there doesn't seem to be a way to do that (Kyoto, for example), we have to make do with worse alternatives.

  19. Re:of course on Why Japan Hates the iPhone · · Score: 1

    Maybe in the US. Not outside, in the real world.

  20. Re:bad on How Do You Document Technical Procedures? · · Score: 1

    So rebrand yourself as a SOA expert?

  21. Re:Time Machine Anyone? on Ma.gnolia User Data Is Gone For Good · · Score: 1

    what happens when file corruption occurs, and you don't realise it for a long time?

  22. Re:Missing geek details on Atlantis Seekers Given Thrill by Google Ocean · · Score: 1

    Be careful while in that area. Remember the submarine collision from last week?

  23. Re:How is it racism? on Stimulus Could Kickstart US Battery Industry · · Score: 1

    Did you ever think of the alternatives for the Chinese factory workers?

  24. Re:How is it racism? on Stimulus Could Kickstart US Battery Industry · · Score: 2, Insightful

    Actually, free trade was forced down the throats of a lot of countries by the world bank and the IMF, primarily under US pressure to open up their markets to US goods. They were offered US markets in return, and now that they are climbing up the value chain, the US is going to have to suck it up.

    What's sauce for the goose is sauce for the gander.

  25. Re:Scripting Languages not good for most applicati on Apple's Mac OS X Update Breaks Perl · · Score: 4, Informative

    No, this is a compiled language problem. The module is an XS module, and it has components written in C. The Perl update causes a mismatch between the library referenced by the user's compile and the system supplied one.

    Just another form of DLL hell.

    If this was a Pure Perl module, this issue would never have mattered. Scripting languages have the same problems as any compiled language when you break libraries.

    And if you are upgrading your base code in production without any form of testing, your code deserves to crash.