Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment Re:So, he is admitting that the attacks are true (Score 3, Insightful) 786

1) They have a ton of integrity.

Scientists have as much (or as little) integrity as the next guy. Fortunately the scientific method yields tools for outing the ones who acted with little integrity. Unfortunately, scientists with little integrity tend to move the discussion into into politics before the integrity problem can catch up with them, after which science kinda goes out the window.

Manning stands accused of the latter. Some of his emails focused on how to discredit folks who dispute his findings suggest those accusations have some merit. If you want to keep politics out of science, you simply can't engage on a political level.

2) They're succeed by finding new things and changing the established thinking.

No. Just no. Finding a new way to confirm an old theory is just as successful science as testing a new theory. Finding a way to refute an established theory is highly successful science which rarely happens, and finding the new theory that fits all the data -and- whose predictions survive the test of time is rare genius.

Test of time is important. If you have to incrementally revise the theory as new data comes in, it's not a very solid theory.

3) They use the peer review system to enforce rigorous standards.

A theory which, sadly, has been discredited in the past decade or so.

http://science.slashdot.org/st...

http://science.slashdot.org/st...

Comment Re:Backfire (Score 1) 719

Help me out here. My search for "Realclimate model data comparisons" doesn't include anything labelled as being from GISS model E.

You know what I'm looking for. Items 3, 4 and 5. I want to read something that's on point. Essentially, a "control" prediction that excludes human causes, an "experimental" prediction that includes human causes and a comparison of the two predictions against measurements in which the "experimental" prediction is within the measurement error and the "control" prediction is not.

Comment Re:Backfire (Score 1) 719

Emotionally charged labels tend to obstruct honest, factual debate.

Also I heard a neat saying once: "There are three kinds of mistruth: lies, damn lies and statistics." Statistics is an incredible valuable tool in the arsenal of science, but it's also one of the most commonly misused tools.

Here, let me ask you an honest question. Give me a name or a link to a climate change model which meets the following criteria:

1. The model was created at least 10 years ago.
2. The model can be fed data about suspected human and non-human causes for global warming.
3. When fed such data for the last 10 years twice, once including suspected human causes and once excluding them, it makes two predictions for world conditions today.
4. The difference between those two predictions is statistically significant versus measurement error.
5. World conditions today are consistent with the prediction made when including both suspected human and non-human causes for global warning and are not consistent with the prediction that excluded human causes.

I'm a skeptic. Not a denier, a skeptic. When I see a model that exhibits solid predictive value year over year, I'll be a believer. Until then, what I see is a lot of scientists taking sloppy shortcuts and then trying to cover the gap with dirty politics.

I know science. And I know politics. And the BS in TFA is pure politics.

Comment Backfire (Score 3, Insightful) 719

This will backfire. The idiots driving this would associate dissent on climate change predictions with folks who reject the historical fact of the Holocaust, the only other place where the term "deniers" is routinely used.

You can't have a brain in your head and seriously think that the modern climate change predictions have a comparable level of certainty to the historical fact of the holocaust. This sort of gross overreach is obvious even to mere mortals who can't readily follow the scientific arguments for or against global warming. It makes the speaker, and every other claim he makes, suspect.

The media has done climate change scientists a great favor by labeling the folks who still challenge the predictions as "skeptics." That word carries connotations of government conspiracy and alien abductions. It's a gift.

Comment Re: C is primordial (Score 1) 641

There are still mainframes, for example, that have to _emulate_ C's unsigned modulo arithmetic. Floating point based DSPs have to emulate C's signed integer types.

Ancient mainframes using 1's complement arithmetic, floating point on systems without a FPU and integers on devices that don't do integer math in hardware? Got any more wacky exceptions that prove the rule?

As for compilers instrumenting code to prevent overflows, that's about to rapidly change.

Don't bank on it.

Comment Re: C is primordial (Score 1) 641

So which intruction does a C compiler emit when multiplying two 64-bit numbers on a 32-bit processor?

Turns out to be a trivial add and shift loop.

When adding two _Complex numbers?

I had to look that one up. It actually is core starting in C99. Yikes. Fortunately not something more than a handful of folks use, what with C not being the language of choice for scientific computing.

When instrumenting a pointer dereference to catch a buffet overflow at runtime

Properly behaving C compilers don't automatically add code to detect buffer overflows.

Slashdot Top Deals

Understanding is always the understanding of a smaller problem in relation to a bigger problem. -- P.D. Ouspensky

Working...