if you include the suffix "@2x" at the end of your image names the app will use these images instead of your regular low res images. For example if I have an image "title.jpg" I…
awesome illustrative beer labels.
awesome illustrative beer labels.
implementing iAd Framework ADBannerView on iOS4
Putting ads in your iPhone app is as simple as adding an ADBannerView to your view. You can alter the location of the view by changing CGRectZero to CGRectMake(x, y, 0, 0) or altering the…
Read more of implementing iAd Framework ADBannerView on iOS4
iphone rotate ui to orientation
I found a lot of confusing descriptions on how to get iphone views rotated to orientation. Most of them were using interface builder which doesn't help me as most of the applications I build are…
trace flash log output in terminal
It's a great easy way to debug flash in the browser without relying on third party plug ins. If you want to save it you can even put the command in a text file and…
deploy any site with capistrano from svn
Capistrano is a very cool web deployment tool initially built for the ruby on rails environment, more info can be found here. However you don't just have to be coding in Ruby to use it,…
applescript to hide/reveal hidden files
There are certain things I find I do now and again which would be nice to automate. One of them is revealing hidden files, on a mac that means the file name begins with a…
Parse XML for iPhone NSXMLParser
so here's how you parse an xml file in objective c, you include the xml in you resources folder in xcode and then we'll create a class file which acts as an NXMLParserDelegate to parse…
Flixel Animated TileMap
So I was putting together a game where I wanted an animated tilemap in flixel, it did not seem to have this functionality natively, so I created a class for it and thought I'd share.…
HTML5 getting started with canvas
HTML5 and javascript are the next wave of web capabilities to do rich content without flash or any other plug-ins like unity. A big part of this is the canvas element which allows you to…