Skip to content

Instantly share code, notes, and snippets.

View codylindley's full-sized avatar

Cody Lindley codylindley

View GitHub Profile
// 1: how could you rewrite the following to make it shorter?
if (foo) {
bar.doSomething(el);
} else {
bar.doSomethingElse(el);
}
bar[foo?'doSomething':'doSomethingElse'](el);
As the video says, I think your position on the matter is intellectually dishonest. The very origins of the word
atheism makes a positive assertion "without gods". Does Hitchens follow your line of reasoning? From what I know
of his book, its not a single sentence (or more) requesting proof.
Like I've stated, the burden of proof in this case are on both parties because both an atheist and a christian
are making claims. Trivial wordings aside. We should set this proof thing aside. I think we agree in theory
that if you assert you have a burden of proof requirement.
Here a few more comments:
//
// Automatically calls all functions in APP.init
//
jQuery(document).ready(function() {
APP.go();
});
//
// Module pattern:
// http://yuiblog.com/blog/2007/06/12/module-pattern/