Comment Re:So don't go there. (Score 1) 155
Comment Re:Slow news day? (Score 4, Interesting) 101
But on the topic, it was my understanding that even if an atmosphere could be generated, solar wind would strip it away without a magnetic field to shield it,
According to NASA, having an artificial mangetic field on mars is not completely unfeasible: https://www.extremetech.com/ex...
Comment Re: Time for a breath of fresh air (Score 1) 214
Comment Re:The more important question: (Score 1) 114
Comment Re: It's because audiophiles are the definition of (Score 1) 60
Comment Re:You all presumably know why. (Score 5, Insightful) 359
Comment Re:Just another f***ing kludge to get around (Score 2) 129
Comment No it doesn't (Score 1) 40
No it doesn't. Fix the real problem
Comment Re:Plus ca change (Score 1) 531
Comment Re:It should be obvious (Score 1) 375
A systematic, empirical study of a subject is a science by definition.
Nope, falsifiable experiments are. That's what allows use to make predictions.
Comment Re:Infinity (Score 1) 1067
Comment Re:Chinese that speak English (Score 1) 578
Comment Re:Why doubt something better would exist? (Score 1) 154
WHERE did you get the idea that C++ is more immune to memory leaks or buffer overflows than C? C++ adds to the basic C memory management services and memory organization, but it still retains the original C ones. And adds an additional way to leak memory - undisposed objects.
Probably from experience: Consistent use of stl memory classes (shared_ptr and unique_ptr) and containers (mostly std::vector) make it very hard to shoot yourself in the foot. Adhere to "Raw pointers don't transfer livetime from function to function" if you use raw pointers. These things are really easily spotted by code-review.
Comment Re:Backwardness of KDE continues (Score 2) 51
and then provide native code layer to provide an interface for computational demanding stuff.
Well, they are moving in that direction with QML. For many apps, a native UI makes perfect sense. Not only if the UI is very demanding, but also when the UI is very simple: staying in one programming language keeps things simple.