Sunday, January 02, 2011
Saturday, February 06, 2010
Sunday, January 03, 2010
Alesis Compressor/limiter
I got tired of continuously changing the volume in movies I watch - from quiet whispers to huge explosions and gunfire, so I tried using a compressor/limiter usually used for recording. The Alesis 3630 is relatively inexpensive, and is easy to set up. It also has blinking lights, and I like blinking lights :) I've watched a few action movies so far, and it works great. It's transparent in that you don't notice that it's working.

Saturday, December 19, 2009
Wednesday, December 09, 2009
Loading local web resources on iPhone
I wanted to learn how to load web resources locally, so I finally found how:
Also, you have to make your javascript resources non-executable
NSString *path = [[NSBundle mainBundle] pathForResource: "test.html" ofType: @""];Objective-C is pretty convoluted sometimes!
[self.webView loadRequest: [NSURLRequest requestWithURL: [NSURL fileURLWithPath: path]]];
Also, you have to make your javascript resources non-executable