<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>How to make iPhone Apps and Influence People</title>
	<atom:link href="http://blog.jcmultimedia.com.au/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.jcmultimedia.com.au</link>
	<description>Musings on the iPhone development process</description>
	<lastBuildDate>Thu, 01 Jul 2010 14:16:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Delhi Metro is enjoying #1 in Navigation in India</title>
		<link>http://blog.jcmultimedia.com.au/2010/07/delhi-city-metro-on-the-app-store.html</link>
		<comments>http://blog.jcmultimedia.com.au/2010/07/delhi-city-metro-on-the-app-store.html#comments</comments>
		<pubDate>Thu, 01 Jul 2010 14:16:34 +0000</pubDate>
		<dc:creator>Jesse</dc:creator>
				<category><![CDATA[App Store]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[delhi]]></category>
		<category><![CDATA[Delhi-city-metro]]></category>
		<category><![CDATA[iphonedev]]></category>

		<guid isPermaLink="false">http://blog.jcmultimedia.com.au/?p=165</guid>
		<description><![CDATA[I'm very proud to announce that my fourth iPhone application and third city in the City Metro Apps Delhi City Metro has had a successful first week in the app store; it is now ranked as the #1 paid navigation app in the Indian App Store. Although the raw sales data show the Indian marketplace [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-167 alignleft" title="Delhi City Metro Logo" src="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/06/316x316_rounded-corners.png" alt="" width="133" height="133" /></p>
<p>I'm very proud to announce that my fourth iPhone application and third city in the City Metro Apps Delhi City Metro has had a successful first week in the app store; it is now ranked as the #1 paid navigation app in the Indian App Store. Although the raw sales data show the Indian marketplace is incredibly small compared to the US, Australia or even Korea the statistic alone is quite exciting!</p>
<p>It was hard work gathering accurate GPS coordinates, route length and timetables for the Delhi Metro - but the most complete version of the data available is included with the app and I have developed a high resolution custom map too.</p>
<p>The Delhi metro is moving at an incredible pace, so I expect to be updating it quite often.</p>
<p>There's a temporary webpage with some screenshots over at <a title="Delhi City Metro Temporary Website" href="http://delhi.citymetroapps.com">delhi.citymetroapps.com</a> and I'm updating the <a title="Delhi City Metro on Twitter" href="http://twitter.com/delhimetroapp">@delhimetroapp</a> twitter feed with minor bits and pieces.</p>
<p><a title="Delhi City Metro on the App Store" href="http://bit.ly/delhicitymetro">Delhi City Metro is available on the App Store </a>.</p>
<p style="text-align: center;"><a href="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/07/Screen-shot-2010-07-01-at-11.49.29-PM.png"><img class="size-large wp-image-179 aligncenter" title="Screen shot 2010-07-01 at 11.49.29 PM" src="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/07/Screen-shot-2010-07-01-at-11.49.29-PM-1024x305.png" alt="" width="717" height="214" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jcmultimedia.com.au/2010/07/delhi-city-metro-on-the-app-store.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding the &#8216;pull down to refresh&#8217; effect to UITableView</title>
		<link>http://blog.jcmultimedia.com.au/2010/07/pull-down-refresh.html</link>
		<comments>http://blog.jcmultimedia.com.au/2010/07/pull-down-refresh.html#comments</comments>
		<pubDate>Thu, 01 Jul 2010 12:59:25 +0000</pubDate>
		<dc:creator>Jesse</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iOS4]]></category>
		<category><![CDATA[UITableView]]></category>

		<guid isPermaLink="false">http://blog.jcmultimedia.com.au/?p=169</guid>
		<description><![CDATA[Today I was tooling around with some interface concepts and playing with apps like foursquare and Twitter (previously Tweetie) and I wondered if I could implement something similar to the now famous 'pull down to refresh' method of initialising a refresh of the content within a UITableView. As it turns out it wasn't as difficult as [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was tooling around with some interface concepts and playing with apps like <a href="http://foursquare.com">foursquare</a> and <a href="http://twitter.com">Twitter</a> (previously Tweetie) and I wondered if I could implement something similar to the now famous 'pull down to refresh' method of initialising a refresh of the content within a UITableView.</p>
<p>As it turns out it wasn't as difficult as I thought; There were already a couple of elegant solutions out and about. The first example I found was by <a href="http://www.drobnik.com/touch/2009/12/how-to-make-a-pull-to-reload-tableview-just-like-tweetie-2/">Oliver Dropnik</a>, which talked about altering an existing solution posted on git hub by user devindoty called <a href="http://github.com/enormego/EGOTableViewPullRefresh">EGOTablePullViewRefresh</a>.</p>
<p>Oliver's code looked like it was a good addition to devindoty's because he had decided to subclass UITableViewController which leads to a much more complete solution that's easier to move between projects. My only issue with Oliver's code was (apart from not supplying a some working source doe) that it refactored a lot of the underlying implementation, where I didn't see too much wrong with it.</p>
<p>I decided to come up with a half way measure; I moved the majority of the grunt work into a subclass of UITableViewController, cleaned up the XCode Demo project included with the source code and pushed it all back up to git hub. If you're at at all interested in this, I'd suggest checking out <a href="http://github.com/jessedc/EGOTableViewPullRefresh">my fork of the EGOTablePullViewRefresh project on Git Hub</a>.</p>
<div id="attachment_172" class="wp-caption aligncenter" style="width: 416px"><a href="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/07/Pull-to-refresh.png"><img class="size-full wp-image-172" title="Pull-to-refresh" src="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/07/Pull-to-refresh.png" alt="" width="406" height="301" /></a><p class="wp-caption-text">Get a pull-to-refresh effect like Tweetie 2 and foursuare</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.jcmultimedia.com.au/2010/07/pull-down-refresh.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New host, new iPhone, new iPad, New Delhi</title>
		<link>http://blog.jcmultimedia.com.au/2010/06/new-host-new-iphone-new-ipad-new-delhi.html</link>
		<comments>http://blog.jcmultimedia.com.au/2010/06/new-host-new-iphone-new-ipad-new-delhi.html#comments</comments>
		<pubDate>Tue, 08 Jun 2010 13:41:34 +0000</pubDate>
		<dc:creator>Jesse</dc:creator>
				<category><![CDATA[Other Stuff]]></category>
		<category><![CDATA[delhi]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.jcmultimedia.com.au/2010/06/new-host-new-iphone-new-ipad-new-delhi.html</guid>
		<description><![CDATA[So much to update! Watch this space, as soon as I sort out the server issues there will be pretty pictures and graphics from all the work I've been up to the last 8 weeks.]]></description>
			<content:encoded><![CDATA[<p>So much to update! Watch this space, as soon as I sort out the server issues there will be pretty pictures and graphics from all the work I've been up to the last 8 weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jcmultimedia.com.au/2010/06/new-host-new-iphone-new-ipad-new-delhi.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Favorite TED Videos</title>
		<link>http://blog.jcmultimedia.com.au/2010/03/my-favorite-ted-videos.html</link>
		<comments>http://blog.jcmultimedia.com.au/2010/03/my-favorite-ted-videos.html#comments</comments>
		<pubDate>Fri, 19 Mar 2010 23:32:09 +0000</pubDate>
		<dc:creator>Jesse</dc:creator>
				<category><![CDATA[Other Stuff]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[TED]]></category>

		<guid isPermaLink="false">http://blog.jcmultimedia.com.au/?p=147</guid>
		<description><![CDATA[Prior to November 2008 I'd never heard of TED, TED.com or anything like it. It was only while reading Chang-Won Kim's Web 2.0 Asia Weblog and noticing a technology event called TEDxSeoul (that Chang was talking at) that I worked it all out. If you don't know, or haven't heard about TED then read the Wikipedia entry on [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 285px"><a href="http://www.ted.com"><img title="TED.com Logo from Wikipedia" src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/TED_wordmark.svg/275px-TED_wordmark.svg.png" alt="TED" width="275" height="53" /></a><p class="wp-caption-text">TED is awesome</p></div>
<p>Prior to November 2008 I'd never heard of TED, TED.com or anything like it. It was only while reading Chang-Won Kim's <a title="Web 2.0 Asia by Chang W. Kim" href="http://www.web20asia.com/">Web 2.0 Asia Weblog</a> and noticing a technology event called <a title="TedxSeoul" href="http://www.tedxseoul.com/xe/">TEDxSeoul</a> (that Chang was talking at) that I worked it all out. If you don't know, or haven't heard about TED then <a title="TED on Wikipedia" href="http://en.wikipedia.org/wiki/TED_(conference)">read the Wikipedia entry on it.</a></p>
<p>Any spare time I've had since leaving TEDxSeoul in November I've been watching TED talks. I'm also keen to get to the next  <a title="TEDx Melbourne website" href="http://www.tedxmelbourne.com/">TEDxMelbourne </a> (I watched the one recently  live online), and I'm dead keen hearing about what goes on at on <a title="Tedx Sydney website" href="http://tedxsydney.com/">TEDxSydney</a>.</p>
<p>As well as watching TED videos, I've also been telling everyone I know about them and sending them links on facebook. In the future I will direct them to this post.</p>
<p>Here's a list of my favorite TED videos in no real order, I've never watched a bad one...</p>
<ul>
<li><a title="JK Rowling at Harverd University 2008" href="http://www.ted.com/talks/jk_rowling_the_fringe_benefits_of_failure.html">JK Rowling: The fringe benefits of failure  Harvard University June 2008</a></li>
<li><a title="Steve Jobs at Stanford University in 2005" href="http://www.ted.com/talks/lang/eng/steve_jobs_how_to_live_before_you_die.html">Steve Jobs: How to live before you die Stanford University June 2005</a></li>
<li><a title="David Blaine at TEDMED 2009" href="http://www.ted.com/talks/lang/eng/david_blaine_how_i_held_my_breath_for_17_min.html">David Blaine: How I held my breath for 17 minutes TEDMED2009</a></li>
<li><a title="Bill Gates at TED 2009" href="http://www.ted.com/talks/lang/eng/bill_gates_unplugged.html">Bill Gates on mosquitos, malaria and education. TED 2009</a></li>
<li><a title="Bill Gates at TED 2010" href="http://www.ted.com/talks/lang/eng/bill_gates.html">Bill Gates on energy: Innovating to zero! TED 2010</a></li>
<li><a title="Brian Cox at TED 2008" href="http://www.ted.com/talks/lang/eng/brian_cox_on_cern_s_supercollider.html">Brian Cox on CERN's supercollider. TED 2008</a></li>
<li><a title="Brian Greene at TED 2005" href="http://www.ted.com/talks/brian_greene_on_string_theory.html">Brian Greene on string theory. TED 2005</a></li>
<li><a title="Jamie Oliver at TED 2010" href="http://www.ted.com/talks/lang/eng/jamie_oliver.html">Jamie Oliver's TED Prize wish: Teach every child about food. TED 2010</a></li>
<li><a title="Temple Grandin at TED 2010" href="http://www.ted.com/talks/temple_grandin_the_world_needs_all_kinds_of_minds.html">Temple Grandin: The world needs all kinds of minds. TED 2010</a></li>
<li><a title="Devdutt Pattanaik TEDIndia 2009" href="http://www.ted.com/talks/devdutt_pattanaik.html">Devdutt Pattanaik: East vs West - the myths that mystify. TEDIndia 2009</a></li>
<li><a title="Chang W Kim at TedxSeoul" href="http://tedxseoul.com/xe/5491">Chang W Kim Korea Internet Galapagos TedxSeoul 2009</a></li>
<li><a title="Richard Dawkins at TED2002" href="http://www.ted.com/talks/lang/eng/richard_dawkins_on_militant_atheism.html">Richard Dawkins on militant atheism TED2002</a></li>
<li><a title="Richard Dawkins at TEDGlobal 2005" href="http://www.ted.com/talks/lang/eng/richard_dawkins_on_our_queer_universe.html">Richard Dawkins on our "queer" universe TEDGlobal 2005</a></li>
</ul>
<div id="attachment_148" class="wp-caption alignleft" style="width: 142px"><img class="size-full wp-image-148" title="hans_rosling_reveals_new_insights_on_poverty" src="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/03/hans_rosling_reveals_new_insights_on_poverty.jpeg" alt="" width="132" height="99" /><p class="wp-caption-text">Hans Rosling</p></div>
<p>Hans Rosling is fascinating with his statistics, and desire to get the world's publicly funded data accessable and searchable for everyone.</p>
<ul>
<li><a title="Hans Rosling at TED 2006" href="http://www.ted.com/talks/hans_rosling_shows_the_best_stats_you_ve_ever_seen.html">Hans Rosling shows the best stats you've ever seen TED2006</a></li>
<li><a title="Hans Rosling at TED 2007" href="http://www.ted.com/talks/hans_rosling_reveals_new_insights_on_poverty.html">Hans Rosling's new insights on poverty. TED 2007</a></li>
<li><a title="Hans Rosling at TEDIndia 2009" href="http://www.ted.com/talks/hans_rosling_asia_s_rise_how_and_when.html">Hans Rosling: Asia's rise - how and when. TedIndia 2009</a></li>
<li><a title="Hans Rosling at TED2009" href="http://www.ted.com/talks/hans_rosling_the_truth_about_hiv.html">Hans Rosling on HIV: New facts and stunning data visuals</a></li>
</ul>
<p>More on Hans Rosling and his gapminder data and software at <a title="Gapminder website" href="http://www.gapminder.org/">gapminder.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jcmultimedia.com.au/2010/03/my-favorite-ted-videos.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>App Sale!</title>
		<link>http://blog.jcmultimedia.com.au/2010/03/app-sale.html</link>
		<comments>http://blog.jcmultimedia.com.au/2010/03/app-sale.html#comments</comments>
		<pubDate>Fri, 19 Mar 2010 00:26:07 +0000</pubDate>
		<dc:creator>Jesse</dc:creator>
				<category><![CDATA[App Store]]></category>
		<category><![CDATA[Other Stuff]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[busan-city-metro]]></category>
		<category><![CDATA[sale]]></category>
		<category><![CDATA[seoul-city-metro]]></category>

		<guid isPermaLink="false">http://blog.jcmultimedia.com.au/?p=141</guid>
		<description><![CDATA[Now that everything is up to date and Seoul City Metro has been up on the App Store for a few months I think it's time for a sale! I've orchestrated some facebook advertising, updated the Seoul City Metro Website and given the App Store time to propagate both the 1.1.2 update and the new [...]]]></description>
			<content:encoded><![CDATA[<p>Now that everything is up to date and Seoul City Metro has been up on the App Store for a few months I think it's time for a sale! I've orchestrated some facebook advertising, updated the <a title="Seoul City Metro Website" href="http://seoulcitymetro.com">Seoul City Metro Website</a> and given the App Store time to propagate both the 1.1.2 update and the new price.</p>
<div class="wp-caption aligncenter" style="width: 410px"><a href="http://www.seoulcitymetro.com/"><img title="City Metro apps are having a sale!" src="http://seoulcitymetro.com/images/app-sale-2010.png" alt="City Metro apps are on sale for this weekend!" width="400" height="278" /></a><p class="wp-caption-text">Seoul City Metro and Busan City Metro are now on sale until March 22nd!</p></div>
<p>I've decided to finally attack the $1 price point, as well as give away a premium app for free. I'm hoping this sale can raise the rankings of Seoul City Metro on the Korean App Store over and above the competition apps by being the best looking app at $1. I'm also hoping some good reviews and happy users will lead to some increased exposure and eventually sales for Seoul City Metro. I'll post results of the sale (good or bad!) next week when all the numbers are in.</p>
<p>Checkout the Seoul <a title="Seoul City Metro website" href="http://www.seoulcitymetro.com">City Metro website front page</a> for more info!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jcmultimedia.com.au/2010/03/app-sale.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seoul City Metro, and Seoul City Metro Lite are up to date again!</title>
		<link>http://blog.jcmultimedia.com.au/2010/03/seoul-city-metro-and-seoul-city-metro-lite-are-up-to-date-again.html</link>
		<comments>http://blog.jcmultimedia.com.au/2010/03/seoul-city-metro-and-seoul-city-metro-lite-are-up-to-date-again.html#comments</comments>
		<pubDate>Thu, 18 Mar 2010 00:12:02 +0000</pubDate>
		<dc:creator>Jesse</dc:creator>
				<category><![CDATA[App Store]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[seoul-city-metro]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://blog.jcmultimedia.com.au/?p=134</guid>
		<description><![CDATA[It had been grating on me over the last couple of weeks knowing that Seoul City Metro and Seoul City Metro Lite were not up to date with the new train stations opened on Line 1 (Dangjeong Station and Seodongtan Station) and Line 3 ( Garak Market, National Police Hospital and Ogeum). I held off an [...]]]></description>
			<content:encoded><![CDATA[<p>It had been grating on me over the last couple of weeks knowing that Seoul City Metro and Seoul City Metro Lite were not up to date with the new train stations opened on Line 1 (<a title="Dangjeong Station on English Wikipedia" href="http://en.wikipedia.org/wiki/Dangjeong_Station">Dangjeong Station</a> and <a title="Seodongtan Station on English Wikipedia" href="http://en.wikipedia.org/wiki/Seodongtan_Station">Seodongtan Station</a>) and Line 3 ( <a title="Garak Market on English Wikipedia" href="http://en.wikipedia.org/wiki/Garak_Market_Station">Garak Market</a>, <a title="National Police Hospital on English Wikipedia" href="http://en.wikipedia.org/wiki/National_Police_Hospital_Station">National Police Hospital</a> and <a title="Oegum Station on English Wikipedia" href="http://en.wikipedia.org/wiki/Ogeum_Station">Ogeum</a>). I held off an immediate update when the stations opened because I wanted to wait for the SMRT.co.kr maps to be updated properly and I wanted to include a few tweaks to the route detail interface.</p>
<div id="attachment_135" class="wp-caption alignleft" style="width: 160px"><a href="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/03/NewStationsMarch2010.png"><img class="size-thumbnail wp-image-135 " title="New Train Stations added to the Metro Map, March 2010" src="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/03/NewStationsMarch2010-150x150.png" alt="New Train Stations added to the Metro Map, March 2010" width="150" height="150" /></a><p class="wp-caption-text">New stations on line 3</p></div>
<p>As weeks moved on I was feeling increasingly  like my apps were out of date, and the SMRT maps still hadn't been updated to reflect the new stations. So yesterday I just had had enough and pushed new stations, updated timetables and a manually modified map to both Seoul City Metro, and Seoul City Metro Lite. I was reluctant to manually update the maps because I don't have them in vector format but I was quite happy with the end result. Both updates were approved for sale in <em>under 11 hours</em> - and are available for download das you read this. (<a title="Seoul City Metro on iTunes" href="http://bit.ly/7c6Cyg">iTunes link</a>)</p>
<p>I also managed to include one minor tweak to the route interface, allowing easier access to the timetables for a particular route. Although the timetables are far from where I want them, this is a step in the right direction. Also, the door side is now shown for the destination station the same as it is with transfers. (See screen shot below)</p>
<div id="attachment_137" class="wp-caption aligncenter" style="width: 330px"><a href="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/03/Screen-shot-2010-03-18-at-10.59.18-AM.png"><img class="size-full wp-image-137" title="New Route Detail Interface element" src="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/03/Screen-shot-2010-03-18-at-10.59.18-AM.png" alt="New Route Detail Interface element, click to see the applicable timetable" width="320" height="265" /></a><p class="wp-caption-text">You can click the blue disclosure button on route start and transfers to see the next trains departing.</p></div>
<p><strong>In other news: </strong></p>
<p><strong> </strong></p>
<div id="attachment_136" class="wp-caption alignleft" style="width: 160px"><a href="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/03/CustomSCMMap_lowq.png"><img class="size-thumbnail wp-image-136" title="Custom Seoul City Metro Map to scale low quality" src="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/03/CustomSCMMap_lowq-150x150.png" alt="Custom Seoul City Metro map in early stages" width="150" height="150" /></a><p class="wp-caption-text">Custom Map to scale in early stages</p></div>
<p>I've been building my own custom subway map for Seoul that will appear in upcoming versions of Seoul City Metro that will release me from the constraints of the SMRT map. It's well on it's way, you can see images of it's progress via <a title="Seoul City Metro Twitter account showing progress of the new map for the iPhone app" href="http://twitter.com/seoulmetroapp/status/9376327297">@seoulmetroapp</a> and here.</p>
<p>Busan City Metro is on sale this week too, I've reduced it to $0 as more of a test of the waters. (<a title="Busan City Metro on iTunes" href="http://bit.ly/aotavc">iTunes Link</a>)</p>
<p>Oh, and I'm back in Melbourne for the time being.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jcmultimedia.com.au/2010/03/seoul-city-metro-and-seoul-city-metro-lite-are-up-to-date-again.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple doubles maximum App size download over 3G or EDGE to 20MB</title>
		<link>http://blog.jcmultimedia.com.au/2010/02/apple-doubles-maximum-app-size-download-over-3g-or-edge-to-20mb.html</link>
		<comments>http://blog.jcmultimedia.com.au/2010/02/apple-doubles-maximum-app-size-download-over-3g-or-edge-to-20mb.html#comments</comments>
		<pubDate>Fri, 19 Feb 2010 00:05:30 +0000</pubDate>
		<dc:creator>Jesse</dc:creator>
				<category><![CDATA[App Store]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[restrictions]]></category>

		<guid isPermaLink="false">http://blog.jcmultimedia.com.au/?p=130</guid>
		<description><![CDATA[Apple has increased the limit for downloads over 3G or EDGE from the App Store and iTunes Store on the iPhone. Previously the limit was 10MB and anything additional needed to be downloaded via Wi-Fi. From iLounge: This limit now appears to have been increased to 20MB in both the App Store and iTunes Store on [...]]]></description>
			<content:encoded><![CDATA[<p>Apple has increased the limit for downloads over 3G or EDGE from the App Store and iTunes Store on the iPhone. Previously the limit was 10MB and anything additional needed to be downloaded via Wi-Fi.</p>
<p>From <a title="iLounge - Apple bumps iPhone cellular download cap to 20MB" href="http://www.ilounge.com/index.php/news/comments/apple-bumps-iphone-cellular-download-cap-to-20mb/">iLounge</a>:</p>
<blockquote><p>This limit now appears to have been increased to 20MB in both the App Store and iTunes Store on the device, allowing users to download larger applications and video content.</p></blockquote>
<p>The reason why might be timed to get users used to downloading bigger apps before before the iPad arrives, or it could be a quiet response to an increasing demand for apps on the run over 10MB.</p>
<p>Whatever the reason it's good to see some relaxing on an arbitrary restriction. Seoul City Metro weighs in at 9.6 MB so I approve of this relaxing in restrictions.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jcmultimedia.com.au/2010/02/apple-doubles-maximum-app-size-download-over-3g-or-edge-to-20mb.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Approved in less than 48 hours!</title>
		<link>http://blog.jcmultimedia.com.au/2010/02/approved-in-less-than-48-hours.html</link>
		<comments>http://blog.jcmultimedia.com.au/2010/02/approved-in-less-than-48-hours.html#comments</comments>
		<pubDate>Wed, 17 Feb 2010 00:40:35 +0000</pubDate>
		<dc:creator>Jesse</dc:creator>
				<category><![CDATA[Other Stuff]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iphonedev]]></category>

		<guid isPermaLink="false">http://blog.jcmultimedia.com.au/2010/02/approved-in-less-than-48-hours.html</guid>
		<description><![CDATA[I just got emailed this morning that my quick point release for Seoul City Metro has been approved. That was less than 48 hours from submission. Call me impressed! It's a total change of pace when a new binary can be pushed to customers that quickly. My "What's new in this update" stated that it [...]]]></description>
			<content:encoded><![CDATA[<p>I just got emailed this morning that my quick point release for Seoul City Metro has been approved. That was less than 48 hours from submission.  Call me impressed!</p>
<p>It's a total change of pace when a new binary can be pushed to customers that quickly. My "What's new in this update" stated that it was just two small bug fixes, I wonder if that had any influence on the review team that saw the initial 1.1 release only 5 days ago.</p>
<p>Anyway, a win! Seoul City Metro Lite is also now in review.</p>
<p><a href="http://twitter.com/seoulmetroapp/status/9210131129">SeoulMetroApp announces it on twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jcmultimedia.com.au/2010/02/approved-in-less-than-48-hours.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seoul City Metro V 1.1 is live, V1.1.1 in review and SCM Lite is coming soon!</title>
		<link>http://blog.jcmultimedia.com.au/2010/02/seoul-city-metro-1-1-released.html</link>
		<comments>http://blog.jcmultimedia.com.au/2010/02/seoul-city-metro-1-1-released.html#comments</comments>
		<pubDate>Mon, 15 Feb 2010 15:02:24 +0000</pubDate>
		<dc:creator>Jesse</dc:creator>
				<category><![CDATA[App Store]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[New Versions]]></category>
		<category><![CDATA[seoul-city-metro]]></category>

		<guid isPermaLink="false">http://blog.jcmultimedia.com.au/?p=122</guid>
		<description><![CDATA[It's been a long slog, I have to say. It took a solid six weeks of development and many hours of dead ends and frustration but I finally managed to pull together a complete, stable release that made it through the approval process. There's still lots to do, and since Saturday morning I have already [...]]]></description>
			<content:encoded><![CDATA[<p>It's been a long slog, I have to say. It took a solid six weeks of development and many hours of dead ends and frustration but I finally managed to pull together a complete, stable release that made it through the approval process.</p>
<p>There's still lots to do, and since Saturday morning I have already sent for approval Seoul City Metro Lite, and Seoul City Metro V1.1.1 wich contains a few small bug fixes.</p>
<p>Busan City Metro is also in the works, I expect that to be running on the Seoul City Metro V1.1.1 code in the coming days and up for sale soon.</p>
<p>There's lots more to write on the extended development period of SCM 1.1, but for now I'll let everyone get the update and I'll take a deep breath!</p>
<div id="attachment_123" class="wp-caption aligncenter" style="width: 589px"><a href="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/02/Screen-shot-2010-02-15-at-7.29.34-PM.png"><img class="size-full wp-image-123" title="Seoul City Metro 1.1 Approved" src="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/02/Screen-shot-2010-02-15-at-7.29.34-PM.png" alt="Seoul City Metro 1.1 has been approved, lots of things still in the works" width="579" height="212" /></a><p class="wp-caption-text">Current iTunes Connect status</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.jcmultimedia.com.au/2010/02/seoul-city-metro-1-1-released.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple unveils iPad</title>
		<link>http://blog.jcmultimedia.com.au/2010/01/apple-unveils-ipad.html</link>
		<comments>http://blog.jcmultimedia.com.au/2010/01/apple-unveils-ipad.html#comments</comments>
		<pubDate>Thu, 28 Jan 2010 05:43:29 +0000</pubDate>
		<dc:creator>Jesse</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://blog.jcmultimedia.com.au/2010/01/apple-unveils-ipad/</guid>
		<description><![CDATA[What a night! Dragging myself up out of bed at 2:45 am (Seoul time) to check in to the MacTalk Australia live coverage; idle in ustream the IRC chat room; and refresh the live Gdgt.com text feed was totally worth it! Not only were the rumours true; but the price is reasonable and the versions [...]]]></description>
			<content:encoded><![CDATA[<p>What a night! Dragging myself up out of bed at 2:45 am (Seoul time) to check in to the <a title="MacTalk Australia" href="http://mactalk.com.au">MacTalk Australia</a> live coverage; idle in ustream the IRC chat room; and refresh the live <a title="Gdgt.com" href="http://gdgt.com">Gdgt.com</a> text feed was totally worth it! Not only were the rumours true; but the price is reasonable and the versions arriving with 3G connectivity (using the strange <a title="English Wikipedia article on Micro-Sim Card" href="http://en.wikipedia.org/wiki/Micro-SIM">Micro-Sim card</a> ) will come unlocked. iPad runs on a new version of the iPhone OS; on custom Apple silicone; and touts an all glass 9.7 inch multi touch display. 60 and 90 day arrival times for the Wifi and 3G versions respectively.</p>
<p>My opinion: <em>I want one</em>.</p>
<div class="wp-caption aligncenter" style="width: 538px"><a href="http://www.wired.com/gadgetlab/2010/01/hands-on-with-the-apple-ipad/"><img class=" " title="Apple iPad hands on from Wired.com Gadget Lab" src="http://www.wired.com/images_blogs/gadgetlab/2010/01/ipad_handson_3a.jpg" alt="Apple iPad hands on from Wired.com Gadget Lab" width="528" height="352" /></a><p class="wp-caption-text">Apple iPad hands on from Wired.com Gadget Lab</p></div>
<p>Demonstations of the device appearing all over the web show the iPad with a multi column layout, orientating to however you hold the device. I can't wait to see what developers make of the new UI elements and SDK APIs.</p>
<p>As far as my development goes - all my current work on <a title="Seoul City Metro Website" href="http://seoulcitymetro.com">Seoul City Metro</a> 1.1 appears to be compatible and runs just fine in the iPad's simulator in it's 1x and 2x zoom mode. Anyway, just a few screenshots that I've already <a href="http://twitter.com/seoulmetroapp/status/8308808151">posted on twitter</a> - time to get back to work.</p>
<div id="attachment_118" class="wp-caption alignleft" style="width: 241px"><a href="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/01/Screen-shot-2010-01-28-at-1.06.18-PM.png"><img class="size-medium wp-image-118 " title="iPad Simulator with Seoul City Metro 1.1 Installed" src="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/01/Screen-shot-2010-01-28-at-1.06.18-PM-231x300.png" alt="iPad Simulator with Seoul City Metro 1.1 Installed" width="231" height="300" /></a><p class="wp-caption-text">iPad Simulator with Seoul City Metro 1.1 Installed</p></div>
<div id="attachment_119" class="wp-caption alignleft" style="width: 246px"><a href="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/01/Screen-shot-2010-01-28-at-1.03.29-PM.png"><img class="size-medium wp-image-119" title="Seoul City Metro V1.1 running in the iPad Simulator at iPhone size" src="http://blog.jcmultimedia.com.au/wp-content/uploads/2010/01/Screen-shot-2010-01-28-at-1.03.29-PM-236x300.png" alt="Seoul City Metro V1.1 running in the iPad Simulator" width="236" height="300" /></a><p class="wp-caption-text">Seoul City Metro V1.1 running in the iPad Simulator</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.jcmultimedia.com.au/2010/01/apple-unveils-ipad.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
