Feed on Posts or Comments

Acoustics &Computation &Science Wesley R. Elsberry on 19 Feb 2012

Some Data Analysis and Visualization

As noted here before, I'm working through refreshing archived data, mostly from CD-ROM media. I've run into a whole batch of CD-ROM disks that are in good physical condition, but which mostly cannot be read. I'm trying some tools that I've seen recommended, but would be open to suggestions.

But the whole point of getting the archived data refreshed is to do something with it. And that's what I will aim to discuss here this time.

Over several years, there were a number of different technologies I was using to collect bioacoustic data. This means that I don't have one single type of data of interest. I have data that was recorded on audio cassette tape. I have data from a Racal Store V data recorder that was transferred to cassette tape. I have digital data from Keithley-Metrabyte DAS-1800 DAQ, Tucker Davis Technologies DAQ, and a couple of different National Instruments DAQ boards multiplied by at least two different multichannel scenarios. Plus, there's digital data transferred off of a Racal Storeplex unit via SCSI. There's mixed endian byte order issues, among other things.

I have a good software solution for two of these particular data acquisition scenarios. I wrote that between 1999 and 2001 using Borland's Delphi 5. In all, there's about 60,000 lines of code for data acquisition, reduction, analysis, and visualization. The original can handle multi-channel recordings taken from a single National Instruments board. A variant works on digitized audio recordings. That includes interactive data reduction with an automated click-picker whose choices can be refined with changes in parameters or by interaction with an oscillogram graph.

That still leaves a lot of data waiting for analysis. During my time at Michigan State University, I got into Python programming. There are a number of nice things about going after the rest of the data with Python. A big one is that Python is free, open-source software. I can have colleagues install it and not have to worry about breaking their budgets, which is a concern when one considers the well-established science and engineering scripting platform, MATLAB. While Python doesn't yet have all the "toolbox" capability of MATLAB, it has enough to move ahead with. For the scientific programmer, there are the Numpy, Scipy, and Pylab modules (I installed the Python(x,y) package on my Windows laptop, which includes those and more besides.) Numpy extends Python with a fast array and matrix manipulation capability. Scipy includes a variety of analysis tools. Pylab looks to put a wrapper on those two, plus the Matplotlib graphics module and the Ipython interactive shell.

I recently wanted to extract spectral information about dolphin clicks from one of the datasets that I hadn't previously examined. So I turned to Python to do that. The data was stored as raw binary, 16 bit signed integer samples. Reading that data was simply:

PYTHON:
  1. fd = open(fn, 'rb')
  2. read_data = np.fromfile(file=fd, dtype=np.int16)
  3. fd.close()

where "fn" is a filename pulled from the directory of interest. The "np" reference above resolves to "numpy". The three lines say to get an open file object, fd, by opening a file, fn, for binary read. Then, a Numpy array containing the data is returned by the Numpy static method, fromfile, given the file object and the specification of the data type as signed 16 bit integers. The third line closes the file object. If I had a problem with endian issues, there's at least a couple of ways to address that in Numpy. (Getting the wrong byte order should be obvious on visualization, but I've seen a professor merrily tout a new processing method for dolphin clicks when his slides clearly showed that he had a byte-order problem with his dataset.)

While it is better to handle DC offset problems at the time of data collection, sometimes you just have to deal with it at analysis time. This dataset handed me that problem. This problem is one where a time-varying signal should be centered at zero volts input, but instead centers at some non-zero voltage. Fortunately, it was a fixed offset, so a pretty simple approach worked nicely: find the mean value across the dataset, and subtract that value from each sample.

PYTHON:
  1. shiftdata = read_data + ([-np.average(read_data)])

The use of a Numpy array for the data means that the one line above handles the element-wise addition operation. The Numpy array on the left is now a floating-point array instead of an integer array.

My Delphi program had a click-picking algorithm that took a while to craft. I haven't ported it yet, so I just went with a very simple approach in Python. That looks at chunks of the data, where the chunksize was selected to be a bit larger than the maximum click width, but a good deal smaller than the interval between clicks. Within each chunk, the maximum value and minimum value are found. If the maximum and minimum are outside a defined noise level, consider it a found feature.

PYTHON:
  1. chunkmin = np.min(cary)
  2. chunkmax = np.max(cary)
  3. if (chunkmin <-noiseband) and (chunkmax> noiseband):
  4.     # Found a click! Or a transient, at least.
  5.     chunkmaxloc = cary.argmax()

Using the Numpy routines to find the min, max, and max location is pretty snappy.

Then, for each "click" located, I ran an FFT to get a power spectral density, and plotted that. I just used example code to add this functionality. (For underwater acoustics where pressure is measured, though, the conversion to decibels uses a factor of 20 rather than 10.)

So, for a quick and dirty script of less than three hundred lines total, I was able to:

* get a directory listing
* match to filename features to identify files to analyze
* remove DC offsets
* save new versions of the data
* scale the data according to field notes
* locate "clicks" in the data
* generate a PSD for each "click"
* collect PSD data
* generate and save oscillogram/PSD plots
* rank "clicks" on spectral features
* copy off plots of the highest-ranked clicks to a directory

My 2.4GHz dual-core Ubuntu workstation ran this script on 230 megabytes of data, producing over 1,400 graphs, and did it in eight minutes time. I've just located a calibration sheet on the hydrophone used, so once I've digitized that and applied it, I'll post an example with real dB numbers on the axis.

Viewed 2215 times by 297 viewers

Acoustics &Computation &Science Wesley R. Elsberry on 12 Feb 2012

The Weekend

I don't know what other people got up to this weekend, but mine has been pretty well filled with computing projects.

I've been working with my friend Marc to try to get to the bottom of the Verizon FIOS connection foul-up. We each ran TCPDUMP on our respective machines while making a request that could be fulfilled (a small static HTML page) and one that could not be fulfilled (a dynamic page for webmail). We've sent the logs off to a networking guru friend of ours to see if he has any ideas. While I fully expect that this is a problem in Verizon's gear and processes, we are continuing to test any possibility that a fault in our gear could be an issue.

As I've mentioned previously here, I have data stretching back to the mid-1990s on CD-ROM. I've made a chunk of progress toward refreshing the archive by copying various of those to hard disk. It takes time, and needs manual attention every five minutes or so to unmount the last disk, load the new disk, mount it, and set up a copy process. Fortunately, most of the disks simply copy without error. I'm using ddrescue to go after the few files that won't copy cleanly.

