Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Re:well.. (Score 1) 760

Right. Because people become wealthy by being foolish with their money.

Not sure who it was but a physicist showed that; if you model US income by assuming that everyone has a pile of money and everyone goes out for a few hours a day and throws/catches random amounts at each other based on the size of their pile, the resulting income distribution mirrors that of the US population as a whole. Further, it does not matter how much each individual starts with, the same result occurs even if all piles are all equal at the start.

Comment Re:Meanwhile... (Score 1) 283

no one was really targeting the civilian population as a matter of intent

Yeah right, tell that to the people of London, Dresden, Hiroshima, Manchester, Nagasaki, Auschwitz, etc, etc, the only reason Paris was spared was because Hitler valued the architecture and wanted to keep it intact.

Even the most bloody wars (such as the English civil war) kill less than 5% of the population, OTOH the black plague regularly killed ~50% or more of the people in the cities/regions it infected. People who survived the plague had a brief period of high living standards due to all the abandon property lying around.

There are a lot of environmentalist who think the world is over populated

As a science based "greenie" my "agenda" is to be a part of a sustainable, peaceful, disease free species. Wars, plagues, and mass starvation are what I want to avoid. Science and common sense tell me that the main factor in obtaining what I want (for my 3 grandkids) is population. There's plenty of evidence we can achieve humane population control by educating and allowing women to control their bodies, and providing security of living standards in old age.

Or we can continue to behave like fermenting yeast, expanding to consume our available resources and killing each other for access to untapped/unguarded resources (territory, water, food). AGW is the #1 mid (and long) term threat on the pentagon's list of threats to global stability and it has been that way for almost a decade. The reason is that AGW will dramatically change the current (territory, water, food) map, and it will do so this century - even if we all stop emitting GHGs today.

Syrian civil war - Canary in the coal mine? - "There is evidence that the 20072010 drought contributed to the conflict in Syria. It was the worst drought in the instrumental record, causing widespread crop failure and a mass migration of farming families to urban centers. Century-long observed trends in precipitation, temperature, and sea-level pressure, supported by climate model results, strongly suggest that anthropogenic forcing has increased the probability of severe and persistent droughts in this region, and made the occurrence of a 3-year drought as severe as that of 20072010 2 to 3 times more likely than by natural variability alone. We conclude that human influences on the climate system are implicated in the current Syrian conflict."

Comment Re:Life (Score 5, Interesting) 117

The four Galilean moons are interesting from an evolutionary POV.
Io - Molten sulphur on the surface, purple volcanoes all over it.
Europa - Deep water ocean, thin crust, very active plate tectonics.
Ganymede - Europa with a deep dish crust and cooler core.
Callisto - A rock.

So it would seem that gas giants may have their own "goldilocks zone" when they are orbiting in the colder regions of their host system. So the "average" solar system may have 3-4 "habitable zones" rather than just one.

Comment Re:Unfair comparison (Score 1) 447

accept the fact that there is in fact a vastly important, and quite scientific role which the mind plays in the processes of health and healing

Yes, the people who push Homeopathy and other forms of medical voodoo are also very likely to fuck with the victims mind, the aim of the brainwashing is make sure the victims avoid real doctors and keep coming back. The well known skeptic James Randi lost his father to one of these charlatans.

Comment Re:I don't get it (Score 2) 157

Aliens with gigantic neutrino cannons is the obvious answer.

Having said that, chaotic systems are often statistically very stable, mathematically a stable non-linear system is known as a strange attractor, a strange attractor is always a fractal. The golden ratio pops up in all sorts of fractals, especially spirals.
It's said that our own sun has at least two internal spiraling magnetic fields that "wind themselves up into knots" for the peak of the 11yr sunspot cycle. Who said it I don't recall, but it wasn't the "electric universe" guy. ;)

Comment Re:Syntax and typo errors compile (Score 1) 757

Aside from effort and portability, it doesn't really matter what language(s) or framework(s) you use to get the job done. A basic understanding of the algorithms and concepts that have emerged from computer science and logistics over the last ~80yrs is the secret to being a "good" programmer, consistently knowing where, when, and how to apply them is the secret to being a "top-notch" programmer.

Comment Re:Syntax and typo errors compile (Score 1) 757

Understanding pointers is key to unlocking the power in C. There's nothing mind boggling about your buggy example, what you are trying to demonstrate is not a flaw, it's actually a very powerful feature. Having said that, I do agree that most people have trouble grasping the concept of pointers, I used to teach C to 2nd year engineering students, only about one in 10 students "got it" on the first try. If you want a better handle on pointers (bad pun intended), I highly recommend K&R's classic text "The C programming language".

I also agree with TFA that STL and Boost are over engineered libraries that overwhelm even an experienced C++ programmer with indecipherable typedefs within typedefs, proving yet again, that just because it can be done doesn't mean it should be.

Comment Re:Syntax and typo errors compile (Score 2) 757

(x+y)+z != x+(y+z); - correctly evaluates to false in C, the parentheses can safely be ignored because they are redundant and make no difference to the outcome.
x = x++; is basically undefined - How so? The code increments x, the "x=" part is harmless, again you are using redundant code that any halfway competent C programmer would not write in the first place.
I've been making a good living from C/C++ for 25yrs, I don't see your "problems", and I can't imagine the "workarounds" to be anything other than removing the redundant syntax.

As for TFA - It's unsurprising that Linus rants about C++, sure he's a very smart guy, but he's also an arrogant and highly emotional attention whore who wants things done his way or not at all. When he can't support his opinion with a logical argument, he invariably resorts to personal insults. Actually he often resorts to personal insults even when he can support his opinion.

Slashdot Top Deals

Without life, Biology itself would be impossible.

Working...