<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>Software development in the minutes a day I have spare</description><title>a.k.a devgeeks</title><generator>Tumblr (3.0; @therealdevgeeks)</generator><link>http://blog.devgeeks.org/</link><item><title>Been a while, but there is a reason</title><description>&lt;p&gt;&lt;img alt="Finally submitted" height="220" src="http://f.cl.ly/items/3x0O3Y403q1L0X390W0x/Screen%20Shot%202012-05-19%20at%207.29.39%20AM.png" width="417"/&gt;&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s been almost two months since my last post, but that&amp;#8217;s because I have been working hard on a new app. In fact, an entire new product.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;ll be able to post more soon including some of the custom plugins I wrote for the app.&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s a camera-based app at heart so I needed a custom camera overlay view as well as some changes to make the camera more responsive (there was a horrible delay after clicking the &amp;#8220;use&amp;#8221; button in the core PhoneGap Camera API).&lt;/p&gt;
&lt;p&gt;I am hoping to find a way to make the camera functionality open source and abstract enough that it would be useful to someone else.&lt;/p&gt;
&lt;p&gt;Until then, stay tuned? ;)&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/23309761135</link><guid>http://blog.devgeeks.org/post/23309761135</guid><pubDate>Sat, 19 May 2012 07:42:00 +1000</pubDate><category>PhoneGap</category><category>PhoneGap Plugins</category><category>Devgeeks</category><category>iPhone</category></item><item><title>Who Uses PhoneGap/Apache Cordova?</title><description>&lt;a href="http://www.tricedesigns.com/2012/03/27/who-uses-phonegapapache-cordova/#.T3LB_SToQf0.tumblr"&gt;Who Uses PhoneGap/Apache Cordova?&lt;/a&gt;: &lt;p&gt;A nice list of some of the “bigger” names behind/using PhoneGap / Cordova.&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/20055090541</link><guid>http://blog.devgeeks.org/post/20055090541</guid><pubDate>Wed, 28 Mar 2012 18:47:45 +1100</pubDate></item><item><title>Announcing the Read it Later plugin for PhoneGap (soon also for Cordova)</title><description>&lt;p&gt;One of the developers working on the new &lt;a href="https://github.com/Wikimedia/WikipediaMobile" target="_blank"&gt;PhoneGap-based Wikipedia Mobile&lt;/a&gt; was having some annoying issues with the PhoneGap ShareKit plugin and decided he&amp;#8217;d rather just put the Facebook and Twitter sharing in with their individual plugins. &lt;/p&gt;
&lt;p&gt;He was happy with the decision where Facebook and Twitter were concerned, but lamented that the decision would mean there would no longer be support for Read it Later (&lt;a href="http://readitlaterlist.com" target="_blank"&gt;&lt;a href="http://readitlaterlist.com"&gt;http://readitlaterlist.com&lt;/a&gt;&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;I had a look at &lt;a href="http://readitlaterlist.com/api/libraries-iphone" target="_blank"&gt;Read it Later&amp;#8217;s API and iOS SDK&lt;/a&gt; and it looked fairly straight forward, so when he asked if I would like to write a plugin for it I took on the challenge.&lt;/p&gt;
&lt;p&gt;Just two hours later I had a shiny new PhoneGap plugin!&lt;/p&gt;
&lt;p&gt;&lt;a href="https://github.com/devgeeks/ReadItLaterPlugin" target="_blank"&gt;&lt;a href="https://github.com/devgeeks/ReadItLaterPlugin"&gt;https://github.com/devgeeks/ReadItLaterPlugin&lt;/a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you wanna be as cool as Wikipedia, run over to GitHub and clone it into your app now! &lt;/p&gt;
&lt;h1&gt;Installation&lt;/h1&gt;
&lt;p&gt;This plugin allows you to save a URL to &lt;a href="http://readitlaterlist.com/"&gt;Read It Later&lt;/a&gt; from your app.&lt;/p&gt;
&lt;p&gt;Add the plugin much like any other:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Add the ReadItLaterPlugin.h and VolumeSlider.m classes to your Plugins folder in Xcode (use &amp;#8220;Create groups for any added folders&amp;#8221;)&lt;/li&gt;
&lt;li&gt;Add the ReadItLaterPlugin.js file to your www folder&lt;/li&gt;
&lt;li&gt;Add the ReadItLaterPlugin.js to your html file. eg:&lt;code&gt;&amp;lt;script type="text/javascript" charset="utf-8" src="ReadItLaterPlugin.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Add the plugin to the PhoneGap.plist under Plugins (key: &amp;#8220;ReadItLaterPlugin&amp;#8221; value: &amp;#8220;ReadItLaterPlugin&amp;#8221;)&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Next, get the Read It Later API iPhone Library and add it to your project:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;&lt;a href="http://readitlaterlist.com/api/libraries-iphone#download"&gt;Download the library from Read It Later&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Unzip the library and examples&lt;/li&gt;
&lt;li&gt;Copy these four files into your Xcode project under the Plugins folder (again, use &amp;#8220;Create groups for any added folders&amp;#8221;)
&lt;ul&gt;&lt;li&gt;&lt;code&gt;ReadItLaterLite.h&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ReadItLaterLite.m&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ReadItLaterFull.h&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ReadItLaterFull.m&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://readitlaterlist.com/api/signup/"&gt;Get an API Key&lt;/a&gt; from Read It Later for your app&lt;/li&gt;
&lt;li&gt;Add your shiny new API key to the top of the &lt;code&gt;ReadItLaterLite.m&lt;/code&gt; file you copied in above
&lt;ul&gt;&lt;li&gt;&lt;code&gt;static NSString *apikey = @"&amp;lt;api key here&amp;gt;";&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Add the name of your app (as you entered it to get your API key above) as well
&lt;ul&gt;&lt;li&gt;&lt;code&gt;static NSString *nameOfYourApp = @"&amp;lt;name of your app here&amp;gt;";&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Finally, call the &lt;code&gt;saveToReadItLater()&lt;/code&gt; method using a success callback and an object containing a url and a title:&lt;/p&gt;
&lt;h3&gt;Example&lt;/h3&gt;
&lt;pre class="prettyprint"&gt;function onDeviceReady()
{
    var readItLaterPlugin = window.plugins.readItLaterPlugin;
    readItLaterPlugin.saveToReadItLater(
        function(){
            console.log("Successfully saved to Read It Later");
        }, 
        { 
            url: "http://github.com/devgeeks", 
            title: "Devgeeks on GitHub"
        }
    );
}
&lt;/pre&gt;</description><link>http://blog.devgeeks.org/post/20053826438</link><guid>http://blog.devgeeks.org/post/20053826438</guid><pubDate>Wed, 28 Mar 2012 17:42:00 +1100</pubDate><category>iphone development</category><category>iOS</category><category>PhoneGap</category><category>Cordova</category><category>plugins</category><category>mobile app development</category></item><item><title>How to keep your old version of PhoneGap for iOS when upgrading</title><description>&lt;p&gt;The PhoneGap installer for iOS overwrites the old version when you run it. It puts itself in over the top of your previous version.&lt;/p&gt;
&lt;p&gt;However, when you have shipped an app with PhoneGap and it&amp;#8217;s happily in the App Store, the &lt;em&gt;last&lt;/em&gt; thing you want to do is have to &lt;a href="http://blog.devgeeks.org/post/18290634821/phonegap-cordova-plugin-devs-and-users-are-in-for-a"&gt;deal with changes in the PhoneGap API between versions&lt;/a&gt; if you need to make small maintenance tweaks down the track. &lt;/p&gt;
&lt;p&gt;Here&amp;#8217;s what I do in this instance.&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Before upgrading PhoneGap (running the installer) I back up the previous version of the framework. I copy &amp;#8216;&lt;em&gt;/Users/Shared/PhoneGap&lt;/em&gt;&amp;#8217; to &amp;#8216;&lt;em&gt;/Users/Shared/PhoneGap-&amp;lt;version&amp;gt;&lt;/em&gt;&amp;#8217; (such as &amp;#8216;&lt;em&gt;/Users/Shared/PhoneGap-1.2&lt;/em&gt;&amp;#8217;).&lt;/li&gt;
&lt;li&gt;Next I go into the projects that I want to keep running that version, and I delete the &lt;em&gt;PhoneGap.framework&lt;/em&gt; from the project (remove reference only). &lt;/li&gt;
&lt;li&gt;Then I add the framework from the copied versioned folder I made in step #1. Select the target in Xcode, choose the &amp;#8220;&lt;em&gt;Build Phases&lt;/em&gt;&amp;#8221; tab, open the &amp;#8220;&lt;em&gt;Link Binary With Libraries&lt;/em&gt;&amp;#8221; section and click the + and choose &amp;#8220;&lt;em&gt;Add Other&amp;#8230;&lt;/em&gt;&amp;#8221;, browse to where you backed up your old &lt;em&gt;PhoneGap.framework&lt;/em&gt; and add it in.&lt;/li&gt;
&lt;li&gt;Upgrade PhoneGap to latest version.&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;You now not only have a back up you can keep old projects maintained against, but you have a version you can use if the new PhoneGap &lt;a href="http://blog.devgeeks.org/post/17997175468/phonegap-plugins-in-ios-complaining-about-deprecations"&gt;changes something you want to use or breaks a plugin you need for your project&lt;/a&gt;. In fact, inside the &amp;#8216;&lt;em&gt;/Users/Shared/PhoneGap-1.2/Frameworks/PhoneGap.framework/www&lt;/em&gt;&amp;#8217; folder is the version-specific PhoneGap iOS JavaScript file if you need to downgrade a project.&lt;/p&gt;
&lt;div&gt;&lt;/div&gt;</description><link>http://blog.devgeeks.org/post/18313490602</link><guid>http://blog.devgeeks.org/post/18313490602</guid><pubDate>Mon, 27 Feb 2012 01:09:28 +1100</pubDate><category>PhoneGap</category><category>PhoneGap plugins</category><category>Xcode</category><category>iphone development</category><category>Cordova</category></item><item><title>PhoneGap / Cordova plugin devs and users are in for a bumpy ride</title><description>&lt;p&gt;It looks like those of us who rely heavily on plugins are in for a bad time.&lt;/p&gt;

&lt;p&gt;Cordova devs working on 1.4.x &lt;a href="http://blog.devgeeks.org/post/17997175468/phonegap-plugins-in-ios-complaining-about-deprecations"&gt;began the process of deprecating some classes a great many plugins used&lt;/a&gt;, now it looks like the work on 1,5 and beyond is going to make the plugin landscape even shakier.&lt;/p&gt;

&lt;p&gt;The work on the new unified js will be a great boon to many end users making it easier to develop for multiple platforms. Unfortunately, it looks like it is also going to be only a partial implementation on 1.5 and one that not only might break things for existing apps and/or plugins… but might not even be the final API we see shipped with 1.6…&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;…we’ve made no commitment on the plugin api (its never been official) so I don’t feel we’re breaking any promises&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;…and concerns about it are being dismissed.&lt;/p&gt;

&lt;p&gt;I don’t know about you, but I think I might stick with 1.4.x for now unless a bug comes up that will make it worth it to me to work around these teething issues in the coming releases.&lt;/p&gt;

&lt;p&gt;I do know the PhoneGap Google group, IRC and StackOverflow are gonna get an influx of confused devs very soon. I’m bracing for it.&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/18290634821</link><guid>http://blog.devgeeks.org/post/18290634821</guid><pubDate>Sun, 26 Feb 2012 18:48:22 +1100</pubDate><category>PhoneGap</category><category>Cordova</category><category>plugins</category></item><item><title>PhoneGap plugins in iOS complaining about deprecations and what you might be able to do about it</title><description>&lt;p&gt;In PhoneGap (in reality Cordova) 1.4.x some classes were deprecated in the effort to make it play nice as a component in an otherwise native app (as opposed to only being able to be the primary controlling view). This is causing some confusion when developers using this version try to use plugins written using those classes. Xcode is giving them warnings about the deprecation and making them worry.&lt;/p&gt;
&lt;p&gt;The plugins affected are mostly those that pop up an entire native view controller over the top of the PhoneGap/Cordova app - EmailComposer, SMSComposer, Twitter and worst of all ChildBrowser.&lt;/p&gt;
&lt;p&gt;The important thing to remember is that for now (1.4.x), although the methods are deprecated, they should still work just fine. They will warn you, but as a good friend of mine was fond of saying: “a warning is not an error”. The point of deprecation warnings are to warn you that what you are doing might go away some time in the future and to start thinking about a new way to do it.&lt;/p&gt;
&lt;p&gt;AFAIK, the issue will be with the coming releases when the methods are actually removed (there is debate on if this should be soon… like 1.5 or 1.6… or wait for a major release like 2.0).&lt;/p&gt;
&lt;p&gt;I am happy to update plugins and submit pull requests to the phonegap-plugins repo if the plugin is not being actively maintained or not overly complex. I have already submitted a pull request for an update to SMSComposer after someone asked for help in the PhoneGap IRC channel. As for any of the others affected, it might be that they will just use the deprecated calls until the upcoming plugin upgrade guide is ready I believe with 1.5.x.&lt;/p&gt;
&lt;p&gt;In the case of most of the affected plugins, really all you should need to do is in the plugins &lt;em&gt;PluginClassName.m&lt;/em&gt; file add in this initialization method just after ‘@implementation PluginClassName’ (&lt;em&gt;note: this one might be optional, but most of the modern plugins seem to initialize self this way&lt;/em&gt;):&lt;/p&gt;
&lt;pre class="prettyprint"&gt;-(PGPlugin) initWithWebView:(UIWebView)theWebView 
{     
    self = (PluginClassName*)[super initWithWebView:theWebView];     
    return self; 
{
&lt;/pre&gt;
&lt;p&gt;Then, where ever the deprecated ‘appViewController’ appears… change:&lt;/p&gt;
&lt;pre class="prettyprint"&gt;[[ super appViewController ] presentModalViewController:picker animated:YES];
&lt;/pre&gt;
&lt;p&gt;to:&lt;/p&gt;
&lt;pre class="prettyprint"&gt;[self.viewController presentModalViewController:picker animated:YES];
&lt;/pre&gt;
&lt;p&gt;This will make most of the basic plugins compile quite happily without warnings. Unfortunately… ChildBrowser not so much, but that plugin is far from simple. However, it is very popular so I am sure it will get some love before the deprecations truly take effect.&lt;/p&gt;
&lt;p&gt;If you have any questions about this feel free to shoot me a message:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;tommy AT devgeeks DOT org&lt;/em&gt;&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17997175468</link><guid>http://blog.devgeeks.org/post/17997175468</guid><pubDate>Tue, 21 Feb 2012 16:29:00 +1100</pubDate><category>PhoneGap</category><category>plugins</category><category>Cordova</category><category>appViewController</category><category>deprecations</category></item><item><title>4ZzZfm app program guide updated</title><description>&lt;p&gt;The main reason it took so long to port the &lt;a href="http://blog.devgeeks.org/iphone-apps/4zzzfm-iphone/"&gt;4ZzZfm app&lt;/a&gt; from Objective-C to &lt;a href="http://www.phonegap.com" target="_blank"&gt;PhoneGap&lt;/a&gt; had nothing to do with PhoneGap, really. It had to do with adding new functionality at the same time that I had been wanting to add in for some time.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.4zzzfm.org.au/" target="_blank"&gt;4ZzZfm&lt;/a&gt; has a &lt;a href="http://www.4zzzfm.org.au/program/guide" target="_blank"&gt;program schedule&lt;/a&gt; that changes at the very least every quarter or so. There are also small things that change from time to time for various reasons. Up until this version of the app, changing that program information in the app has meant my updating the schedule manually, then updating the app and submitting a new version to the App Store.&lt;/p&gt;
&lt;p&gt;Needless to say, this didn&amp;#8217;t happen as frequently as it should have.&lt;/p&gt;
&lt;p&gt;So for this version, it was important to me to have the guide be updated from within the app with no updates to the code required. Though getting there was a bit of a challenge, the current version of the app does indeed include that functionality. However, it had not actually been tested in a &amp;#8220;live&amp;#8221; environment&amp;#8230; until today. :)&lt;/p&gt;
&lt;p&gt;Today I pushed an updated version of the guide to the server and the app should automatically use that version the next time it starts up (though the background behaviour of iOS and Android mean that this might not happen unless you close it all the way or don&amp;#8217;t use it for a given period of time&amp;#8230; not entirely sure what all triggers the app having to start from scratch).&lt;/p&gt;
&lt;p&gt;Anyway, it seems to have worked. If you or anyone you know has trouble with the app updating the guide, please let me know, but for now I am calling it a success.&lt;/p&gt;
&lt;p&gt;If you haven&amp;#8217;t already checked out 4ZzZfm and / or the app, it&amp;#8217;s available for &lt;a href="http://itunes.apple.com/au/app/4zzzfm/id359090535?mt=8" target="_blank"&gt;iPhone&lt;/a&gt; and &lt;a href="http://devgeeks.org/android-apps/4zzzfm-android-app" target="_blank"&gt;Android&lt;/a&gt; now.&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17414319727</link><guid>http://blog.devgeeks.org/post/17414319727</guid><pubDate>Sat, 11 Feb 2012 17:35:00 +1100</pubDate><category>iphone development</category><category>4zzz</category></item><item><title>The move to Tumblr</title><description>&lt;p&gt;I have decided to move the blog to tumblr for a few of reasons.&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;I was sick of managing the comment spam on the previous WordPress blog&lt;/li&gt;
&lt;li&gt;I was sick of managing the software/security updates on the previous WordPress blog&lt;/li&gt;
&lt;li&gt;I wanted an easy way to post to the blog when I was out and about on an iOS device using Markdown &lt;/li&gt;
&lt;li&gt;I wanted to see how well Tumblr works for a blog with it&amp;#8217;s own domain, etc&lt;/li&gt;
&lt;li&gt;I wanted to learn how to theme Tumblr &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;So far it seems to be going OK. Some things are certainly easier (less maintenance, easier posting) but some things are more tedious (static &amp;#8220;landing pages&amp;#8221; for the apps, etc).&lt;/p&gt;
&lt;p&gt;I will be updating the theme a bit at a time. Cleaning up the posts so the images are no longer coming from the previous WordPress blog, extending the theme to include comments/discussion/likes/etc and adding more social media integration (apart from just Twitter).&lt;/p&gt;
&lt;p&gt;Feel free to shoot me an email if you think this is a good/stupid/pointless idea. ;)&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17246214103</link><guid>http://blog.devgeeks.org/post/17246214103</guid><pubDate>Wed, 08 Feb 2012 14:13:55 +1100</pubDate><category>devgeeks</category></item><item><title>Meet the new 4ZzZfm app – now for iPhone *and* Android!!</title><description>&lt;p&gt;Dear &lt;a href="http://www.4zzzfm.org.au/" target="_blank"&gt;4ZzZfm&lt;/a&gt; and &lt;a href="http://www.facebook.com/pages/4ZZZ/135231119831050" target="_blank"&gt;lovers of the best community radio station ever&lt;/a&gt;&amp;#8230;&lt;/p&gt;
&lt;p&gt;The &lt;a href="http://devgeeks.org/iphone-apps/4zzzfm-iphone"&gt;4ZzZfm iPhone app&lt;/a&gt; has been updated to version 3.0. This new version should always have an up to date Program Guide. It can now update the guide over the internet so it will no longer need an updated version to have a correct guide.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://devgeeks.org/iphone-apps/4zzzfm-iphone/"&gt;&lt;a href="http://devgeeks.org/iphone-apps/4zzzfm-iphone"&gt;http://devgeeks.org/iphone-apps/4zzzfm-iphone&lt;/a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;or on iTunes:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://itunes.apple.com/au/app/4zzzfm/id359090535?mt=8" target="_blank"&gt;&lt;a href="http://itunes.apple.com/au/app/4zzzfm/id359090535?mt=8"&gt;http://itunes.apple.com/au/app/4zzzfm/id359090535?mt=8&lt;/a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;oh&amp;#8230; and for those that have brought it up whenever the 4ZzZfm iPhone app is mentioned&amp;#8230;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Meet the 4ZzZfm Android app!&lt;/strong&gt;:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://devgeeks.org/android-apps/4zzzfm-android-app"&gt;&lt;a href="http://devgeeks.org/android-apps/4zzzfm-android-app"&gt;http://devgeeks.org/android-apps/4zzzfm-android-app&lt;/a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;or on the Android Market:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://market.android.com/details?id=org.devgeeks.fourzzzfm" target="_blank"&gt;&lt;a href="https://market.android.com/details?id=org.devgeeks.fourzzzfm"&gt;https://market.android.com/details?id=org.devgeeks.fourzzzfm&lt;/a&gt;&lt;/a&gt;&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17199630079</link><guid>http://blog.devgeeks.org/post/17199630079</guid><pubDate>Mon, 05 Dec 2011 11:34:00 +1100</pubDate><category>4zzz</category><category>Android development</category><category>PhoneGap</category><category>iPhone development</category><category>Mobile app development</category></item><item><title>4ZzZfm iPhone app</title><description>&lt;p&gt;So here we are. Almost four months to the day since I last posted about porting the &lt;a href="http://devgeeks.org/iphone-apps/4zzzfm-iphone"&gt;4ZzZfm iPhone app&lt;/a&gt; to &lt;a href="http://phonegap.com" target="_blank"&gt;PhoneGap&lt;/a&gt;, it’s finally awaiting review in the App Store.&lt;/p&gt;
&lt;p&gt;A lot has changed from starting out to getting to this point. I’ll be writing a much bigger post about the whole experience (including my new-found hate for timezones and date math), but till then&amp;#8230; I am just happy to see the back end of it. :)&lt;/p&gt;
&lt;p&gt;Now let’s see if we can get past the approval process OK.&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17199468001</link><guid>http://blog.devgeeks.org/post/17199468001</guid><pubDate>Tue, 29 Nov 2011 10:58:00 +1100</pubDate><category>iPhone development</category><category>4zzz</category><category>PhoneGap</category></item><item><title>Devgeeks takes over the WORLD! (or at least my life...)</title><description>&lt;p&gt;So for all my bemoaning about not having enough time to work on devgeeks work and mobile stuff in particular, I have had a career change of sorts and I am now going to pursue devgeeks as my full-time job.&lt;/p&gt;
&lt;p&gt;This means I will be able to take on work as a mobile developer (as well as my more traditional web applications work).&lt;/p&gt;
&lt;p&gt;I have set up the new &lt;a href="http://devgeeks.com" target="_blank"&gt;devgeeks.com&lt;/a&gt; to this end. I will also continue with the open source plugin development that I talked about in my previous post. I am pretty excited about this change. Feel free to throw work my way so I can keep doing it ;)&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17199406632</link><guid>http://blog.devgeeks.org/post/17199406632</guid><pubDate>Tue, 06 Sep 2011 01:31:00 +1000</pubDate><category>degeeks</category><category>Mobile app development</category><category>iPhone development</category><category>Career change</category></item><item><title>Experiments with PhoneGap</title><description>&lt;p&gt;It’s that time again. Time to update the &lt;a href="http://devgeeks.org/iphone-apps/4zzzfm-iphone"&gt;4ZzZfm iPhone app&lt;/a&gt;. Actually, it’s way past due&amp;#8230; but this is the way things go sometimes.&lt;/p&gt;
&lt;p&gt;Early on I attempted to use some of the “write your app in HTML/Javascript/CSS and deploy to iPhone” technologies, but at the time their acceptability by Apple for App Store distribution was in doubt, and I couldn’t get them to do what I wanted anyway. This meant I had to actually learn Objetive-C. Now let me just say that I really like Objective-C. The problem is that I am primarily a PHP developer so HTML/JavaScript/CSS feels more natural to me.&lt;/p&gt;
&lt;p&gt;This has lead me to revisit the above-mentioned web technology options for iPhone app development. &lt;a href="http://www.phonegap.com" target="_blank"&gt;PhoneGap&lt;/a&gt; in particular seems to be both quite mature, used a great deal in apps in the App Store and quite extendable via plugins. This last part is the bit that has tipped it for me. Not only are there some &lt;a href="http://github.com/phonegap/phonegap-plugins" target="_blank"&gt;great plugins available&lt;/a&gt; for PhoneGap, but it is quite easy to write your own plugins.&lt;/p&gt;
&lt;p&gt;What this all comes down to is that I am going to try and re-write the 4ZzZfm iPhone app using PhoneGap and write whatever plugins I need along the way that aren’t catered for in PhoneGap’s core or plugins written by others.&lt;/p&gt;
&lt;p&gt;I have already started on this process and I have the &lt;a href="http://github.com/mattgallagher/AudioStreamer" target="_blank"&gt;Audio Streaming classes&lt;/a&gt; written by the amazing Matt Gallagher (&lt;a href="http://cocoawithlove.com/" target="_blank"&gt;cocoawithlove.com&lt;/a&gt;) that I used in the original Objective-C version of the app (mostly) working as a PhoneGap plugin. &lt;strike&gt;The remote control events don’t work yet, and I am not sure that will be possible from a plugin anyway&amp;#8230; that might require some hacking of the PhoneGap core. We’ll see. It needs some more work&lt;/strike&gt; &lt;strong&gt;update&lt;/strong&gt;: I &lt;strike&gt;have&lt;/strike&gt; &lt;strong&gt;had&lt;/strong&gt; the remote control events working fine. No core hacking needed. Then between updating PhoneGap and iOS something went wrong.&lt;/p&gt;
&lt;p&gt;Another piece of functionality I need for the 4ZzZfm iPhone app is a volume control slider. In the Objective-C iPhone SDK that is implemented using an MPVolumeView (from the MediaPlayer framework).  This turned out to be a very easy to make into a PhoneGap plugin. Now one of the best things about PhoneGap is that it and its plugins are open source. PhoneGap and its plugins are developed by the PhoneGap community and &lt;a href="http://github.com/phonegap" target="_blank"&gt;available on GitHub&lt;/a&gt;. So I have decided to &lt;a href="http://github.com/devgeeks" target="_blank"&gt;join GitHub myself&lt;/a&gt; and submit any plugins I create for this project that I think others might find useful. The first of these that have been added to the main &lt;a href="http://github.com/phonegap/phonegap-plugins" target="_blank"&gt;PhoneGap plugins repository&lt;/a&gt; is the aforementioned &lt;strong&gt;VolumeSlider&lt;/strong&gt; plugin. I am pleased as punch about this as it is my first real contribution to a modern open source project. Hopefully it is just the first of many more such contributions.&lt;/p&gt;
&lt;p&gt;Wish me luck. Worst case I can always just stick with Objective-C.&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17199303914</link><guid>http://blog.devgeeks.org/post/17199303914</guid><pubDate>Thu, 28 Jul 2011 00:15:00 +1000</pubDate><category>iPhone development</category><category>PhoneGap</category><category>PhoneGap plugins</category><category>4zzz</category></item><item><title>Failure to update...</title><description>&lt;p&gt;So what we have here is a failure to &lt;strike&gt;communicate&lt;/strike&gt; update&amp;#8230;&lt;/p&gt;
&lt;p&gt;Between moving house in September, the birth of my beautiful daughter Ivy in October and entering a new start-up phase at my “day job”&amp;#8230; I just haven’t been keeping up with this blog.&lt;/p&gt;
&lt;p&gt;I mean seriously.. the last post was about the Brisbanesounds app not having been approved yet. That app has long since been approved and is going quite well.&lt;/p&gt;
&lt;p&gt;I can’t promise to do much better in the future, but perhaps I can at least update when an app has made it through the approval process next time :)&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17198985431</link><guid>http://blog.devgeeks.org/post/17198985431</guid><pubDate>Wed, 15 Dec 2010 02:43:00 +1100</pubDate><category>devgeeks</category><category>slack</category></item><item><title>An update on the Brisbanesounds iPhone app…</title><description>&lt;p&gt;Apple say they are getting through 83% of new app submissions in 7 days&amp;#8230; I guess Brisbanesounds falls in the other 17%&lt;/p&gt;
&lt;p&gt;I guess all I can do is wait. I have probably been abnormally lucky with my quick turnarounds on the 4ZzZfm app so far. It’s probably just a lucky numbers game. I suppose I shouldn’t be worried. It would be much more serious if it was taking a long time once the review process actually STARTS&amp;#8230; then I would be worried.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://devgeeks.org/wp-content/uploads/2010/09/Screen-shot-2010-09-14-at-14-09-10-7.59.10-AM.png"/&gt;&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17198919197</link><guid>http://blog.devgeeks.org/post/17198919197</guid><pubDate>Tue, 14 Sep 2010 20:35:00 +1000</pubDate><category>iPhone development</category><category>BrisbaneSounds</category></item><item><title>New app for Brisbane Sounds in review in the App Store</title><description>&lt;p&gt;I have finally gotten my second app into the review process on the App Store.&lt;/p&gt;
&lt;p&gt;It’s an app for the Brisbane Sounds project – &lt;a href="http://www.brisbanesounds.com/" target="_blank"&gt;&lt;a href="http://www.brisbanesounds.com/"&gt;http://www.brisbanesounds.com/&lt;/a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img height="118" src="http://devgeeks.org/wp-content/uploads/2010/09/Screen-shot-2010-09-08-at-8-09-10-4.57.23-PM-300x118.png" width="300"/&gt;&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17198873146</link><guid>http://blog.devgeeks.org/post/17198873146</guid><pubDate>Thu, 09 Sep 2010 04:37:00 +1000</pubDate><category>iPhone development</category><category>BrisbaneSounds</category></item><item><title>New version of 4ZzZfm iPhone app on App Store now!</title><description>&lt;p&gt;Hooray! My latest update to my &lt;a href="http://devgeeks.org/iphone-apps/4zzzfm-iphone"&gt;4ZzZfm iPhone app&lt;/a&gt; is live on the Apple App Store.&lt;/p&gt;
&lt;p&gt;Took a bit longer to get approved than the original submission&amp;#8230; I guess due to all the iPad app submissions that must be going on at the moment.&lt;/p&gt;
&lt;p&gt;What’s new in version 2.0:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;4ZzZfm Program Guide navigable by day and time&lt;/li&gt;
&lt;li&gt;“Now Playing” program listing in stream player view&lt;/li&gt;
&lt;li&gt;Program Guide displayable in either QLD (Brisbane) time or your local timezone (especially helpful for overseas listeners)&lt;/li&gt;
&lt;li&gt;Settings bundle for switching between local and QLD time in the Program Guide&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;&lt;img height="349" src="http://devgeeks.org/wp-content/uploads/2010/04/Screen-shot-2010-04-14-at-14-04-10-1.07.28-PM.png" width="194"/&gt;&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17198812826</link><guid>http://blog.devgeeks.org/post/17198812826</guid><pubDate>Thu, 15 Apr 2010 01:18:00 +1000</pubDate><category>iPhone development</category><category>4zzz</category></item><item><title>4ZzZfm iPhone app Submitted and waiting for review…</title><description>&lt;p&gt;So I have finally gotten the chance to submit the next version (2.0) of my iPhone app for the &lt;a href="http://4zzzfm.org.au/" target="_blank"&gt;community radio station 4ZzZfm&lt;/a&gt; to Apple for approval.&lt;/p&gt;
&lt;p&gt;Hopefully I managed to do everything right in the submission process&amp;#8230; I took so long between versions I forgot what I did last time ;)&lt;/p&gt;
&lt;p&gt;&lt;img height="185" src="http://devgeeks.org/wp-content/uploads/2010/04/Screen-shot-2010-04-10-at-10-04-10-2.55.19-PM.png" width="434"/&gt;&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17198743651</link><guid>http://blog.devgeeks.org/post/17198743651</guid><pubDate>Sun, 11 Apr 2010 02:51:00 +1000</pubDate><category>iPhone development</category><category>4zzz</category></item><item><title>4ZzZfm app v2 nearly ready for submission</title><description>&lt;p&gt;I am very close to being ready to submit the next version of my &lt;a href="http://devgeeks.org/iphone-apps/4zzzfm-iphone"&gt;4ZzZfm iPhone app&lt;/a&gt; to Apple for approval.&lt;/p&gt;
&lt;p&gt;I have been hard at work adding features and a better UI experience and I think it’s finally done.&lt;/p&gt;
&lt;p&gt;The main addition to this version is the Program Guide. It is a complete 4ZzZ program guide navigable by day and time. It displays detailed info about each show on 4ZzZ (where available). The streaming player screen even shows what program you are currently listening to.&lt;/p&gt;
&lt;p&gt;The best bit though, is that the Program Guide can be told to display itself in your current local timezone. I know, I know&amp;#8230; it’s no longer Daylight Savings time here in Australia. So the east coast Australian users won’t benefit from this feature till next year. However, anyone in SA or WA will get the Program Guide in their local timezone, not in QLD time.&lt;/p&gt;
&lt;p&gt;Best of all, all the users in other countries will benefit most of all as it’s not just a matter of a couple hours one way or another&amp;#8230; some programs would be on different actual DAYS in their local area. This new Program Guide handles that. Doesn’t matter if you are in Japan or Canada.. it works off what you have as your local timezone in your iPhone.&lt;/p&gt;
&lt;p&gt;Controlling this switch is a new settings screen from within the app, and a settings bundle in the iPhone’s settings app. The in-app settings screen however has another useful feature. It can rebuild the Program Guide if you for any reason find yourself in a new timezone! Just rebuild the Program Guide and you are good to go.&lt;/p&gt;
&lt;p&gt;Below is a gallery of screenshots&amp;#8230; as always, the gallery software cuts off the screenshots a bit in the thumbnails so be sure and click through to the larger version of each image.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://devgeeks.org/wp-content/uploads/2010/04/IMG_07257.png" rel="lightbox"&gt;&lt;img align="left" src="http://devgeeks.org/wp-content/uploads/2010/04/IMG_07257.png" width="200"/&gt;&lt;/a&gt; &lt;a href="http://devgeeks.org/wp-content/uploads/2010/04/IMG_0726.png" rel="lightbox"&gt;&lt;img align="left" src="http://devgeeks.org/wp-content/uploads/2010/04/IMG_0726.png" width="200"/&gt;&lt;/a&gt; &lt;a href="http://devgeeks.org/wp-content/uploads/2010/04/IMG_0727.png" rel="lightbox"&gt;&lt;img align="left" src="http://devgeeks.org/wp-content/uploads/2010/04/IMG_0727.png" width="200"/&gt;&lt;/a&gt; &lt;a href="http://devgeeks.org/wp-content/uploads/2010/04/IMG_0729.png" rel="lightbox"&gt;&lt;img align="left" src="http://devgeeks.org/wp-content/uploads/2010/04/IMG_0729.png" width="200"/&gt;&lt;/a&gt;&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17198408256</link><guid>http://blog.devgeeks.org/post/17198408256</guid><pubDate>Thu, 08 Apr 2010 11:09:00 +1000</pubDate><category>iPhone development</category><category>4zzz</category></item><item><title>4ZzZfm stream is down</title><description>&lt;p&gt;That’s right&amp;#8230; the 4ZzZfm stream is down. OK. So anyone who uses my 4ZzZfm app will not be able to connect to the station.&lt;/p&gt;
&lt;p&gt;It’s been like that for a few days now. It sucks, but it’s community radio and neither expertise or money flows freely… plus I believe the streaming server is a shared resource with another station.&lt;/p&gt;
&lt;p&gt;Hopefully it will be back up soon :(&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17198072659</link><guid>http://blog.devgeeks.org/post/17198072659</guid><pubDate>Sun, 28 Mar 2010 14:45:00 +1100</pubDate><category>iPhone development</category><category>4zzz</category></item><item><title>4ZzZfm iPhone app version 2.0 approaching beta</title><description>&lt;p&gt;I have been hard at work on the next update to my 4ZzZfm iPhone app and it is nearing the stage where I can release it to my beta testers.&lt;/p&gt;
&lt;p&gt;Added so far in this new version:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Program Guide navigable by day (which shows are playing at what time, and a little info about them).&lt;/li&gt;
&lt;li&gt;Settings allowing the program guide information to be displayed either in original Brisbane/Queensland time or translated to your current local timezone (a great deal of the downloaders of the first version were a long way from Brisbane).&lt;/li&gt;
&lt;li&gt;Display of the currently playing show in the stream playing view.&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Here are some screenshots to show what I mean (the gallery cuts the images off a bit… click them to see the full image):&lt;/p&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_lz0c28U8Ts1r76itr.png" width="200"/&gt;&lt;img src="http://media.tumblr.com/tumblr_lz0c2iTe3N1r76itr.png" width="200"/&gt;&lt;img src="http://media.tumblr.com/tumblr_lz0c2qgrQU1r76itr.png" width="200"/&gt;&lt;img src="http://media.tumblr.com/tumblr_lz0c31adoR1r76itr.png" width="200"/&gt;&lt;/p&gt;</description><link>http://blog.devgeeks.org/post/17197998868</link><guid>http://blog.devgeeks.org/post/17197998868</guid><pubDate>Fri, 19 Mar 2010 00:29:00 +1100</pubDate><category>iPhone development</category><category>4zzz</category></item></channel></rss>

