<?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>Rants of a mobile dev &#187; Reviews</title>
	<atom:link href="http://blog.smartcube.co.za/category/reviews/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.smartcube.co.za</link>
	<description>Mobile developer ranting about mobile stuff</description>
	<lastBuildDate>Sun, 02 May 2010 20:58:07 +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>Android G1 Battery Calibration</title>
		<link>http://blog.smartcube.co.za/2009/04/26/android-g1-battery-calibratio/</link>
		<comments>http://blog.smartcube.co.za/2009/04/26/android-g1-battery-calibratio/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 11:28:00 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[battery]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=90</guid>
		<description><![CDATA[I mentioned a few days ago I had a G1 phone in there I mentioned the battery life was shocking . nabil2199 mentioned a battery calibration link it really does work. That article wasn&#8217;t the most clear in the world of what you need to do to calibrate your battery. 1) Let it discharge completely(Even [...]]]></description>
			<content:encoded><![CDATA[<p>I mentioned a few days ago I had a <a href="http://blog.smartcube.co.za/2009/04/21/i-have-an-droid/">G1 phone</a> in there I mentioned the battery life was shocking . <a href="http://blog.smartcube.co.za/2009/04/21/i-have-an-droid/comment-page-1/#comment-373">nabil2199</a> mentioned a <a href="http://android-dls.com/component/content/article/36-frontpage/73-g1-battery-calibration-works.html">battery calibration link</a> it really does work.</p>
<p>That article wasn&#8217;t the most clear in the world of what you need to do to calibrate your battery.<br />
1) Let it discharge completely(Even when it says it is dead carry on discharging, mine ran on 0% power for a good few hours)<br />
2) Charge it fully while it is off.<br />
3) Let it discharge completely again.<br />
4) Charge it fully.</p>
<p>It seems silly but it does work, My battery life has improved so much since doing this silly thing. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/04/26/android-g1-battery-calibratio/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nokia&#8217;s Music Store Fail</title>
		<link>http://blog.smartcube.co.za/2009/04/23/nokias-music-store-fail/</link>
		<comments>http://blog.smartcube.co.za/2009/04/23/nokias-music-store-fail/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 07:05:56 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[wml]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=86</guid>
		<description><![CDATA[I heard last night on the Tv that Nokia is going to be releasing their Music store at first I thought maybe this would be great for South Africa since the majority of our population do not have smart phones such as the iphone&#8230;. They claim to launch on the 24th but if their current [...]]]></description>
			<content:encoded><![CDATA[<p>I heard last night on the Tv that <a href="http://www.nokia.com">Nokia</a> is going to be releasing their <a href="http://musicstore.nokia.com/">Music store</a> at first I thought maybe this would be great for South Africa since the majority of our population do not have smart phones such as the iphone&#8230;.</p>
<p>They claim to launch on the 24th but if their current <a href="http://musicstore.nokia.com/">site</a> is any thing to go on I as well as many others will be highly disappointed.</p>
<p><strong>Major issues.</strong><br />
1) Going to the site on a mobile (Nokia 6300) gives a content type of wml (text/vnd.wap.wml) on a phone that clearly supports xhtml mobile profile.<br />
2) Their site isn&#8217;t even in wml it is xhtml served with a content type of xml FAIL! on most of the phones<br />
3) They site is missing the correct xml decleration.<code>&lt;?xml version="1.0" encoding="UTF-8" ?&gt;</code> This is normally an issue with IE6 since it doesn&#8217;t understand xml&#8230;. but wait I thought this was a mobile site?<br />
4) Mobile profile <code>&lt;!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"&gt;</code><br />
   should be used instead of <code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&gt;</code><br />
