This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Automatically calls all functions in APP.init | |
// | |
jQuery(document).ready(function() { | |
APP.go(); | |
}); | |
// | |
// Module pattern: | |
// http://yuiblog.com/blog/2007/06/12/module-pattern/ |