Forgot your password?

typodupeerror

Comment: Re:Just a recorder... (Score 1) 628

At least one of the problems is that people, including myself, are less social when driving a car. A black box can help people remember that antisocial behaviour is not forgotten (especially when an accident happens). I would however legislate a mandatory warning sticker, clearly visible for the driver.

Comment: Software is the problem (Score 1) 132

by CBravo (#39641121) Attached to: Multicore Chips As 'Mini-Internets'
The problem is not the hardware but the software. The hardware has been parallel for ages, even locally (GPU, GPU-memory, CPU, memory, HDD, DMA - memory processor, ...).

Software is a different problem across networked/parallel arena. If you really think about an SMS it is not much more than 'hello world'. You type it and you see text (no other function, other than transport which isn't really a function, has been done) and testing it should be easy. This is not even about parallelism but about communication.

The best way to create software for networking is to not re-write it for all these new parallel architectures/internet (which means you compile it for compartimented execution). This is however, pretty hard to do (I don't know about such an implementation). The alternative is that everybody needs to put all the same glue in its software over and over (RMI, OpenMP, ...). We are doing #2.

By the way I think there is a big difference between networking, which has a premise that things fail, and local transport of data/code which is specced on its workings. Fundamentally different (price).

"How to make a million dollars: First, get a million dollars." -- Steve Martin

Working...