Comment Re:Eclipse is stagnating (Score 1) 598
The last time I tried NetBeans, it was a pure Java IDE.
I run Eclipse at work for C/C++ development.
Comment Re:The first things to do (Score 1) 230
yes, but QtConcurrent is more like a scheduler. QtConcurrent::run internally re-uses threads
and runs your given functor object.
I was thinking about something like QThread(Functor), without the need to subclass
QThread and implement a run Method (I'm aware about the exec() call in QThread::run).
Comment Re:The first things to do (Score 2, Interesting) 230
boost::thread has a different design concept than QThread. I would appreciate if Qt
would introduce a Functor-style API for Threads.
boost::signals doesn't work across threads (this is docuemented in the boost API).
Throwing both Qt and boost APIs together would create an ugly mess.
Comment Re:English Language Article. (Score 1) 415
The EFF, FSF and ACLU are some kind of lobby organizations.
Comment Re:1 Question (Score 2, Informative) 226
Feet, miles and knot based units are the de facto standard in aerospace. The scientists
use SI units, the pilots do not. For a software I wrote I had to use SI units internally
and had to convert those values to feet/miles/knot based ones before passing them into a
pilot specific software. I work in germany (at the DLR if it matters).
Comment Re:Why does this "break" anything? (Score 5, Informative) 264
This is a classic problem with most *nix distribution packages and CPAN usage. This is not Apple specific.
Submission + - Linux kernel 2.6.20 released
Journal Journal: Will vista improve driver support for OSS/Linux ?
After reading this article it came to mind that now Vista is more closely modeled after a less lossely coupled data+code instead of closely coupled data+code it might become easier for companies to write drivers for all platforms.
Would this be holding up in practice ?