5) Use of javascript on a phone that clearly doesn&#8217;t support it, way to go to save data use age. <code>&lt;script type=&quot;text/javascript&quot; src=&quot;js/getElementsByClassName.js&quot;&gt;&lt;/script&gt;</code><br />
6) IE specific css <code>&lt;!--[if lt IE 7]&gt;&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/ie6.css&quot; /&gt;&lt;![endif]--&gt;</code> Is this a website NO! </p>
<p>Oddly enough the <a href="http://music.nokia.co.uk/">UK</a> version is more mobile compliant then the international one with minor errors like the xml header (point 1 and 2) other wise pretty nice site.</p>
<p>I am pretty sure there are more basic errors and maybe I will bother to check it out again and update this post but for now I have other important stuff to get done.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/04/23/nokias-music-store-fail/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>I have An droid</title>
		<link>http://blog.smartcube.co.za/2009/04/21/i-have-an-droid/</link>
		<comments>http://blog.smartcube.co.za/2009/04/21/i-have-an-droid/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 14:07:25 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=84</guid>
		<description><![CDATA[I have been using/testing out the G1, based on google&#8217;s android coming from a hard core Nokia user it has been an very pleasant experience. So far I must say I am enjoying it. The Google integration is flawless (What else did you expect). When loading the sim for the first time it asks you [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using/testing out the G1, based on <a href="http://google.com">google&#8217;s</a> <a href="http://en.wikipedia.org/wiki/Google_Android">android</a> coming from a hard core <a href="http://www.nokia.com/">Nokia</a> user it has been an very pleasant experience. </p>
<p>So far I must say I am enjoying it. The Google integration is flawless (What else did you expect). When loading the sim for the first time it asks you for a Google account a few seconds after authentication all your contacts calendar and emails are all synced down to the phone. The contact sync feature to me was the greatest since my old phone had gone to mobile heaven.</p>
<p>Their UI is by far one of the easiest to use and most intuitive. I have only tried out the <a href="http://www.apple.com/iphone/">Apple&#8217;s Iphone </a> but so far the fact this phone as a qwerty keyboard makes it easier to use. This does take some getting used to I still feel I type faster on the standard 9 key mobile keypad then this smaller qwerty one.</p>
<p>Hopefully in the next while I will be able to check out their <a href="http://code.google.com/android/">SDK</a> and put together some sort of app. For now I guess I will have to just live with a super cool phone.  </p>
<p>Word of note the the synchronization can kinda kill your battery life but all of this is easily turned off or configured to happen at a less frequent interval. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/04/21/i-have-an-droid/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Facebook For Dummies</title>
		<link>http://blog.smartcube.co.za/2009/02/15/facebook-for-dummies/</link>
		<comments>http://blog.smartcube.co.za/2009/02/15/facebook-for-dummies/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 18:45:39 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=61</guid>
		<description><![CDATA[I was in shopping around over the weekend and I happened to walk past the book store and happened to see Facebook For Dummies. There is even a Facebook page devoted to this book. I mean seriously who would buy a how to for a website that continually changes and adds new feature sets as [...]]]></description>
			<content:encoded><![CDATA[<p>I was in shopping around over the weekend and I happened to walk past the book store and happened to see <a href="http://www.amazon.com/Facebook-Dummies-Computer-Tech/dp/0470262737">Facebook For Dummies</a>. There is even a <a href="http://www.facebook.com/pages/Facebook-for-Dummies/7087758108">Facebook</a> page devoted to this book.</p>
<p>I mean seriously who would buy a how to for a website that continually changes and adds new feature sets as often as <a href="http://facebook.com">Facebook</a> does? </p>
<p><a href="http://blog.smartcube.co.za/wp-content/uploads/2009/02/facebook4dummies.jpg"><img src="http://blog.smartcube.co.za/wp-content/uploads/2009/02/facebook4dummies.jpg" alt="" title="facebook4dummies" width="240" height="240" class="alignnone size-medium wp-image-62" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/02/15/facebook-for-dummies/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gmail Mobile V2</title>
		<link>http://blog.smartcube.co.za/2008/11/02/gmail-mobile-v2/</link>
		<comments>http://blog.smartcube.co.za/2008/11/02/gmail-mobile-v2/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 12:56:49 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=25</guid>
		<description><![CDATA[In one of gmails blogs they announced the release of version 2 of their mobile application for gmail. I was very excited to try out the new features this had to offer Multiple Accounts Basic Off line usage New short cut keys At first I was very pleased with the cleaned up look and feel [...]]]></description>
			<content:encoded><![CDATA[<p>In one of gmails <a href="http://gmailblog.blogspot.com/2008/10/gmail-for-mobile-faster-smoother-and.html">blogs</a> they announced the release of version 2 of their mobile application for gmail. I was very excited to try out the new features this had to offer</p>
<ul>
<li>Multiple Accounts</li>
<li>Basic Off line usage</li>
<li>New short cut keys</li>
</ul>
<p>At first I was very pleased with the cleaned up look and feel the added short cut keys making navigation much simpler on a mobile device with limited screen sizes and most phones lacking fully functional keyboards.</p>
<p>Just for the record I am currently using a Nokia 6300 <a href="http://en.wikipedia.org/wiki/Nokia_6300">wiki</a> | <a href="http://www.gsmarena.com/nokia_6300-1800.php">gsmarena</a> |<a href="http://europe.nokia.com/A4254242">nokia</a> making use of edge data connection</p>
<p>At the start of this testing proccess the jar/application was +-256.8kb for a phone application this is quite chunky it is still with in the acceptable bounds for the maximum jar size my phone can handle +-1mb. To my surprise running the application for the first time brought up a loading while it attempted to download the other parts of the application such as images etc. (I do not know exactly what was downloaded with out going into further debugging/decompilation at this point in time I am sure that would breach their EULA) after this proccess the application had taken up +-400kb of my phones internal memory and I had to remove 2 of my previous application in order to make space for this &#8220;beast&#8221; of an application.</p>
<p>As part of the offline browsing of mail, Gmail has to <a href="http://en.wikipedia.org/wiki/Cache">cache</a> the mail on the phone in order for it to available offline. Using some sort of format in the RMS(Record Management System) anyway phones have a limited amount of RMS data that can be stored per <a href="p://www.dpsoftware.org/result.php?marca=nokia&amp;modello=6300">application</a>. This is something that worries me currently my Gmail application is sitting at 830kb this is an exceptionally big for a mobile application.</p>
<p>For a mobile developer as my self I like to see things catered for the lowest (reasonable) common denominator. While using this new improved version of gmail I had to remove another application in order to make space for my ever growing Gmail one.</p>
<p>Benchmarks Questions</p>
<ol>
<li> Is there a limit to how much Gmail will try and store on my phone?</li>
<li> Does the application ever check <a href="http://www.docjar.com/docs/api/javax/microedition/rms/RecordStore.html#getSizeAvailable()">getSizeAvailable</a> or <a href="http://www.docjar.com/docs/api/javax/microedition/rms/RecordStore.html#getRecordSize(int)">getSize</a> before trying to write to the RMS</li>
<li>Will there be an option to turn off offline caching?</li>
<li>How much data transfer is really saved by not reading from an http connection and reading from the RMS &#8211; Is the amount of kb&#8217;s saved worth the read/write access to my phones persistent storage</li>
</ol>
<p>I would really like to revert to the older version of Gmail as I use this application often when I am not near a PC in order to check for important emails. The only issue with this I had to remove the old one to make space for V2 and they have since removed the option to download the <a href="http://en.wikipedia.org/wiki/Legacy_system">legacy</a> version.</p>
<p>Update:<br />
I have reported this on the Gmail list archives <a href="http://groups.google.com/group/Gmail-Help-Gmail-for-Mobile-en/browse_thread/thread/03a051c32f590090">here</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2008/11/02/gmail-mobile-v2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Taken Movie Review</title>
		<link>http://blog.smartcube.co.za/2008/10/25/taken/</link>
		<comments>http://blog.smartcube.co.za/2008/10/25/taken/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 22:39:30 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=9</guid>
		<description><![CDATA[I decided that other then programming/linux stuff I might as well write about something else I enjoy. It has been a long time since I watched a truly great movie. I mean I have seen a few enjoyable ones that I would rate highly based on sit down factorÂ®(This is how much you want to [...]]]></description>
			<content:encoded><![CDATA[<p>I decided that other then programming/linux stuff I might as well write about something else I enjoy. It has been a long time since I watched a truly great movie. I mean I have seen a few enjoyable ones that I would rate highly based on sit down factorÂ®(This is how much you want to remain in your seat during the movie) . Sorry to say butÂ  <a href="http://www.imdb.com/title/tt0960144/" target="_blank">Zohan</a> would not be rated as a great movie but very funny and highly rated on the &#8220;sit down factor&#8221;.</p>
<p>I went to go and see Taken last week. The only thing I knew about the movie wasÂ  a quote from the trailer. &#8220;I dont know who you are, I dont know what you wantÂ  if you are looking for a randson I can tell you have no money but what I do have is a very particular set of skills that I have aquired over a very long career, skills that make me a nightmare for people like you&#8230;.&#8221;Â  This movie is listed as Action a Thriller would be more accurate. The movie is action packed with abitous fight scenes Drama, Suspense.Â  This was one of the better movies I have seen this year. Very simple plot but  very well executed. With out giving away too much of the movie I am just going to say it was well worth watching and definitely had the &#8220;sit down factor&#8221;Â®</p>
<p>Imdb.com rated it as a <strong>7.9/10 </strong>I would give it aÂ  <strong>8.2/10</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2008/10/25/taken/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
