<?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>bemoko&#039;s blog on mobile &#187; iphone</title>
	<atom:link href="http://blog.bemoko.com/tag/iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bemoko.com</link>
	<description>mobile made simple</description>
	<lastBuildDate>Wed, 25 Jan 2012 13:32:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Cool &#8230; iPhone handles the HTML5 onstorage event handler</title>
		<link>http://blog.bemoko.com/2009/09/16/cool-iphone-handles-the-html5-onstorage-event-handler/</link>
		<comments>http://blog.bemoko.com/2009/09/16/cool-iphone-handles-the-html5-onstorage-event-handler/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 17:08:05 +0000</pubDate>
		<dc:creator>Ian Homer</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[mobile web]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[localStorage]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[onstorage]]></category>

		<guid isPermaLink="false">http://blog.bemoko.com/?p=651</guid>
		<description><![CDATA[&#8230; or in other words we can readily synchronise local browser storage with back-send server persistent storage. This is one of the fundamentals of compelling off line web applications. So a little background. You may know that you can store data in your local browser database with javascript like &#8230; 1 2 3 4 5 [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230; or in other words we can readily synchronise local browser storage with back-send server persistent storage.  This is one of the fundamentals of compelling off line web applications.</p>
<p>So a little background.  You may know that you can store data in your local browser database with javascript like &#8230;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> store<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>window.<span style="color: #660066;">localStorage</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> count<span style="color: #339933;">=</span>window.<span style="color: #660066;">localStorage</span>.<span style="color: #660066;">getItem</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;count&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>count<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      count<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    count<span style="color: #339933;">++</span>
    window.<span style="color: #660066;">localStorage</span>.<span style="color: #660066;">setItem</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;count&quot;</span><span style="color: #339933;">,</span>count<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
window.<span style="color: #000066;">onload</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  store<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>and you can even see it in action <a href="http://localhost:8080/live/test/i/suite/javascript-offline/test/store">here</a>, if you got a decent browser such as the latest iPhone 3, Firefox 3.5, Safari 4.</p>
<p>But this ain&#8217;t much good if you can&#8217;t get this data back to the server to do something useful with it, e.g. share with friends, share with your other devices, keep a backup, send a message &#8230; I could go on.</p>
<p>So what we really need is a way to easily listen out to storage events and deal with it in one place.  Yep, we could create our own Javascript framework to do this and handle getters and setters, but that sounds nasty to me.</p>
<p>Instead we can know use the <a href="http://dev.w3.org/html5/spec/Overview.html#handler-window-onstorage">onstorage</a> attribute on the HTML body tag to hook into a function that will handle all of these call backs based on local stored data.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> store<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>window.<span style="color: #660066;">localStorage</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> count<span style="color: #339933;">=</span>window.<span style="color: #660066;">localStorage</span>.<span style="color: #660066;">getItem</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;count&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>count<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      count<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    count<span style="color: #339933;">++</span>
    window.<span style="color: #660066;">localStorage</span>.<span style="color: #660066;">setItem</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;count&quot;</span><span style="color: #339933;">,</span>count<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #003366; font-weight: bold;">function</span> handleOnStorage<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  myFunctionToSendDataToServer<span style="color: #009900;">&#40;</span>event.<span style="color: #660066;">key</span><span style="color: #339933;">,</span>
    event.<span style="color: #660066;">newValue</span><span style="color: #339933;">,</span> event.<span style="color: #660066;">oldValue</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
window.<span style="color: #000066;">onload</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  document.<span style="color: #660066;">body</span>.<span style="color: #660066;">setAttribute</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;onstorage&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;handleOnStorage();&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  store<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Take a look at it in action <a href="http://test.bemoko.com/test/i/suite/javascript-offline/test/onstorage">here</a> in the bemoko mobile test suite.   It works on iPhone 3 and Safari 4.  You can even see the complete code <a href="http://test.bemoko.com/test/i/suite/javascript-offline/test/onstorage/source/true">here</a>.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.bemoko.com%2F2009%2F09%2F16%2Fcool-iphone-handles-the-html5-onstorage-event-handler%2F&amp;title=Cool%20...%20iPhone%20handles%20the%20HTML5%20onstorage%20event%20handler&amp;bodytext=...%20or%20in%20other%20words%20we%20can%20readily%20synchronise%20local%20browser%20storage%20with%20back-send%20server%20persistent%20storage.%20%20This%20is%20one%20of%20the%20fundamentals%20of%20compelling%20off%20line%20web%20applications.%0D%0A%0D%0ASo%20a%20little%20background.%20%20You%20may%20know%20that%20you%20can%20store%20dat" title="Digg"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.bemoko.com%2F2009%2F09%2F16%2Fcool-iphone-handles-the-html5-onstorage-event-handler%2F" title="Sphinn"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.bemoko.com%2F2009%2F09%2F16%2Fcool-iphone-handles-the-html5-onstorage-event-handler%2F&amp;title=Cool%20...%20iPhone%20handles%20the%20HTML5%20onstorage%20event%20handler&amp;notes=...%20or%20in%20other%20words%20we%20can%20readily%20synchronise%20local%20browser%20storage%20with%20back-send%20server%20persistent%20storage.%20%20This%20is%20one%20of%20the%20fundamentals%20of%20compelling%20off%20line%20web%20applications.%0D%0A%0D%0ASo%20a%20little%20background.%20%20You%20may%20know%20that%20you%20can%20store%20dat" title="del.icio.us"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.bemoko.com%2F2009%2F09%2F16%2Fcool-iphone-handles-the-html5-onstorage-event-handler%2F&amp;t=Cool%20...%20iPhone%20handles%20the%20HTML5%20onstorage%20event%20handler" title="Facebook"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fblog.bemoko.com%2F2009%2F09%2F16%2Fcool-iphone-handles-the-html5-onstorage-event-handler%2F&amp;title=Cool%20...%20iPhone%20handles%20the%20HTML5%20onstorage%20event%20handler" title="Mixx"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.bemoko.com%2F2009%2F09%2F16%2Fcool-iphone-handles-the-html5-onstorage-event-handler%2F&amp;title=Cool%20...%20iPhone%20handles%20the%20HTML5%20onstorage%20event%20handler&amp;annotation=...%20or%20in%20other%20words%20we%20can%20readily%20synchronise%20local%20browser%20storage%20with%20back-send%20server%20persistent%20storage.%20%20This%20is%20one%20of%20the%20fundamentals%20of%20compelling%20off%20line%20web%20applications.%0D%0A%0D%0ASo%20a%20little%20background.%20%20You%20may%20know%20that%20you%20can%20store%20dat" title="Google Bookmarks"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.bemoko.com/2009/09/16/cool-iphone-handles-the-html5-onstorage-event-handler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 3.0 geolocation javascript API</title>
		<link>http://blog.bemoko.com/2009/06/17/iphone-30-geolocation-javascript-api/</link>
		<comments>http://blog.bemoko.com/2009/06/17/iphone-30-geolocation-javascript-api/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 21:04:42 +0000</pubDate>
		<dc:creator>Ian Walsh</dc:creator>
				<category><![CDATA[mobile web]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone 3.0]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[LBS]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://blog.bemoko.com/?p=415</guid>
		<description><![CDATA[With the iPhone 3.0 firmware released today, I thought I&#8217;d show you how to access one of the features I&#8217;ve been most looking forward to &#8211; support for the geolocation API in Safari means I can now create location aware websites. This will be just a quick demo to retrieve and display the current longitue [...]]]></description>
			<content:encoded><![CDATA[<p>With the iPhone 3.0 firmware released <a title="today" href="http://www.apple.com/uk/iphone/softwareupdate/">today</a>, I thought I&#8217;d show you how to access one of the features I&#8217;ve been most looking forward to &#8211; support for the <a title="geolocation" href="http://dev.w3.org/geo/api/spec-source.html">geolocation API</a> in Safari means I can now create location aware websites.</p>
<p>This will be just a quick demo to retrieve and display the current longitue and latitude of your phone, along with a googlemap so we can see if the results are right.  The more interesting applications will come&#8230;.</p>
<p>To do this we&#8217;ll use javascript and the newly added <a title="Navigator.Geolocation" href="http://dev.w3.org/geo/api/spec-source.html#geolocation">Navigator.Geolocation</a> interface to call the <a title="getCurrentPosition" href="http://dev.w3.org/geo/api/spec-source.html#get-current-position">getCurrentPosition</a>() function to retrieve the current longitude and latitude of the phone, which we&#8217;ll display and pass to the googlemaps API.</p>
<p>The code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;?</span>xml version<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;1.0&quot;</span> encoding<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;UTF-8&quot;</span><span style="color: #339933;">?&gt;</span>
<span style="color: #339933;">&lt;!</span>DOCTYPE html <span style="color: #003366; font-weight: bold;">PUBLIC</span> <span style="color: #3366CC;">&quot;-//WAPFORUM//DTD XHTML Mobile 1.0//EN&quot;</span> <span style="color: #3366CC;">&quot;http://www.wapforum.org/DTD/xhtml-mobile10.dtd&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>html xmlns<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://www.w3.org/1999/xhtml&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>head<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>title<span style="color: #339933;">&gt;</span>iPhone <span style="color: #CC0000;">3.0</span> geolocation demo<span style="color: #339933;">&lt;/</span>title<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>meta content<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;&quot;</span> <span style="color: #000066;">name</span><span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;viewport&quot;</span><span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #003366; font-weight: bold;">function</span> handler<span style="color: #009900;">&#40;</span>location<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #003366; font-weight: bold;">var</span> message <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;message&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
message.<span style="color: #660066;">innerHTML</span> <span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;&lt;img src='http://maps.google.com/staticmap?center=&quot;</span> <span style="color: #339933;">+</span> location.<span style="color: #660066;">coords</span>.<span style="color: #660066;">latitude</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;,&quot;</span> <span style="color: #339933;">+</span> location.<span style="color: #660066;">coords</span>.<span style="color: #660066;">longitude</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;&amp;size=300x200&amp;maptype=hybrid&amp;zoom=16&amp;key=YOURGOOGLEAPIKEY' /&gt;&quot;</span><span style="color: #339933;">;</span>
message.<span style="color: #660066;">innerHTML</span><span style="color: #339933;">+=</span><span style="color: #3366CC;">&quot;&lt;p&gt;Longitude: &quot;</span> <span style="color: #339933;">+</span> location.<span style="color: #660066;">coords</span>.<span style="color: #660066;">longitude</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;&lt;/p&gt;&quot;</span><span style="color: #339933;">;</span>
message.<span style="color: #660066;">innerHTML</span><span style="color: #339933;">+=</span><span style="color: #3366CC;">&quot;&lt;p&gt;Latitude: &quot;</span> <span style="color: #339933;">+</span> location.<span style="color: #660066;">coords</span>.<span style="color: #660066;">latitude</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;&lt;/p&gt;&quot;</span><span style="color: #339933;">;</span>
message.<span style="color: #660066;">innerHTML</span><span style="color: #339933;">+=</span><span style="color: #3366CC;">&quot;&lt;p&gt;Accuracy: &quot;</span> <span style="color: #339933;">+</span> location.<span style="color: #660066;">coords</span>.<span style="color: #660066;">accuracy</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;&lt;/p&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
navigator.<span style="color: #660066;">geolocation</span>.<span style="color: #660066;">getCurrentPosition</span><span style="color: #009900;">&#40;</span>handler<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>head<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;message&quot;</span><span style="color: #339933;">&gt;</span>Location unknown<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>html<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>The results:</p>

<a href='http://blog.bemoko.com/2009/06/17/iphone-30-geolocation-javascript-api/iphone-geo-2211/' title='iPhone OS 2.2.1'><img width="150" height="150" src="http://blog.bemoko.com/wp-content/uploads/2009/06/iphone-geo-2211-150x150.jpg" class="attachment-thumbnail" alt="iPhone OS 2.2.1" title="iPhone OS 2.2.1" /></a>
<a href='http://blog.bemoko.com/2009/06/17/iphone-30-geolocation-javascript-api/iphone-geo-300-1/' title='iPhone 3.0'><img width="150" height="150" src="http://blog.bemoko.com/wp-content/uploads/2009/06/iphone-geo-300-1-150x150.jpg" class="attachment-thumbnail" alt="iPhone 3.0" title="iPhone 3.0" /></a>
<a href='http://blog.bemoko.com/2009/06/17/iphone-30-geolocation-javascript-api/iphone-geo-300-2/' title='iPhone 3.0 - I am here!'><img width="150" height="150" src="http://blog.bemoko.com/wp-content/uploads/2009/06/iphone-geo-300-2-150x150.jpg" class="attachment-thumbnail" alt="iPhone 3.0 - I am here!" title="iPhone 3.0 - I am here!" /></a>

<p>Try it for yourself by pointing your Safari browser at <a href="http://bemoko.com/blog/iphonegeo">http://bemoko.com/blog/iphonegeo</a>.</p>
<p>Update 27/7/2009: I noticed the zoom level on the google static map <a href="http://code.google.com/apis/maps/documentation/staticmaps/">API</a> wasn&#8217;t being set so the map was zoomed all the way out. I&#8217;ve added a default zoom for the demo code above. Not sure if thats a new requirement from Google&#8217;s side?</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.bemoko.com%2F2009%2F06%2F17%2Fiphone-30-geolocation-javascript-api%2F&amp;title=iPhone%203.0%20geolocation%20javascript%20API&amp;bodytext=With%20the%20iPhone%203.0%20firmware%20released%20today%2C%20I%20thought%20I%27d%20show%20you%20how%20to%20access%20one%20of%20the%20features%20I%27ve%20been%20most%20looking%20forward%20to%20-%20support%20for%20the%20geolocation%20API%20in%20Safari%20means%20I%20can%20now%20create%20location%20aware%20websites.%0D%0A%0D%0AThis%20will%20be%20just%20a" title="Digg"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.bemoko.com%2F2009%2F06%2F17%2Fiphone-30-geolocation-javascript-api%2F" title="Sphinn"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.bemoko.com%2F2009%2F06%2F17%2Fiphone-30-geolocation-javascript-api%2F&amp;title=iPhone%203.0%20geolocation%20javascript%20API&amp;notes=With%20the%20iPhone%203.0%20firmware%20released%20today%2C%20I%20thought%20I%27d%20show%20you%20how%20to%20access%20one%20of%20the%20features%20I%27ve%20been%20most%20looking%20forward%20to%20-%20support%20for%20the%20geolocation%20API%20in%20Safari%20means%20I%20can%20now%20create%20location%20aware%20websites.%0D%0A%0D%0AThis%20will%20be%20just%20a" title="del.icio.us"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.bemoko.com%2F2009%2F06%2F17%2Fiphone-30-geolocation-javascript-api%2F&amp;t=iPhone%203.0%20geolocation%20javascript%20API" title="Facebook"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fblog.bemoko.com%2F2009%2F06%2F17%2Fiphone-30-geolocation-javascript-api%2F&amp;title=iPhone%203.0%20geolocation%20javascript%20API" title="Mixx"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.bemoko.com%2F2009%2F06%2F17%2Fiphone-30-geolocation-javascript-api%2F&amp;title=iPhone%203.0%20geolocation%20javascript%20API&amp;annotation=With%20the%20iPhone%203.0%20firmware%20released%20today%2C%20I%20thought%20I%27d%20show%20you%20how%20to%20access%20one%20of%20the%20features%20I%27ve%20been%20most%20looking%20forward%20to%20-%20support%20for%20the%20geolocation%20API%20in%20Safari%20means%20I%20can%20now%20create%20location%20aware%20websites.%0D%0A%0D%0AThis%20will%20be%20just%20a" title="Google Bookmarks"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.bemoko.com/2009/06/17/iphone-30-geolocation-javascript-api/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>MWC bemoko device Oscars &#8211; Palm Pre and HTC Magic</title>
		<link>http://blog.bemoko.com/2009/02/24/mwc-bemoko-device-oscars-palm-pre-and-htc-magic/</link>
		<comments>http://blog.bemoko.com/2009/02/24/mwc-bemoko-device-oscars-palm-pre-and-htc-magic/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 17:27:08 +0000</pubDate>
		<dc:creator>Ian Homer</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[mobile UX]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[asus]]></category>
		<category><![CDATA[Garmin]]></category>
		<category><![CDATA[HTC Magic]]></category>
		<category><![CDATA[Huawei]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mwc]]></category>
		<category><![CDATA[N97]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[palm]]></category>
		<category><![CDATA[Palm Pre]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://blog.bemoko.com/?p=198</guid>
		<description><![CDATA[Let&#8217;s start with the depression and then I&#8217;ll lift you. There are a lot of big name device manufactures that are really struggling at creating that goal of usable mobile internet devices. So apple have paved the way and although they weren&#8217;t at the MWC this year &#8211; the iPhone they released over a year [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s start with the depression and then I&#8217;ll lift you.  There are a lot of big name device manufactures that are really struggling at creating that goal of usable mobile internet devices.   So apple have paved the way and although they weren&#8217;t at the MWC this year &#8211; the iPhone they released over a year a go would still have been the cream of today.  So what is the competition missing?  LG, Samsung and Toshiba are all creating smartphones that miss on so many fronts &#8211; clumsy UI, unresponsive touchscreens and slow interactions.  Docomo show some promise of innovation with the push into <a href="http://www.engadget.com/2009/02/18/ntt-docomo-and-sharp-show-projector-phone-at-mwc/">projector phones</a> and I&#8217;ll keep an cautious eye on <a href="http://www.huawei.com/">Huawei</a> now that they&#8217;re press released their Android strategy and put a shiny phone in a glass box.</p>
<p>The <a href="http://www.engadget.com/2008/12/02/nokia-unveils-flagship-n97-phone/">Nokia N97</a> is making small step forwards, but it doesn&#8217;t feel a leap from the excellent <a href="http://www.gsmarena.com/nokia_n82-2177.php">N82</a>.  I like the home page widgets and the personalisation that comes from this, but the UI is a little tired and was slightly unresponsive.  Not a bad phone, but didn&#8217;t impressed me like I wanted to be impressed.</p>
<p>When we finally tracked down the <a href="http://www.engadget.com/2009/02/17/htc-magic-is-official-bringing-android-to-vodafone-sans-keyboar/">HTC Magic</a> we got a glimmer of hope.  The device was responsive and showed promise, but it still was lacking that end-to-end-I-want-one feeling.  The UI is slightly cluttered and, although it looks more robust than the <a href="http://www.htc.com/www/product/g1/overview.html">G1</a>, it still needs someone to take Android and create a polished experience (a goal I don&#8217;t think is far off and I strongly believe will happen).  A disappointment I&#8217;d had on previous windows mobile device was reaffirmed at HTC where I could try the HTC Magic (Android) against the <a href="http://www.geek.com/articles/mobile/review-htc-diamond-20080610/">HTC Diamond</a> (Windows Mobile).  The HTC Diamond felt it was stuck in the wrong gear.  Other people have commented on a similar windows experience &#8211; <a href="http://gizmodo.com/gadgets/what.s-wrong-with-windows-mobile/whats-wrong-with-windows-mobile-and-how-wm7-and-wm8-are-going-to-fix-it-333536.php">Gizmodo<a/>, <a href="http://www.edibleapple.com/video-of-windows-mobile-65-in-action-looks-sluggish/">Edible Apple</a>, <a href="http://www.ppckitchen.org/forums/printthread.php?t=557">PPCKitchen</a>.  Is it the hardware / touch screen or is there something inherently up with Windows mobile usability?</p>
<p>I was pleasantly surprised to see <a href="http://www.garminasus.com/garminasus/cms/">Garmin asus</a> make a worthy contender with the G60.  Garmin have Android rumours all over them &#8211; something that the Garmin representative did nothing to hide &#8211; but for the time being the G60 is <a href="http://www.linuxdevices.com/news/NS3654914488.html">linux based</a>.   Garmin I know well from the satnav section of my Halfords store and Asus I know well from defining and conquering the low priced, well built small laptop market.  What a great combination of two trusted brands.   People are already budgeting for Garmin satnav devices so the cross over into a tight mobile internet phone seems perfect.  The G60 UI is clean simple fast and does the job.  It doesn&#8217;t show off and isn&#8217;t trying to be an all functional smartphone, but it has it&#8217;s worthy place and things can only look up for Garmin as they take this strategy forward.  Lot&#8217;s of choices for them on the direction &#8211; not least their distribution channels and how they engage with the operators.</p>
<p>So &#8230; leaving the best for last.  We were blown away by the Palm Pre &#8211; something that Tim has already <a href="http://blog.bemoko.com/2009/02/20/mwc-barcelona-palm-pre-best-in-show/">blogged about</a>.  So now wanting to repeat his message, I&#8217;ll quickly summarise my thoughts.  It&#8217;s such a rounded device &#8211; both physically (like a polished pebble) and user experience wise.  For me user experience is everything &#8211; if something annoys or bugs me in a device then it can ruin the whole experience, but here is a device that I couldn&#8217;t fault.  Albeit, through the rose tinted glasses of desire, I did try to find faults &#8211; but they were difficult to find.  A few days in my pocket may unearth some.  The battery life might be <a href="http://arstechnica.com/gadgets/news/2009/01/the-palm-pres-possible-achilles-heel-battery-life.ars">an issue</a> as could the price tag &#8211; rumoured at <a href="http://www.unwiredview.com/2009/01/09/palm-pre-coming-to-europe-in-early-h2-for-500-550-399-on-sprint/">~$500</a> (keeping it firmly in the high price end of the market).  Those aside &#8211; we&#8217;ve got a very user-centric device here.  Palm have thought about the user and what they want and that includes multi-tasking/multi-cards, clever gestured, subtle on screen feedbacks (where your finger has been), consolidated search interface.  The synergy concept to aggregate contacts and calendars from multiple source is great from a consumer view, pulling together social contacts, but also from an enterprise side where it could be pulling in contact from your CRM.  This device really is true cross over between consumer and enterprise, seemingly without compromise to either (we&#8217;re all people aren&#8217;t we so it should be possible).  I can see people who like the iPhone and people who like the Blackberry take more than a double look at this Palm pre device and consider that it&#8217;s time for a change.</p>
<p>&#8230; and did I say the Palm Pre packaging is neat.  All recyclable, no bits of plastic and unnecessary plastic bags, whether they did this for marketing or altruistic reasons &#8211; it doesn&#8217;t matter.  It shows they care.</p>
<p>Take care &#8211; and here&#8217;s to an exciting future for the (mobile) internet.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.bemoko.com%2F2009%2F02%2F24%2Fmwc-bemoko-device-oscars-palm-pre-and-htc-magic%2F&amp;title=MWC%20bemoko%20device%20Oscars%20-%20Palm%20Pre%20and%20HTC%20Magic&amp;bodytext=Let%27s%20start%20with%20the%20depression%20and%20then%20I%27ll%20lift%20you.%20%20There%20are%20a%20lot%20of%20big%20name%20device%20manufactures%20that%20are%20really%20struggling%20at%20creating%20that%20goal%20of%20usable%20mobile%20internet%20devices.%20%20%20So%20apple%20have%20paved%20the%20way%20and%20although%20they%20weren%27t%20at%20th" title="Digg"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.bemoko.com%2F2009%2F02%2F24%2Fmwc-bemoko-device-oscars-palm-pre-and-htc-magic%2F" title="Sphinn"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.bemoko.com%2F2009%2F02%2F24%2Fmwc-bemoko-device-oscars-palm-pre-and-htc-magic%2F&amp;title=MWC%20bemoko%20device%20Oscars%20-%20Palm%20Pre%20and%20HTC%20Magic&amp;notes=Let%27s%20start%20with%20the%20depression%20and%20then%20I%27ll%20lift%20you.%20%20There%20are%20a%20lot%20of%20big%20name%20device%20manufactures%20that%20are%20really%20struggling%20at%20creating%20that%20goal%20of%20usable%20mobile%20internet%20devices.%20%20%20So%20apple%20have%20paved%20the%20way%20and%20although%20they%20weren%27t%20at%20th" title="del.icio.us"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.bemoko.com%2F2009%2F02%2F24%2Fmwc-bemoko-device-oscars-palm-pre-and-htc-magic%2F&amp;t=MWC%20bemoko%20device%20Oscars%20-%20Palm%20Pre%20and%20HTC%20Magic" title="Facebook"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fblog.bemoko.com%2F2009%2F02%2F24%2Fmwc-bemoko-device-oscars-palm-pre-and-htc-magic%2F&amp;title=MWC%20bemoko%20device%20Oscars%20-%20Palm%20Pre%20and%20HTC%20Magic" title="Mixx"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.bemoko.com%2F2009%2F02%2F24%2Fmwc-bemoko-device-oscars-palm-pre-and-htc-magic%2F&amp;title=MWC%20bemoko%20device%20Oscars%20-%20Palm%20Pre%20and%20HTC%20Magic&amp;annotation=Let%27s%20start%20with%20the%20depression%20and%20then%20I%27ll%20lift%20you.%20%20There%20are%20a%20lot%20of%20big%20name%20device%20manufactures%20that%20are%20really%20struggling%20at%20creating%20that%20goal%20of%20usable%20mobile%20internet%20devices.%20%20%20So%20apple%20have%20paved%20the%20way%20and%20although%20they%20weren%27t%20at%20th" title="Google Bookmarks"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.bemoko.com/2009/02/24/mwc-bemoko-device-oscars-palm-pre-and-htc-magic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia E61i &#8211; a fantastic choice</title>
		<link>http://blog.bemoko.com/2008/01/29/nokia-e61i/</link>
		<comments>http://blog.bemoko.com/2008/01/29/nokia-e61i/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 13:54:28 +0000</pubDate>
		<dc:creator>Ian Homer</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[e61]]></category>
		<category><![CDATA[e61i]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[isync]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[zimbra]]></category>

		<guid isPermaLink="false">http://blog.bemoko.com/2008/01/29/nokia-e61i/</guid>
		<description><![CDATA[In the end, and after my much deliberation, I went for the Nokia E61i as my new phone. I always liked the Nokia E61 which was my main phone for most of last year and once you&#8217;ve got over the form factor well the E61i is a natural upgrade path. I did ponder over the [...]]]></description>
			<content:encoded><![CDATA[<p>In the end, and after my much deliberation, I went for the <a href="http://europe.nokia.com/A4344018">Nokia E61i</a> as my new phone.  I always liked the <a href="http://www.nokia.co.uk/A4221031" title="Nokia-E61">Nokia E61</a> which was my main phone for most of last year and once you&#8217;ve got over the form factor well the E61i is a natural upgrade path.  I did ponder over the <a href="http://shop.o2.co.uk/iPhone" title="iPhone">iPhone</a>, but �269 is just a little too much as an inital payment, when I can get better hardware for &#8220;free&#8221;.  Oh but the UI is so sweet.    A colleague got me interested in the <a href="http://uk.samsungmobile.com/mobile/SGH-F700" title="Samsung F700">Samsung F700</a>, but thankfully I didn&#8217;t since the same colleague took the phone back after a few days, as it was pretty deficient in several ways (such as poor PC synchronisation, bad use of the big screen and poor support from Samsung).      Maybe Samsung&#8217;s software issues will go away when they start building on top of the <a href="http://code.google.com/android">Android</a> platform.      This is not too far in distance since Android is leaving the virtual world and becoming a reality as EU Edge demonstrate with a deployment of <a href="http://euedge.com/blog/2007/12/06/google-android-runs-on-sharp-zaurus-sl-c760/" title="Android on Sharp">Android on a Sharp Zaurus SL-C760</a>.  The <a href="http://code.google.com/android/adc.html">$10million purse</a> for the best mobile apps should also help things along.  I&#8217;ll find out more at Google&#8217;s Android day in London this Thursday.</p>
<p>So why the the Nokia E61i then?</p>
<p>The Wifi support is great.   I would love to see better wifi hoping functionality, such as utilising the access point groups to define my preferred access points in order and better support across all the apps.  I seem to spend a bit of time in each app switching between access points, but at least connection is pretty solid once set up. Wifi usage does help reduce my Vodafone data usage which is capped at a less than attractive 120Mb per month.  </p>
<p>With the E61i, the synchronisation of email, contacts and calendaring is pretty seamless.  I&#8217;ve got it hooked up to our <a href="http://www.zimbra.com/" title="Zimbra">Zimbra</a> server using the Nokia&#8217;s <a href="http://wiki.zimbra.com/index.php?title=Nokia_E61" title="Nokia's Mail for Exchange">Mail for Exchange</a> client (which you can clearly use for Exchange if you have that).  I went for syncing my contacts via my mac with iSync because (i) I was playing around with iSync at the time and (ii) it lets me sync my contacts without an internet connection (e.g. when I&#8217;m travelling abroad).  You&#8217;ll need to download the <a href="http://europe.nokia.com/mac/isync/">iSync plugin for the E61i</a> since it isn&#8217;t provided by default.   With the E61i I really can have my email, contacts and calendaring kept in sync between my phone, mac and zimbra effortlessly.</p>
<p>The E61i has also thrown in a camera which is a nice addition over the E61.  Don&#8217;t expect too much from the camera, but it&#8217;s enough for my purposes which are general taking photos of whiteboards and quick photos on business trips to send back to my wife.</p>
<p>The UI is intuitive and quick &#8211; the ability to configure the shortcut buttons allows me to get to what I want to quickly.  The screen and keyboard are fantastic &#8211; I can easily read my inbox and write messages whilst in queues and on the move.   Of course the mobile browsing can pretty much read anything out there and do a reasonable job on it, whether I&#8217;m using the default browser or opera mini.</p>
<p>So all in all a pretty handy device whilst I&#8217;m out and about (or even at home but don&#8217;t want to flip out my computer to read my mails).  And with a bluetooth headset I don&#8217;t have to put the brick that it is to my ear.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.bemoko.com%2F2008%2F01%2F29%2Fnokia-e61i%2F&amp;title=Nokia%20E61i%20-%20a%20fantastic%20choice&amp;bodytext=In%20the%20end%2C%20and%20after%20my%20much%20deliberation%2C%20I%20went%20for%20the%20Nokia%20E61i%20as%20my%20new%20phone.%20%20I%20always%20liked%20the%20Nokia%20E61%20which%20was%20my%20main%20phone%20for%20most%20of%20last%20year%20and%20once%20you%27ve%20got%20over%20the%20form%20factor%20well%20the%20E61i%20is%20a%20natural%20upgrade%20path.%20%20I%20di" title="Digg"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fblog.bemoko.com%2F2008%2F01%2F29%2Fnokia-e61i%2F" title="Sphinn"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.bemoko.com%2F2008%2F01%2F29%2Fnokia-e61i%2F&amp;title=Nokia%20E61i%20-%20a%20fantastic%20choice&amp;notes=In%20the%20end%2C%20and%20after%20my%20much%20deliberation%2C%20I%20went%20for%20the%20Nokia%20E61i%20as%20my%20new%20phone.%20%20I%20always%20liked%20the%20Nokia%20E61%20which%20was%20my%20main%20phone%20for%20most%20of%20last%20year%20and%20once%20you%27ve%20got%20over%20the%20form%20factor%20well%20the%20E61i%20is%20a%20natural%20upgrade%20path.%20%20I%20di" title="del.icio.us"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.bemoko.com%2F2008%2F01%2F29%2Fnokia-e61i%2F&amp;t=Nokia%20E61i%20-%20a%20fantastic%20choice" title="Facebook"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fblog.bemoko.com%2F2008%2F01%2F29%2Fnokia-e61i%2F&amp;title=Nokia%20E61i%20-%20a%20fantastic%20choice" title="Mixx"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.bemoko.com%2F2008%2F01%2F29%2Fnokia-e61i%2F&amp;title=Nokia%20E61i%20-%20a%20fantastic%20choice&amp;annotation=In%20the%20end%2C%20and%20after%20my%20much%20deliberation%2C%20I%20went%20for%20the%20Nokia%20E61i%20as%20my%20new%20phone.%20%20I%20always%20liked%20the%20Nokia%20E61%20which%20was%20my%20main%20phone%20for%20most%20of%20last%20year%20and%20once%20you%27ve%20got%20over%20the%20form%20factor%20well%20the%20E61i%20is%20a%20natural%20upgrade%20path.%20%20I%20di" title="Google Bookmarks"><img src="http://blog.bemoko.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.bemoko.com/2008/01/29/nokia-e61i/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

