January 2008
5 posts
3 tags
2 tags
That 90's Show
It was one of the funniest episodes of The Simpsons I’ve seen, and all this guy can do is bellyache about how it’s “insulting” to fans that it’s breaks The Simpsons canon.
1 tag
Why I Hate jQuery
From the front page of the jQuery web site:
You start with 10 lines of jQuery that would have been 20 lines of tedious DOM Javascript. By the time you are done it’s down to two or three lines and it couldn’t get any shorter unless it read your mind.
When did a single line of complicated code become a better thing than a readable ten line function?
4 tags
Shell Script to run JsDoc Toolkit
JsDoc Toolkit is great, but it’s a pain in the arse to type in that long command line whenever you want to run it. Here’s a shell script to run it quickly and easily.
Create a file called /usr/local/bin/jsdoc, and stick the following content in it.
#!/usr/bin/env bash
java -Djsdoc.dir=/usr/local/jsdoc \
-jar /usr/local/jsdoc/app/js.jar \
...