January 2010
13 posts
1 tag
Notation Matters →
5 tags
5 tags
7 tags
Parrot AR.Drone Game Developer Zone →
Start building iPhone and iPod touch applications compatible with AR.Drone wifi helicopter.
6 tags
Objective-C class for zip/unzip →
This works great on the iPhone.
ZipArchive* za = [[ZipArchive alloc] init];
if ([za UnzipOpenFile:@"/Volumes/data/testfolder/Archive.zip"]) {
BOOL ret = [za UnzipFileTo:@"/Volumes/data/testfolder/extract" overWrite:YES];
if (NO == ret) {
}
[za UnzipCloseFile];
}
[za release];
5 tags
How to automatically build an IPA file from XCode →
Very helpful tutorial on automating ad hoc distribution.
4 tags
Debugging Tip – objc_exception_throw breakpoint |... →
via Tim Sears (u2elan)
7 tags
jQuery Swipe plugin →
For iPhone swipe gestures.
3 tags
I'm just sayin'... →
Tutorial: Jailbreak Your iPhone Using BlackRa1n
2 tags
"All I need is a Programmer" →
When you receive this email:
“Hey, I hear you’re a programmer! That’s great, because my buddy and I have this idea for a business. We have everything important figured out, and all we need is a programmer to throw it together.”
Here’s how you reply:
“Well, I have some other projects I’m involved in right now, but I’m always happy to take a look...
2 tags
PocketGamer.biz unveils the top 50 iPhone... →
They forgot Bordertown Labs!
4 tags
Why are Objective-C delegates usually given the... →
This conversation was helpful.