Monthly Archives: November 2008

11/25/2008
Comments

Interesting moments of Left 4 Dead

I have been playing Left 4 Dead for the past two weeks (with a gifted copy!) and I find it a blast. Either shooting through hordes of zombies in co-op or saving my teammates and watching my back during versus … Continue reading


11/18/2008
Comments

Dynamically generating a .wav in JavaScript

I’ve put together a sine waveform generator that generates .wav files on the fly in pure JavaScript and plays the .wav file using whatever plugin your browser has installed. It works under Firefox, Opera, Safari, and Google Chrome, but I … Continue reading


11/18/2008
Comments

pack() in JavaScript

Here’s a very basic pack() in JavaScript that allows you to easily write binary data. It uses the same format characters as in PHP’s pack() function, but it doesn’t support all of them and it surely doesn’t support repeater arguments.