I've also been going through some of the packed boxes to locate more disks to be refreshed. Along the way, I've been reminded that I also have a pile of video and acoustic recordings on tape to digitize as well. I do have a cassette tape deck set up to digitize to my laptop, but I haven't gotten my desk set up nicely to incorporate the video digitizing machine into a smooth workflow. From left to right, I have a Macbook Pro, a Viewsonic 24" LED monitor for a second screen for a laptop, a Gateway MT6458 laptop running Win7, an Optiquest 15" monitor for a desktop machine, plus keyboard and mouse for a desktop. Under the desk itself, I've got the video digitizing machine and the workstation/file server box. The video digitizing machine was built as state-of-the-art in 2001. It runs Windows XP, since the digitizing card doesn't work under anything more recent. It still does a nice job of pulling in analog sources in a DV video stream. The file server is much more recent, being built in 2007. It runs Ubuntu Linux 11.10. There's 4 terabytes of hard disk storage in that machine, which we use for our project files, personal files, multimedia, photos, and data. We're coming up to the limits on that, especially after this weekend's work.

I found a box of pocket notebooks, several of which have notes from our research data collection. But I did find one that has notes from the 1997 Discovery Institute conference on "Naturalism, Theism, and the Scientific Enterprise". I see from my notes that Michael Ruse classed approaches to "religion v. science" into "conflict", "accommodation", and "separation". I don't think "accommodation" was used by Ruse in exactly the same way that more recent commentary has gone, but I thought it interesting to see the word there, anyway.

I'm also working on some Python programming and a PHP/MySQL project. Between these things, that pretty well soaks up the time.

Viewed 7394 times by 750 viewers

Antievolution &Education &Florida Wesley R. Elsberry on 09 Feb 2012

Critical Analysis, Critically Analyzed

Dr. Eugenie Scott is giving a public talk Thursday, February 9, 2012, at the University of South Florida in Tampa. The topic is on the "critical analysis" legislative efforts that have popped up in Florida, and how these are part and parcel of the creationism movement.

The location is FAH 101 and the time for the talk is 7 PM. There's a reception at 6:30 PM, so getting there early would be a good thing. I plan to be there.

Viewed 10124 times by 923 viewers

Computation &General Wesley R. Elsberry on 31 Jan 2012

Verizon FIOS Continues to Not Talk to Verizon FIOS

I have two new trouble tickets with Verizon FIOS as the connectivity situation continues to be nearly completely non-functional, as it has been since January 10th. The one entered from the Verizon Business FIOS side of things is TXP08R8CY. During the hour-and-a-half tech support conference call needed to get that one going, I happened to inquire about my previously-entered trouble tickets, and was told that they had been closed. Since the problem continues, I insisted that the tech set one up for my residential FIOS account, too. That one is FLCP08R8EN.

If you are a Verizon customer and have difficulty getting through to this site or other sites I run, be sure to reference the above tickets when you put your complaint in. Thanks.

Viewed 16937 times by 1647 viewers

Computation &General Wesley R. Elsberry on 16 Jan 2012

Verizon FIOS Doesn’t Talk to Verizon FIOS?

I have a bit more information about the connection difficulties I've been having with my ISP, Verizon FIOS. I have a residential account in Palmetto, FL with Verizon FIOS. Mostly, it works fine. I can get to a host of web sites without difficulty, and the transfer speeds are great.

I do remote system administration on two servers in the Dallas-Fort Worth Metroplex. Those servers get their connection via a Verizon FIOS Business plan link. (Yes, Verizon, the servers are on an account where serving is usual and expected.) One server provides my regular email, the other serves a whole bunch of web sites via virtual hosting. And things there are mostly working, where the outside world can merrily get pages served on demand.

But...

As of sometime early last Tuesday morning, January 10th, Verizon FIOS stopped reliably talking to Verizon FIOS. I can tell the approximate time of the outage as the last email message my computer here picked up from the server there was at 1:09 AM CT. The problem is very likely to have manifested within a very few minutes after that. And the problem's characteristics are just plain weird. One expects most 'problems' with connections to be user error. Certainly that's the primary basis of Verizon FIOS's residential account tech support, who are ready to quit if the problem isn't solved by having the user clear their browser cache or resetting the router. This problem, though, is more complex and is not localized to my particular account. First, not all connectivity is gone, just *most* connectivity. I can use SSH to log in remotely and use commands that return small amounts of information. Once I try a command that would return a page or more of text, the connection drops with a 'Broken pipe' message. There's a web page that is static and is only a few hundred characters in size that I can successfully retrieve. But none of the web sites that rely on web applications (Drupal, WordPress, and IkonBoard) do anything but spin forever while the browser displays 'Waiting on ...'.

So let me jot down some things I've learned about this so far.

* It isn't a DNS issue, as 'nslookup' finds any of the domain names and returns the correct IP address quite rapidly.

* It isn't a single port failure. Ports 22, 25, 80, and 587 are, at a minimum, included in the affected list.

* It isn't a complete break, as connections on the scale of a single packet of data at a time work.

* Using traceroute for other websites shows three hops taken within the Verizon routing center in Tampa. Traceroute for the affected servers shows two hops taken similarly, but the third times out.

* My parents live in Lakeland, Florida, a goodly distance away from where I live, and have Verizon FIOS as their ISP. I visited there this past weekend and asked my dad if he had been able to check this blog recently. He said no, not for about the past week. I tried traceroute from their connection, and it behaved the same way as from my home connection. The problem is not localized, it affects other Verizon FIOS customers.

* I've heard from Texas where another Verizon FIOS user of the email system cannot connect to the email server. I don't have a traceroute result from them to compare.

