Yearly Archives: 2010

A Case of Creationist Projection

I usually don’t think the fundies over at Answers in Genesis is worthy much attention, but this article by head crackpot Ken Ham titled The Emotional Age Issue caught my eye. It says for instance:

Increasingly, I’ve noticed that when the media write reports about us, they often don’t mention the scientific points we present in our rebuttal of evolution, but instead state something like this (these words appeared in our local newspaper):

The Creation Museum employs scientists of its own but has been criticized by the larger scientific community for positions it takes that conflict with mainstream scientific belief. For example, the museum contends the Earth is 6,000 years old, rather than about 4.5 billion. It also shows humans living at the same time as dinosaurs, which most scientists say never happened.

Why is the age of the earth such a big issue with secular scientists and the media? And why is it that after biblical creationists have written so many books and scientific peer-reviewed papers that contradict the supposed billions of years for the age of the earth/universe, and expose the fallible dating methods devised by man, secularists still scoff?

Well, here’s the bottom line: For secularists to even postulate the idea of evolution, they have to also postulate an incomprehensible amount of time (billions and billions of years) so that the universe and life might have enough time to evolve. Even with billions of years, though, evolution is impossible. Mathematically and scientifically. But secularists aggressively promote billions of years to make evolution a plausible idea.

The DevilThis got to be the worst case of projection I have seen from that gang in a while. These people look at the world purely through their fundamentalist religion, and seemingly cannot conceive that an objective scientific approach can exist. And further, if such an objective approach should exists, surely it would confirm their beliefs? Since it doesn’t, it naturally cannot be objective, and thus has a faith based agenda against God. I.e. a plot instigated by the devil himself.

What they so completely fail to grasp is that science do not care for faith-based preconceptions based on ancient mythology. Science investigate the nature and build models upon what they find. If the data actually agreed with the 6000 year-old-earth view, we’d still have that view. But there is absolutely nothing in nature that supports such an age-estimate. On the contrary. It cannot be stressed enough how vast the pile of evidence against such a claim is, and how consistent our scientific theories and the data is with the old earth and old universe model. There is no doubt at all for anyone who look at it objectively. It is not just evolution. Geology, palaeontology, anthropology,  cosmology and probably more fields of science, I forget, all agree on these things. Most importantly geology and cosmology who are completely unrelated fields to biology and each other. It is not a huge conspiracy involving millions of scientists and nearly 200 years of scientific progress, it is the truth. Deal with it!

Religion and the supernatural is not within range of scientific investigation as there isn’t much about it that is possible to investigate, other than perhaps secondary effects like miracles which constantly and consistently fails to be confirmed. They are basically just claims that many people agree upon and are emotionally attached to. Well, that is fine, people are free to do that, and they should be, but seriously, what do they have to gain by insisting on a version of reality, that for one is not necessary in order to believe in a god, and secondly is highly inconsistent with the real world? They are shooting themselves in the foot when trying to object to reality based on dogmatic interpretation of ancient texts. These interpretations are a legacy from pre-scientific ages, and seemed reasonable enough then. They aren’t any more. Welcome to the 21st century, the progress of the 19th and 20th century is required reading. You seem to have missed that too.

C++ Progress Counter

Much of the code I write these days is for numerical methods used in physics. What I often need is some output that tells me how long a program has come in for instance a Monte Carlo integration. I had to look a bit around on the net as a regular cout command doesn’t seem to work within a loop, and I want the progress counter to overwrite the same line as it progresses. Here is the solution:

j=0;
cout << "Progress: 0%";
for(i=0; i<iMax; i++) {
  //Algorithm here..

  if(i%(iMax/100)==0) {
    j++;
    cout << "\rProgress: " << j << "%";
    fflush(stdout);
  }
}
cout << endl;

Key elements here are the “\r” to return the cursor to the beginning of the line (for the overwrite) and “fflush(stdout)” to flush the buffer, something which isn’t done automatically if you do not have an endl.

ALF

ALFI got hold of the 1980′s sitcom “ALF” here the other day. For once one of the good old TV shows I watched as a kid turns out to be every bit as funny as I remember it to be!

ALF (Alien LifeForm) is a character from the planet Melmac that crash-lands in the garage of a regular middle class American family, the Tanners. They take him in as part of their family to hide him from the government Alien Task Force. ALF is a frantic funny little guy, a bit immature for his 229 years of age. Every episode of the 4 seasons of the show are more or less independent stories involving ALF getting into some sort of trouble or another. Enjoyable easy-going sitcom with many fun moments. It is pretty timeless for being over 20 years old, and have very few obscure 80′s references. :)

ALF – Episode list

“I shed, therefore I am.” -ALF

Happy 42 day!

Today, October 10th 2010, or 10.10.10, which is when written in binary: 101010 = 42.

So happy 42 day!

42 Day

Terminal World

Terminal WorldTerminal World is the latest book by Alastair Reynolds. The book is set some time in the future in a time when humans are struggling to survive on a cooling planet where zones restrict where advanced technology or even biological life can survive. The main human city is located on the surface of a large spiralling spire reaching out into space. Both the zones and the spire are remnants of earlier times when humans were more technologically advanced. That time is gone, and little knowledge remains of this time. Most of humanity live in primitive zones where only primitive machinery can function.

The main character of the book, Quillon, is an angel. Angels are descendants of some modified and enhanced part of the human race. They can only survive in the zones that allow the highest level of technology. Quillon has been modified to serve as an infiltrator in the lower level zones, and now someone is out to kill him. The story first takes us through his flight, and then we follow him as he learns about the story of humanity and the remnants of ancient technology.

As usual, Reynolds has written a magnificent story. Very imaginative. However as too often with his books, the ending feels a bit rushed and too much left to be explained. Still, a very good read.