
I have been doing quite a bit of Google Web Toolkit programming lately. I thought I would start sharing a few of the troubles and fixes along the way. Most recently I have been attempting to get Google Gears working for offline access with my GWT 1.7 web application.
Read more…

For my radio show iPhone application project, I wanted to use the metadata contained in my enhanced podcast files. Including:
- chapter information (artist/song)
- chapter start time
- chapter image
Once I had this information I wanted to store it in XML on my server so I could access it whenever I wanted (from the iPhone application).
Read more…

I have been working on a project that requires me to stream audio from a webserver to the iPhone, starting at an offset in an mp3 file. I showed how to modify Matt Gallagers awesome AudioStreamer code in a previous post. What I find myself doing quite a bit is stopping play on one file and starting play on another. Obviously you want the gap between tracks to be as minimal as possible.
The easy way to do this would be just to keep track of duration in a ’switcher’ object, Read more…


My first iPhone application got approved! Details are on the Say Goodnight Software page.
Read more…

I found that I was needing an XML parser for nearly every iPhone application I was writing. Once you figure out the streaming nature of NSXMLParser, it really isn’t very difficult to use. However, since I was always having the didStartElement/foundCharacters/didEndElement functions in each application, I really wanted to break them out into a reusable class.
I found that most my XML implementations were VERY simple, as I was just using it for data storage and transfer. However, of course, each XML is different so my class has to handle that properly.
After making several iterations, I settled on using an NSArray for the root of the XML file. Each node is a NSDictionary with three object/key pairs:
Read more…