I have two open tickets on this problem with Verizon, FLCP08NT6J and FLDQ090SXY. There are some other people who have posted to the web saying that they are having network difficulties with Verizon FIOS in the same time frame, but I haven't seen a report that exactly matches what I am seeing. I'm writing this post by the expedient of using a proxy for my browser, which is a nuisance. (While it is on, my Google search results tend to come back in German, which I can't read.) It's a bit of a Catch-22, since I'd like to get feedback from Verizon FIOS users, but if the problem is of the nationwide scale that I expect it is, this post will be unaccessible to them from that account. On the other hand, if it is accessible via Verizon FIOS elsewhere, that would be useful information to have. If you are a Verizon FIOS user, I would appreciate it if you could run traceroute from the Verizon account to baywing.net and copy the results into a comment here. I'll copy my traceroute results into a comment here shortly.

How to invoke traceroute:

Under Windows, open a command prompt. In the command prompt, type in the following:

tracert baywing.net > tr_baywing.txt

It will take a few minutes to complete if you also have the problem I'm having. The result ill be in a text file, 'tr_baywing.txt', in that directory. Copy and paste the text in a comment here if you aren't seeing the problem, or contact me if you are having the problem.

On Mac or FreeBSD, open a terminal window. At the command prompt, type in:

traceroute baywing.net > tr_baywing.net

On Ubuntu Linux, open a terminal window. At the command prompt, type:

tracepath baywing.net > tr_baywing.net

Here's my email, if you can't leave a comment here (remove spaces and convert to symbols as indicated): w e l s b e r r at b a y w i n g dot n e t

Viewed 29046 times by 2207 viewers

Computation &General Wesley R. Elsberry on 14 Jan 2012

Connection Issues

My connection to the servers in Texas from my home systems is unreliable. For the moment, my only reliable link to various of my web sites and my usual email is via my Android phone. Fortunately, I'm grandfathered into an unlimited data plan and have a Bluetooth keyboard. But that is still not a long-term solution. I have a trouble ticket in for my Verizon FIOS ISP that has been active since this past Wednesday without resolution. I just got a call from Marc saying that another email user is having much the same connection problem, so he's also putting in a trouble report from his side. The servers run on a Verizon FIOS business plan, so connection outages are a concern on that basis, too.

Viewed 30935 times by 2205 viewers

General Wesley R. Elsberry on 13 Jan 2012

A Quick Snap: Coast Guard Station

image

Viewed 31654 times by 2222 viewers

Photography Wesley R. Elsberry on 10 Jan 2012

A Quick Snap

image

View at St. Pete.

Viewed 34192 times by 2339 viewers

Education &Media &Science &Wildlife Wesley R. Elsberry on 09 Jan 2012

No One Expects the Comparative Anatomist

Upcoming television series on PBS: Inside Nature's Giants, begins January 18th at 10 PM.

Professor Joy Reidenberg is an unlikely TV star. She's a comparative anatomist with the Mount Sinai School of Medicine in New York. Physically, she is diminutive, dark-haired and dark-eyed, and not the sort of slender sylph in morphotype that TV producers seem to favor. But Joy has deep anatomical knowledge and a gift for communicating what she knows, and that led the producers of the documentary series, "Inside Nature's Giants", to feature Joy in their program.

Diane and I have known Joy for years as a fellow attendee of various biennial conferences hosted by the Society for Marine Mammalogy. At the latest conference, we caught up with her following the conference-end banquet. She spun us a fascinating tale of how she came to star in a television series. Joy said that she received a call from the producers early one Friday afternoon preceding a holiday weekend, asking her if she might be interested in dissecting a stranded fin whale for a television program. Sure, she said, thinking that they were prospecting and planning for a project that would be months, if not years, down the road. So the question following her "yes" response floored her: Could she be on the plane for Ireland at 6 PM? Maybe was the answer, as Joy told us that physically getting to each part of the transportation network she'd need to get her stuff and passport would stretch things. Her husband and daughter decided to join the expedition. To cut things short, Joy and family made it to Ireland, and despite various amusing misadventures, made it to the locality of the whale stranding on time. There, the documentary producers pressed her into service as liaison to the local health authorities, who had to be convinced that permitting a whale necropsy on the spot was the best way forward to safely disposing of the carcass. She also had to try to convince the police to keep people away from the body, and she reported less success on that front. In any event, Joy got to do the dissection there for the cameras, and her innate enthusiasm and ability to draw people into discussion of anatomy impressed the producers so much that she became a regular co-host on the series.

There was also the adventure of traveling back home. Diane and I have attended necropsies of cetaceans, sirenians, pinnipeds, and sea turtles, and one has to take fairly strong measures to deal with the remaining odor that clings to clothes, skin, and hair. Joy had to physically get inside a decaying whale there in Ireland, and that makes for a different scale of olfactory assault. Joy told us of taking a succession of showers with vigorous scrubbing, but in the end even her family opted to stay in a separate room at the hotel. On the plane ride back, Joy was shifted to the very rear of the plane by the flight attendants, who kindly told the other passengers that they were having trouble with the toilets to explain the stench.

The TV series, "Inside Nature's Giants", is slated to air six episodes on PBS, starting January 18th, 2012, at 10 PM. The series is all about charismatic megafauna, but concentrates on post-mortem anatomical examination. Check your local PBS affiliate to make sure of the schedule. Another regular on the series who should be familiar to readers is Prof. Richard Dawkins.

Viewed 35509 times by 2475 viewers

Science &Wildlife Wesley R. Elsberry on 27 Nov 2011

SMM 2011: Sirenian Workshop

I'm attending the Society for Marine Mammalogy biennial conference this year. The location is the Tampa Convention Center, making this pretty simple to get to.

Saturday and Sunday are when various workshops are held. Today, I'm attending the Sirenian workshop. It is an all-day affair, with 33 speakers and over 200 attendees.

My early connectivity was best with my Facebook account (Wesley R. Elsberry), but I've gotten set up with synced Twitter (welsberr) and Facebook status updates, so most of what I'm noting as things proceed will be going out that way.

Viewed 63334 times by 3645 viewers

Falconry &Law and Politics &Wildlife Wesley R. Elsberry on 22 Oct 2011

Not as Simple as They Think

The editors of the Tulsa World think that Lawmakers should adopt stronger wildlife laws. That's fair enough in light of the tragedy in Ohio where exotic predators like lions, tigers, and bears were released by a suicidal keeper. But the editorial's structure left much to be desired, in my opinion. They do have a good opening:

It's understandable, and in most instances maybe even OK, for Oklahomans to own and keep certain kinds of unusual critters on their homesteads, even in the city. There's nothing wrong with a few chickens or an occasional horse or donkey.

But tigers and bears? Allowing people to own and keep large, sometimes-predatory animals on their premises is just asking for a tragedy to occur.

This next part looks all right on first reading, but there is a problem when it is paired with the ending of the editorial:

But in many parts of the state, a tiger can be kept as a backyard pet without the approval of any agency. And too often, the results are predictably tragic.

"These animals are being bought and sold at the hands of people that have no business owning them. I have seen what happens to them in private hands, and the animal loses," said Dr. Kay Backues, director of animal health and the senior staff veterinarian at the Tulsa Zoo.

"It's horrifying," she said. "It's tragic. And nationally, there are a good number of people that are killed every year or injured by exotic animals they've kept as pets."

Once we get to the end, things have gone from the specific focus and into the completely general:

Micah Holmes, who's with the Oklahoma Department of Wildlife Conservation, which licenses native-animal breeders, perfectly summed up what ought to be the Legislature's marching orders: "First thing we're going to say is that wildlife belongs in the wild."

This is a potential problem with a simple solution. Let's address it before another tragedy occurs.

Do they really want to advocate a simple solution of all wildlife belonging in the wild, that is, that no one can be allowed to have any animal considered wild? They don't clarify what, exactly, their "simple solution" is supposed to cover. I thought of falconry first. Then in composing my response on their site, I discovered that one of their authorities quoted, Dr. Kay Backues, herself owns exotic wildlife that could be at risk under an exceedingly broad wildlife ban. How far might that go? Many people keep aquaria stocked with exotic wildlife, many species of which are obligate predators. It seems to me that the legislative response to the Ohio tragedy either is going to be more complex than the editors claim, or a lot of people are unexpectedly going to find themselves at the wrong end of a simple law.

Here's my response in a comment left on their site:

As the saying goes, every complex problem has a solution that is simple, neat, and wrong. The editorial starts with a more specific thrust concerning large, predatory exotic animals capable of killing humans, but ends with an incredibly broad statement about all wildlife as the "marching orders" to the state legislature.

Hopefully the "simple solution" eventually advocated is just complex enough to permit falconry to continue to be practiced in Oklahoma. Falconry involves always-predatory and sometimes large animals kept by people for the purpose of hunting. The falconry community acted to conserve endangered raptor species when pollution threatened those populations, which sounds to me like the wildlife won in that case, contrary to the import of the quote in the editorial from Backues. Of course, Backues may have been more circumspect and nuanced in what she said than what the editors chose to pass on to us. In fact, given that Backues herself owns an exotic pet (an umbrella cockatoo, according to Anne Brockman's article), one would expect that she must have done so. Does Backues agree with Holmes on the exceedingly broad dictum, "wildlife belongs in the wild"? I'm unaware of any successful release into the wild (success meaning that the released animal lives out the remainder of a normal lifespan there) of an umbrella cockatoo, especially one that has spent 25 years in the care of man.

The legislators might want to talk to the folks at the Oklahoma Falconers Association to figure this issue out, at least as far as falconry is concerned. There may be other stakeholders, such as Dr. Backues, who would also be negatively affected by too-broad a "simple solution". And if the editors want to advocate a simple solution to the problem, maybe a little more care ought to be invested in saying what they think the simple solution is, since "the regulation of exotic wildlife" leaves quite a bit unspecified.

Viewed 88042 times by 4755 viewers

Computation Wesley R. Elsberry on 22 Sep 2011

Refreshing Data, Part Two

Some time back, I mentioned getting data off CD-ROM and putting it on hard disk with a second hard disk for back-up. As time passes, this gets more critical. I think archivists start getting antsy about CD-ROM after a decade or so, and I have media that go back to 1996.

And I have run into CD-ROM data disks with various reading errors.

So I thought that I would mention a freeware tool for Windows that addresses getting what can be gotten from a CD-ROM with problems. This is Roadkil's Unstoppable Copier (RUC). Fortunately, you can stop it in bad circumstances by killing the process in Task Manager. I've done this after setting it to work on a CD-ROM with an obvious, visible blemish. In its default setup, RUC will attempt multiple reads of bad sectors in order to recover as much of a file as possible. This leads to it taking a long, lllllooooonnnnngggg, time to get through a patch of damage. Longer than I was willing to wait, anyway. So in the "Settings" tab, I set it to "Auto Skip Damaged Files". This copies off all the undamaged files from the CD-ROM, and it does so fairly expeditiously. For some CDs, I may decide to let it trundle for a few days to analyze things, but first I want to get as much of the good stuff secured as I can. This tool looks to be a help in that regard.

The lengthy recovery process is probably most useful for large text files, where recovering a majority of a file is preferable to losing all of it due to a possibly small section that is damaged. For binary files, this may not be universally useful. The data files I have are raw integer data, so as long as the reconstituted file preserves the same length, I can recognize the bad patches and leave them out of analysis. That may not hold true for ZIP files and other compressed archives, JPG images, and the like.

Viewed 103606 times by 5441 viewers

Antievolution &Law and Politics Wesley R. Elsberry on 16 Sep 2011

Educating Casey on Publishing

We've known for a long time that Casey Luskin has some very odd ideas about what constitutes a technical publication. Casey's been good enough to document another deficiency of his in this respect for all to see, but no one is allowed to comment. (I wonder what happened to the Discovery Institute's grand experiment in interactive commentary, anyway?)

Casey thinks I'm a hypocrite for criticizing Granville Sewell on the topic of self-plagiarism. As evidence, he notes that an essay co-authored by Jeff Shallit and I was published on the web and later in the journal Synthese.

The Case of Wesley Elsberry's Self-Plagiarism

In 2003, Wesley Elsberry and Jeffrey Shallit co-published a paper, "Information Theory, Evolutionary Computation, and Dembski's 'Complex Specified Information,'" on the website TalkReason.org. (I wrote a response to the substance of their 2003 article here.)[*]

In 2011, Elsberry and Shallit co-published a paper in the journal Synthese titled "Information theory, evolutionary computation, and Dembski's "complex specified information.'"

If you'll notice, the titles of those two papers are identical. That's not all that's identical in the papers. A comparison performed by a colleague using the plagiarism-detection software SafeAssign shows that these two papers are ~94% matching.

(Note: The analysis used text files I had prepared using the original PDFs of the papers. For processing, I had to strip out some numbers and mathematical equations which did not translate well into the text files. Also, my colleague's name has been redacted.)

Isn't it just a bit hypocritical that Elsberry harps upon Sewell's supposed mortal sin of "self-plagiarism" when Elsberry himself has taken previously published work and then republished it in academic journals?

Yeah, I'll stipulate that the essay is mostly the same. But...

Casey, Casey, Casey... Republishing essentially the same thing multiple times in the technical literature is a bad thing. Getting something that's been released on the web but not yet published in the technical literature is perfectly fine, with a caveat: the authors should make sure that the editors are aware of the prior release. This was done for the essay that was published in Synthese. (The editors also knew of a similar essay published in 2004's "Why Intelligent Design Fails", which Casey hasn't mentioned yet.) This situation is not what "self-plagiarism" applies to. Nor is converting material from a dissertation into technical articles considered self-plagiarism, which is another process that I'm still working on. For another case in point, some time ago Reed Cartwright blogged a criticism of a paper. Another researcher saw that and invited Reed to contribute to a response letter in the technical literature. Does Reed's previous web publication of the line of criticism used in the letter establish "self-plagiarism"? That's a clear "No". Scientists treat the technical literature as a separate source of knowledge from popular sources like blogs and portal sites. Repetition of material in lay outlets is essentially of no concern to the scientific endeavor. When it occurs in the technical literature, it is perceived as a pernicious problem.

But Granville Sewell doesn't have a situation analogous to mine, where I converted a lay release into a publication in the technical literature. The Discovery Institute itself counts his shtick about the 2nd Law of Thermodynamics twice already in its list of "peer-reviewed" work on ID. I have no doubt that had AML actually followed through on publication of the essay, the DI would have happily counted it three times over in their list instead of just twice. The DI and its spokes-weasels can't simultaneously claim that each re-publication counts separately and that self-plagiarism that repeats the same arguments in the technical literature is not happening. Of course, Casey knows how weak his position is, else he wouldn't have added the following to his screed:

So I personally don't care if Wesley Elsberry plagiarizes himself, and it doesn't matter to me one bit if he resubmits material he's already published to any publication he likes.

My point is simply this: it is hypocritical for Elsberry to attack Sewell for "self-plagiarism," when Elsberry does the same thing. What Sewell (and Elsberry) have done isn't a crime. Elsberry's complaint is both baseless, and hypocritical.

Given that IDC advocates are so unproductive, Casey has to defend the line that if they can manage to sneak the same stuff around to multiple venues within the technical literature, there's nothing wrong with that. Well, there is something wrong with that. Maybe it isn't high on the lists of academic sin, but it certainly does goes some way to demonstrating intellectual dishonesty to game the technical literature.

[*] Casey, you did not write a response to the substance of our essay. That would have required reading comprehension on your part. What you wrote was an orgy of strawman gouging and delusional codswallop.

Viewed 106427 times by 6022 viewers

Law and Politics Wesley R. Elsberry on 14 Sep 2011

Taxes and Incentives for Job Creation

In the Terry Pratchett novel "Witches Abroad", he sets up an image of "the optimist's fire", which he then defines as "two logs and hope". I bring this up because I'm seeing people who desperately want to be seen as hard-nosed and fiscally responsible proposing the optimist's economic booster: tax cuts and hope.

Cutting taxes on industry (and regulations, too!), it is said, will finally bring about job creation and get the economic fire burning once again. I am afraid that I'm not seeing the causal link here. Our corporate citizens have plenty of money on hand, various estimates putting those cash reserves in the trillions. It's not like any tax cuts are contemplated on that scale, so that leads to the vexing question of why jobs aren't being created now? If they are worried about consumer spending, tax cuts for businesses don't address that at all.

Well, having said that, I would propose a tax cut for businesses. But I am not proposing an across-the-board tax cut. No, I think that there should be a tax incentive for businesses that create new jobs. If you have a business and are bringing more people into the workforce than you did the year before, your business should get a break on its taxes. If you have a business that is standing pat on jobs or shedding them or outsourcing them, then, sorry, but no tax break for you. Probably this would have to have some metric that ties together both number of jobs and total compensation per job. The right incentive structure will reward companies more for better-paying jobs, and less for low-paying job creation. But that's a refinement to be considered after getting more people onboard with the big idea.

This puts the right outlook on using the tax code to influence business: it makes clear what behavior is needed to take advantage of the tax incentive, and makes clear that until that behavior is actualized, there is no corporate handout in the offing. It rewards the corporate citizens who are making things better here in the USA, and withholds benefits from those who seek to cut labor corners or send jobs overseas. It means that we aren't cutting our own economic throats to no better purpose than padding executive bonuses, which seems to be all that we've gotten out of corporate tax-cutting in recent memory. It would mean that we are applying a lighter where it is needed rather than hoping that a fire will start on its own somewhere, somehow. And, best of all, even if it doesn't work and most corporations refuse to create jobs anyway, we haven't burdened the rest of the taxpaying public unnecessarily.

Viewed 100883 times by 5560 viewers

Antievolution &Law and Politics Wesley R. Elsberry on 02 Sep 2011

Revising Assessment of Clayton Williams, Jr.

Back in 1990, Clayton Williams, Jr. was in the news a lot as he ran for governor in Texas. His campaign famously imploded over insensitive good-ol'-boy comments made to a weekend gathering of media. He was rich, but there didn't seem to be much else to recommend him. I always thought it odd to go by the "Clayton Williams, Jr. Alumni Center" at the TAMU campus.

But it appears I need to seriously revise my assessment of Williams. The Austin-American Statesman reports that Williams had some extraordinarily good advice for Texas Governor Rick Perry (which Perry obviously and promptly ignored):

Williams, a wealthy Midland oil man, wrote to Perry as the State Board of Education was starting the debate over new science curriculum standards. He warned Perry to stop any effort by the board to include creationism or intelligent design in those standards.
“If Texas enters into a debate on the teaching of fundamental religious beliefs in public schools, it will tarnish our strong academic reputation, set our ability to attract top science and engineering talent to Texas back decades and severely impact our reputation as a national and global leader in energy, space, medicine and other high tech fields,” Williams wrote.
He continued: “Governor, this is a very important issue for Texas. I urge you to quell this issue quietly, firmly and permanently.”

Viewed 101078 times by 6061 viewers

Acoustics &Computation &Science &Wildlife Wesley R. Elsberry on 14 Aug 2011

Multiple Sound Sources in the Bottlenose Dolphin

It's been a long time coming, but the paper on evidence for multiple sound sources in the bottlenose dolphin appears in the October 15th issue of the Journal of Experimental Marine Biology and Ecology. I've been told that the PDF will be freely available soon, hopefully in the next week or so.

The abstract is:

Indirect evidence for multiple sonar signal generators in odontocetes exists within the published literature. To explore the long-standing controversy over the site of sonar signal generation, direct evidence was collected from three trained bottlenose dolphins (Tursiops truncatus) by simultaneously observing nasal tissue motion, internal nasal cavity pressure, and external acoustic pressure. High-speed video endoscopy revealed tissue motion within both sets of phonic lips, while two hydrophones measured acoustic pressure during biosonar target recognition. Small catheters measured air-pressure changes at various locations within the nasal passages and in the basicranial spaces. Video and acoustic records demonstrate that acoustic pulses can be generated along the phonic fissure by vibrating the phonic labia within each set of phonic lips. The left and right phonic lips are capable of operating independently or simultaneously. Air pressure in both bony nasal passages rose and fell synchronously, even if the activity patterns of the two phonic lips were different. Whistle production and increasing sound pressure levels are generally accompanied by increasing intranarial air pressure. One acoustic “click” occurred coincident with one oscillatory cycle of the phonic labia. Changes in the click repetition rate and cycles of the phonic labia were simultaneous, indicating that these events are coupled. Structural similarity in the nasal apparatus across the Odontoceti suggests that all extant toothed whales generate sonar signals using the phonic lips and similar biomechanical processes.

This was a big undertaking, requiring the coordinated effort of a lot of talented and busy people.

Diane Blackwood designed and implemented our acoustic recording layout and the dolphin stationing device and biteplate, and made sure the amplifying equipment was operational and protected from incident. (Incidents with electronics in proximity to sea water are all too common.) I designed and wrote the software that acted as a multichannel digital data recorder, the data reduction program, and the analysis program. Bill van Bonn was our veterinarian who spent our data recording sessions lying prone on the dock as he placed, checked, and positioned the endoscopes and pressure catheters. Our principal investigator, Ted Cranford, operated the video side of things, including the high-speed video capturing the endoscope views. Sam Ridgway and Don Carder consulted with us, helping us with the use of the pressure catheters (which had previously been used in two prior studies they authored). Monica Chaplin and Jennifer Jeffress were the dolphin trainers on the spot during data recording. Tricia Kamolnick and Mark Todd were trainers who helped get the subjects prepared for our data collection process, and Mark Todd implemented the regular video system. It took between two and three hours each data collection day for us to set up, test, and calibrate all the equipment. Breaking down took somewhat less time, but I would still have to run a custom program to demux the data, produce images visualizing the data for each trial, and then shift the day's data off the hard disk and on to CD-ROM media.

Update: The Marine Mammal Center has put up the PDF of the paper.

Viewed 113481 times by 6794 viewers

Law and Politics &Media Wesley R. Elsberry on 11 Aug 2011

Judge Judy Runs a Court of Equity?

There's a "Judge Judy" video clip being circulated where Judge Judy is deciding a case over unpaid rent. A young woman is the plaintiff, and is seeking several months of unpaid rent from a young man who shared an apartment with her. The young man is deeply confused about the concept of government aid for the purpose of rent, and Judge Judy unsuccessfully attempts to educate him about that. He asserts that because he could have paid for a hotel with the money, that he is justified in spending the money for other purposes.

But what struck me was the conclusion to the clip. The young man asks whether the plaintiff paid the rent on the apartment, and Judge Judy tells him that is an excellent question. Judge Judy then determines that the plaintiff only actually paid the rent for one month out of the several months that she is suing the defendant over. Judge Judy abruptly dismisses the case.

I'd appreciate feedback from the legally-oriented folks out there. It seems to me that Judge Judy is only justified in a dismissal like that if she is running (or simulating) a court of equity, not a court of law. So far as I can figure it, a court of law would hold it irrelevant to a claim whether the plaintiff was in violation of a contract with a third party. But in a court of equity, the plaintiff must be filing a case with "clean hands", and it is that standard which the plaintiff in this case failed to meet.

Viewed 114049 times by 6646 viewers

Antievolution &Law and Politics Wesley R. Elsberry on 22 Jul 2011

Casey Luskin Doesn’t Do It Again

Casey Luskin has an unenviable track record. Pretty much anytime Casey gets going, you can count on him to shoot himself in the foot someway, somehow.

Yesterday evening's blog post by Casey is no exception. So if Casey has done it again, why would I give the title I have? Well, because of the way Casey shoots himself in the foot. You see, Casey so often goes off half-cocked because he doesn't bother to figure out what the person he is critiquing actually said, and here we have Casey not listening to the primary source again, therefore Casey "doesn't do it again".

Casey's target this time was Dr. Eugenie C. Scott of the National Center for Science Education. When Casey is up against a strawman he's constructed, he pulls no punches, thus his post's title of "Eugenie Scott Misrepresents the Law on Evolution Education". What does Casey present as evidence of his claim of the title? Let's let Casey go on a bit:

Uncommon Descent is reporting that National Center for Science Education (NCSE) executive director Eugenie Scott has stated in a talk: "You cannot teach evidence against evolution. There have been some court decisions that have talked about this including Kitzmiller, but there has not been a really clean test of this idea of teaching evidence against evolution."

Uncommon Descent? Casey trusts them to get anything right? He shouldn't, because they didn't. The snippet Casey gives truncates even what UD managed to relate, and UD was missing a pretty critical word in there. Casey doesn't note that Genie led into to quote by saying that she had an asterisk on this item, "this item" being text on a projected slide on screen. With the critical text restored, we have this instead: "OK, what else can you not do? I have a little asterisk here that you cannot teach evidence against evolution." Genie goes on to explain the state of the law concerning this point. It has an asterisk because, as Genie ably explains, the law is not yet settled on this particular point. Casey apparently doesn't know about this, and about the only way that could happen is if he started foaming at the mouth based only on the UD text and failed to actually listen to Genie's video presentation. Here's Casey blowing off a piece of his foot:

Isn't that convenient for Eugenie Scott that she now claims that the courts have insulated evolution from any form of critique in public schools?

First, Casey fails to note the nuanced presentation Genie made concerning the point of law in question. Second, Casey places religious antievolution argumentation within "any form of critique". A science classroom is not the appropriate venue for "any form of critique". Only critiques that themselves have passed scientific muster are appropriate there, and that leaves out the old, moldy religious antievolution argumentation.

In any case, Dr. Scott is misrepresenting the law.

Oh, really? Why didn't you listen to Genie's video presentation, Casey? If you had, you would have had the opportunity to not misrepresent Genie.

The Kitzmiller v. Dover lawsuit dealt with the teaching of intelligent design, not teaching scientific evidence against evolution. And even if it had, Judge Jones would have been overruled by a much higher court--the U.S. Supreme Court--which has already ruled that it is legal to teach scientific critiques of prevailing scientific theories like evolution. As the U.S. Supreme Court stated in the 1987 case Edwards v. Aguillard, a case that directly dealt with the topic of origins-education in public schools:

We do not imply that a legislature could never require that scientific critiques of prevailing scientific theories be taught. . . . [T]eaching a variety of scientific theories about the origins of humankind to schoolchildren might be validly done with the clear secular intent of enhancing the effectiveness of science instruction."

(Edwards v. Aguillard, 482 U.S. 578, 593-594 (1987).)

Eugenie can say whatever she wants but she cannot overrule the U.S. Supreme Court refuting her claims.

Genie claimed that the Kitzmiller decision discussed "evidence against evolution", not that it provided the final word in law prohibiting presenting "evidence against evolution". Remember the asterisk Genie mentioned? Oh, of course not, since Casey apparently didn't bother to listen before making up stuff. Can we find Judge Jones doing what Genie said he did? Of course we can:

ID is at bottom premised upon a false dichotomy, namely, that to the extent evolutionary theory is discredited, ID is confirmed. (5:41 (Pennock)). This argument is not brought to this Court anew, and in fact, the same argument, termed "contrived dualism" in McLean, was employed by creationists in the 1980's to support "creation science." The court in McLean noted the "fallacious pedagogy of the two model approach" and that "[i]n efforts to establish 'evidence' in support of creation science, the defendants relied upon the same false premise as the two model approach . . . all evidence which criticized evolutionary theory was proof in support of creation science." McLean, 529 F. Supp. at 1267, 1269. We do not find this false dichotomy any more availing to justify ID today than it was to justify creation science two decades ago.

ID proponents primarily argue for design through negative arguments against evolution, as illustrated by Professor Behe's argument that "irreducibly complex" systems cannot be produced through Darwinian, or any natural, mechanisms. (5:38-41 (Pennock); 1:39, 2:15, 2:35-37, 3:96 (Miller); 16:72-73 (Padian); 10:148 (Forrest)). However, we believe that arguments against evolution are not arguments for design. Expert testimony revealed that just because scientists cannot explain today how biological systems evolved does not mean that they cannot, and will not, be able to explain them tomorrow. (2:36-37 (Miller)). As Dr. Padian aptly noted, "absence of evidence is not evidence of absence." (17:45 (Padian)). To that end, expert testimony from Drs. Miller and Padian provided multiple examples where Pandas asserted that no natural explanations exist, and in some cases that none could exist, and yet natural explanations have been identified in the intervening years. It also bears mentioning that as Dr. Miller stated, just because scientists cannot explain every evolutionary detail does not undermine its validity as a scientific theory as no theory in science is fully understood. (3:102 (Miller)).

Casey's strawman is taking a pounding, but he still hasn't demonstrated Genie misrepresenting anything. Casey, though, is plainly misrepresenting Genie's talk.

More Casey:

Actually, I've heard secondhand that Eugenie doesn't privately believe it's really illegal to critique evolution. I'm not going to name names, but I've spoken with legal scholars who have collaborated with Darwin lobbyists. They've told me that what Eugenie Scott fears more than anything is an army of teachers who WILL teach the scientific controversy over evolution because she knows that under current law, it's legal to do that. There's a reason why, as Eugenie puts it, "there has not been a really clean test of this idea of teaching evidence against evolution." That's because the NCSE and its allies in the Darwin lobby are afraid to file a lawsuit against a policy that requires or permits scientific critique of evolution because they know they will probably lose that case in court.

After all, if the Darwin lobby feels a policy is unconstitutional, they waste little time in filing lawsuits; it took less than two months for attorneys working with the ACLU to help parents file a lawsuit after the Dover Area School Board passed a policy requiring the teaching of ID.

Uh, no, Casey. In the video handily linked in the post at UD, you could have listened to Genie discussing the difference between a "permissive" act and one that is a demand that something wrong be done. For permissive acts, Genie explains that one cannot simply challenge the law on its own, one must instead wait for someone to use the permissive act to implement a curriculum that infringes rights under the Constitution, find out about the infringement, then find someone within the student body who has standing to challenge it and the willingness to challenge it, and all that is much harder than challenging a law that is wrong on its face. Start around 54:50 into the video to hear it. Of course, Casey should have heard it already, but he either didn't bother ... again ... or he is lying about what Genie actually said.

But there have been multiple policies requiring or permitting scientific critique of evolution which have remained on the books for years without any lawsuit. For example:

Texas: Students must "analyze, evaluate and critique scientific explanations . . . including examining all sides of scientific evidence of those scientific explanations so as to encourage critical thinking," and also "analyze and evaluate" core evolutionary claims, including "common ancestry," "natural selection," "mutation," "sudden appearance," the origin of the "complexity of the cell," and the formation of "long complex molecules having information such as the DNA molecule for self-replicating life."

Minnesota: "The student will be able to explain how scientific and technological innovations as well as new evidence can challenge portions of or entire accepted theories and models including . . . [the] theory of evolution . . . ."

New Mexico: Students will "critically analyze the data and observations supporting the conclusion that the species living on Earth today are related by descent from the ancestral one-celled organisms."

Pennsylvania: "Critically evaluate the status of existing theories (e.g., germ theory of disease, wave theory of light, classification of subatomic particles, theory of evolution, epidemiology of AIDS)."

Missouri: "Identify and analyze current theories that are being questioned, and compare them to new theories that have emerged to challenge older ones (e.g., Theory of Evolution . . . )."

Alabama: "[E]volution by natural selection is a controversial theory . . . . Instructional material associated with controversy should be approached with an open mind, studied carefully, and critically considered."

South Carolina: "Summarize ways that scientists use data from a variety of sources to investigate and critically analyze aspects of evolutionary theory."

Louisiana: Louisiana public schools shall "create and foster an environment...that promotes critical thinking skills, logical analysis, and open and objective discussion of scientific theories being studied including, but not limited to, evolution, the origins of life, global warming, and human cloning."

Mississippi: "No local school board, school superintendent or school principal shall prohibit a public school classroom teacher from discussing and answering questions from individual students on the origin of life."

Kansas: "Regarding the scientific theory of biological evolution, the curriculum standards call for students to learn about the best evidence for modern evolutionary theory, but also to learn about areas where scientists are raising scientific criticisms of the theory."

Ohio: "Describe how scientists continue to investigate and critically analyze aspects of evolutionary theory. (The intent of this benchmark does not mandate the teaching or testing of intelligent design.)"

Each of these policies are still in effect, except for the last two (Kansas's policy was repealed in 2007 after conservatives lost a majority on the State Board of Education, and Ohio's policy was repealed in 2006 after its State Board of Education underwent a similar change). The point is this: each of these policies are (or were) on the books for years without any legal challenge from the Darwin lobby. If Eugenie Scott is correct that it's illegal to teach scientific critiques of Darwinian evolution, why is that?

Genie never said a word about it being illegal to "teach scientific critiques of Darwinian evolution". What she was discussing was the tendency for religious antievolutionists to present their anti-scientific stuff and try to act as if they have something worth bringing up in a science class. Just because religious antievolutionists call something "evidence against evolution" doesn't magically change it into something scientific. Scientific critiques have proven to be beyond the capacity of the religious antievolutionists. At best, they present a cargo cult version of critique, adorned with a poor appearance that is, nonetheless, at the limit of what their (mis)understanding of the subject can deliver.

Darwin lobbyists would love to ban scientific critique of evolution in public schools, so why haven't they filed a lawsuit? It's simple: They aren't confident they would win because they know that current law does NOT make it illegal to teach scientific critiques of evolution in public schools.

Sorry, wrong again. Once a bad curriculum turns up and someone with standing to challenge it makes themselves known, then we'll see how fast off the mark the legal challenge gets going. Casey is trying to equate legal challenges to facially-wrong laws and policies with challenging a law or policy without a facial defect, and that is clearly a misrepresentation of the law. Kinda ironic how Casey ends up doing the bad thing that he claims others do.

What's most distressing here isn't just that Eugenie Scott is misrepresenting the law. It's that in her perfect world, she would apparently prefer that teaching scientific critique of evolution be illegal. What kind of society would we live in if Eugenie Scott and the Darwin lobby had their way, and it was illegal to ask hard questions about scientific theories? Not a good one.

Evolutionary science has a long and distinguished record of asking hard questions about scientific theories. There's plenty of theories that have been discarded. Casey could read Peter Bowler's "Evolution: The History of an Idea" to get that background. Or he can continue with not doing it ("it" being due diligence) again... and again.

Viewed 128854 times by 8810 viewers

Antievolution &Law and Politics Wesley R. Elsberry on 19 Jul 2011

Where Did Jesus Say to Put a Nail in the Tire?

Two vehicles in a Bartram Hall (Zoology department building) parking area at the University of Florida were vandalized, apparently because they displayed "Darwin fish" on them. Besides messing up the Darwin fish, the vandal(s) put nails into tires.

Hat tip to Prof. Betty Smocovitis, whose hand appears in the linked video.

Viewed 127181 times by 7474 viewers

Antievolution &Law and Politics &Philosophy Wesley R. Elsberry on 07 Jul 2011

Good Reason: A Ouija Board?

There's an essay by Randal Rauser at "Christian Post" offering what's termed a rebuttal to a criticism of an earlier essay. Rauser seems to be a run-of-the-mill "intelligent design" creationism (IDC) cheerleader.

Rauser defends Dembski's ideas early on.

Joseph H. Axell posted a long rebuttal in the comment section of my article "Unintelligent arguments against intelligent design: A Primer". There are a number of claims I'd like to challenge in the response. For instance Axell writes: "Dembski's 'explanatory filter' for detecting design has been shown to be inadequate (false positives being but one problem)...." That's like saying that an umbrella is inadequate because it is ineffectual in a windy rainstorm. Dembski's explanatory filter, like an umbrella, can still be a useful tool even if it is not perfect. Is Newtonian physics tossed out as illegitimate because it doesn't work at the quantum level?

Joseph Axell is right. Rauser, not so much. Newtonian physics is useful somewhere, which distinguishes it from Dembski's "design inference" that has never had a fully-worked out example applied to any non-trivial problem. So much of Rauser's original essay is based upon the conflation of ordinary and rarefied design inferences that it seems that he must not have read The advantages of theft over toil yet. The deficiencies of Dembski's CSI are detailed in this essay. In the appendix, we introduced the concept of Specified Anti-Information and demonstrated that it formed an upper bound on Dembski's CSI and disproved Dembski's proposed "law of conservation of information". A concerned reader wondered why we would bother repairing "specification", and I replied:

The existence of a minimal program/input pair that results in a certain output indicates that there exists an effective method for production of the output. Since effective methods are something that are in common between intelligent agents and instances of natural computation, one cannot distinguish which of the two sorts of causation might have resulted in the output, but one can reject chance causation for the output. We haven't so much repaired specification as we have pointed out a better alternative to it.

This leads me to a claim about Dembski's design inference: Everything which is supposedly explained by a design inference is better and more simply explained by Specified Anti-Information.

SAI identifies an effective method for the production of the output of interest. The result of a design inference is less specific, being simply the negation of currently known (and considered) regularity and chance. The further arguments Dembski gives to go from a design inference to intelligent agency are flawed. On both practical and theoretical grounds, SAI is a superior methodology to that of the design inference.

Back to Rauser:

Second, Axell writes: "So you concede that ID proponents have so far failed to achieve even the preliminary goal of establishing that a causal intelligence has been engaged in creating features of the natural world."

First of all, whether they have or haven't suceeded in establishing any particular instance of intelligent design is completely irrelevant to the claim that such a project is, in principle, viable. That's the point! (And philosopher of science / atheist Bradley Monton makes it much better than I ever could.)

I need to reiterate that ordinary design is not the same as rarefied design, and here we have Rauser explicitly trying to ignore that point.

Now for the relation to the title. Here's Rauser moving in for the rhetorical kill, at least apparently in his mind:

Finally I turn to the main point. Is it true that a person is obliged to provide "a detailed account of the nature of that intelligent cause and of the time, manner and place in which it has engaged with the natural world" if that intelligent cause is one with which we are not "familiar"?

Axell just invented that stipulation but provided no reasoning for it. He just asserts it. But not only is there no reason to accept it. There is also a good reason not to accept it. Consider the following illustration:

Axell's friend tells him: "Joseph, I fear that there is some kind of intelligence in my house that doesn't want me here."

Axell, being a scientifically enlightened denizen of the twenty-first century is skeptical. "What evidence do you have?" he asks.

Axell's friend then pulls out a ouija board and sets it on the coffee table. Immediately the planchette begins moving across the board and it spells "Get out of here." Axell can clearly see that nobody is touching the planchette and immediately he picks it up, inspects it closely. There are no magnets: it is only a piece of wood. There are no wires. There is no draft. He puts it back down. Immediately the planchette begins to move again as it spells out "I said get out of here."

Highlighting added.

Good reason? Excuse me, but all I see here is a pathetic fantasy, one in which Rauser ludicrously inserts his critic. There is no reason, and further, no reasoning, going on in Rauser's response. It is, rather literally, the demon-haunted world being given as a basis for the legitimacy of IDC. We all knew that already, Randal.

Viewed 112214 times by 8170 viewers






Support This SiteCafePress Shop
The Austringer © 2012 |ShadedGrey made free by Web Hosting Bluebook