Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:Shash-job-vertisement (Score 4, Interesting) 205

I settled on a combination between Python and Perl (depending on if a lot of parsing is necessary or not). But when a lot of data is involved I go for the old fashioned choice of Fortran. It might not be pretty, and it sure as hell isn't the easiest language; but it beats the crap out of everything else when it comes to speed and convenience for parallelisation. People often forget that this is what Fortran was supposed to be good at, and it really is if you take the time to learn how to use it. Throw in Intel's Fortran compiler and a small cluster and you can chew through gigabytes of data at amazing speeds. The only thing it misses is visualisation tools, but you have a few good opensource dataset viewers, and you can always use Matlab or Python when necessary.

Comment Re:Cold fusion - a hot mess (Score 4, Insightful) 350

My main concern with all these cold fusion guys is how they're usually unwilling to respond to requests for more information on the experimental setups. For me that just shouts "fraud", since they have absolutely no reason to keep it under the wraps: you're never going to get it past a patent clerk anyway and if you had something that produced enough power you'd be heading for the market.

Comment Re:Null Terminated Strings (Score 1) 729

I would like to add one thing: People forget that a kernel has to run on pretty much bare metal. If you're lucky you have BIOS there helping you a bit at the start, but not really. (Yay for obscure backwards compatibility tricks that the folks at Microsoft, IBM and Intel came up with.) So your standard libraries are usually quite limited, if you have them at all. And even then they're usually too slow to deal with anyway, so you end up rewriting everything in X86 assembly anyway.

Slashdot Top Deals

It is easier to write an incorrect program than understand a correct one.

Working...