<?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>Just2us &#187; Interesting</title>
	<atom:link href="http://blog.just2us.com/interesting/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.just2us.com</link>
	<description>discuss on technology &#38; application development</description>
	<lastBuildDate>Tue, 15 May 2012 15:02:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>My THack (Hackathon) Experience</title>
		<link>http://blog.just2us.com/2011/10/my-thack-hackathon-experience/</link>
		<comments>http://blog.just2us.com/2011/10/my-thack-hackathon-experience/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 08:39:00 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[hackthon]]></category>

		<guid isPermaLink="false">http://blog.just2us.com/2011/10/my-thack-hackathon-experience/</guid>
		<description><![CDATA[
			
				
			
		
I participated in a 24hr hackathon over last weekend, and created Guidebnb – an app to find local guides. It is an Airbnb for local guides.
If you want to try out, head over to http://guidebnb.just2us.com.
The whole hacking session was fun, and here are some random things I would like to share.
&#160;
Setup your servers first
The hacking [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F10%2Fmy-thack-hackathon-experience%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F10%2Fmy-thack-hackathon-experience%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://blog.just2us.com/wp-content/uploads/2011/10/guidebnb-logo.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px 10px 0px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px; border-right: 0px; padding-top: 0px" title="guidebnb logo" border="0" alt="guidebnb logo" align="left" src="http://blog.just2us.com/wp-content/uploads/2011/10/guidebnb-logo_thumb.png" width="244" height="125" /></a>I participated in a 24hr hackathon over last weekend, and created Guidebnb – an app to find local guides. It is an <a href="http://devblog.hoiio.com/2011/10/guidebnb-airbnb-for-local-guides/">Airbnb for local guides</a>.</p>
<p>If you want to try out, head over to <a href="http://guidebnb.just2us.com">http://guidebnb.just2us.com</a>.</p>
<p>The whole hacking session was fun, and here are some random things I would like to share.</p>
<p>&#160;</p>
<h3>Setup your servers first</h3>
<p>The hacking started at 10am, and we didn’t write a piece of code until 4pm! For 6 hours, we were merely setting up our server and development environment. We have a plan of what to use, but things didn’t work out. This is what we did:</p>
<ul>
<li>The plan is to use <a href="http://heroku.com">Heroku</a> PHP. However, Heroku does <a href="http://killerapi.blogspot.com/2011/10/heroku-php-does-not-support-mongodb.html">not</a> support MongoDB! (they supported eventually, a few days after the hackathon)</li>
<li>So we go for <a href="http://aws.amazon.com/ec2/">Amazon EC2</a>. We setup the instance, installed Apache. However, MongoDB has a dependency which could not be installed. (probably our fault)</li>
<li>So we go for <a href="http://www.slicehost.com/">Slicehost</a>. PHP and Mongo driver setup successfully. However, their PHP version is an older version (5.1), which caused some headache with Facebook API.</li>
</ul>
<p>In the end, we settle for EC2 with MySQL.</p>
<p>&#160;</p>
<h3>SQL database has lots of boilerplate code</h3>
<p>I hate SQL database, because they need too much setup. You need to create database, create table, design schema, then write complex SQL statements. You need to use <a href="http://www.pantz.org/software/mysql/mysqlcommands.html">mysql commands</a>.</p>
<p>And when you need to add a column, you need to write SQL to add the column to the table, and also change all your affected SQL statements.</p>
<p>I have done that many times before, yet I am doing it again, all because the NoSQL-MongoDB could not be installed..</p>
<p>&#160;</p>
<h3>Facebook API is not that easy</h3>
<p><a href="http://developer.facebook.com">Facebook API</a> is one of the widely used, yet also the also widely criticized API of all time.</p>
<p>It does give you problems, and high learning curve since there is a lot that you can do with it and you need to go figure it out yourself. They have non working examples too.</p>
<p>&#160;</p>
<h3>Hoiio &amp; Expedia API are easy</h3>
<p>We used 2 APIs</p>
<ul>
<li><a href="http://api.hoiio.com/">Hoiio API</a> for SMS and IVR (Interactive Voice Responses) services</li>
<li><a href="http://developer.ean.com/">Expedia API</a> for hotel search</li>
</ul>
<p>Both are easy to use and do their stuff as intended. Took less than an hour to integrate the APIs.</p>
<p>&#160;</p>
<h3>I became a CSS ninja</h3>
<p>I am a mobile developer, and API designer. </p>
<p>I don’t dwell with web development and CSS stuff. However, for the hackathon, I have to do quite a bit of CSS. I started with a template that help start things. I typed a lot of inline CSS to solve things quickly. I used chrome developer tool and inspected elements one by one. I learnt stuff like <a href="http://css-tricks.com/551-can-we-prevent-css-caching/">preventing CSS caching</a>.</p>
<p>I can write, but it is not my cup of tea.</p>
<p>&#160;</p>
<h3>Don’t change MAMP password</h3>
<p>Being quirky about security, I changed the default password of my MAMP’s MySQL’s password. </p>
<p>That is <a href="http://drupal.org/node/66187">extra</a>, and that wasted 1 hour. (run into problems and ended up reinstalling MAMP)</p>
<p>&#160;</p>
<h3>7 min presentation ain’t enough</h3>
<p>When you have something cool and a lot to brag about, 7 min ain’t enough!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2011/10/my-thack-hackathon-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AsiaTop50Apps voting system fixed</title>
		<link>http://blog.just2us.com/2011/10/asiatop50apps-voting-system-fixed/</link>
		<comments>http://blog.just2us.com/2011/10/asiatop50apps-voting-system-fixed/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 14:16:59 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Interesting]]></category>

		<guid isPermaLink="false">http://blog.just2us.com/2011/10/asiatop50apps-voting-system-fixed/</guid>
		<description><![CDATA[
			
				
			
		

Five days ago, I posted what happens when you have a hackable voting system, and I decided to curl SG Blood to become an undisputed winner.
However, under pressure, e27 admitted their epic mistake and fixed their voting system. They employed Facebook’s like and Google’s +1.
With the voting system fixed, there is no way for me [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F10%2Fasiatop50apps-voting-system-fixed%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F10%2Fasiatop50apps-voting-system-fixed%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<h1><img style="margin: 0px 15px 10px 0px; display: inline; float: left" align="left" src="http://e27.sg/wp-content/uploads/2011/10/ScrewUp.jpg" width="251" height="201" /></h1>
<p>Five days ago, I posted <a href="http://blog.just2us.com/2011/10/what-happens-when-you-have-a-hackable-voting-system/">what happens when you have a hackable voting system</a>, and I decided to curl SG Blood to become an <em>undisputed winner</em>.</p>
<p>However, under pressure, e27 <a href="http://e27.sg/2011/10/01/wemadeamistake/">admitted their epic mistake</a> and fixed their voting system. They employed Facebook’s like and Google’s +1.</p>
<p>With the voting system fixed, there is no way for me to <strong>curl SG Blood to become the winner</strong> <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-openmouthedsmile" alt="Open-mouthed smile" src="http://blog.just2us.com/wp-content/uploads/2011/10/wlEmoticon-openmouthedsmile.png" /></p>
<p>I know SG Blood is not a top 50 app candidate. . It was submitted to <a href="http://asiatop50apps.com/">asiatop50apps</a> merely because of the <a href="http://blog.just2us.com/2011/10/what-happens-when-you-have-a-hackable-voting-system/">hackable voting system</a>.</p>
<p>So my game halted. However, if you want to show support, please <a href="http://asiatop50apps.com/sg-blood/">go ahead and vote SG Blood</a>!</p>
<h2>A couple of useful apps</h2>
<p>There are a couple of good &amp; useful apps, and I want to take this chance to highlight some that I cast my votes for:</p>
<ol>
<li><a href="http://asiatop50apps.com/hoiio/">Hoiio</a> &#8211; Yeah, I do work for <a href="http://www.hoiio.com">Hoiio</a>, but our phone bill slashing app is definitely useful!</li>
<li><a href="http://asiatop50apps.com/gothere-sg/">Gothere</a> – The #1 app for finding your way around Singapore by bus, train or car</li>
<li><a href="http://asiatop50apps.com/around/">around!</a> – Nice app for finding discounts around the island</li>
<li><a href="http://asiatop50apps.com/movend/">movend</a> – This is not really an app, but their payment SDK is a good work</li>
<li><a href="http://asiatop50apps.com/sg-buses/">SG Buses</a> – Very useful for finding bus arrival times</li>
<li><a href="http://asiatop50apps.com/pigeonhole-live/">Pigeonhole</a> – Innovative real-time Q&amp;A tool</li>
<li><a href="http://asiatop50apps.com/zopim/">Zopim</a> – Add live chat to your website, like <a href="http://blog.just2us.com/2011/07/adding-live-chat-to-your-blogwebsite/">how I use it</a></li>
</ol>
<p>So those are my selections, go cast your votes too!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2011/10/asiatop50apps-voting-system-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What happens when you have a hackable voting system?</title>
		<link>http://blog.just2us.com/2011/09/what-happens-when-you-have-a-hackable-voting-system/</link>
		<comments>http://blog.just2us.com/2011/09/what-happens-when-you-have-a-hackable-voting-system/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 13:49:20 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[SG Blood]]></category>

		<guid isPermaLink="false">http://blog.just2us.com/?p=696</guid>
		<description><![CDATA[
			
				
			
		
Unfortunately, this happened to Asia&#8217;s Top 50 Apps nomination, presented by Singtel Innovation Exchange, and e27 as the organizer.
Interestingly, e27 community manager posted a blunt story about their flawed voting system.
I like how the story revealed things from an organizer perspective. However, he is admitting to his mistake, and yet not doing anything about it. [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F09%2Fwhat-happens-when-you-have-a-hackable-voting-system%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F09%2Fwhat-happens-when-you-have-a-hackable-voting-system%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img style="margin: 0px 15px 10px 0px; display: inline; float: left" align="left" src="http://asiatop50apps.com/wp-content/themes/singtel/images/singtel-asias-top-50-apps-logo.png" width="145" height="145" />Unfortunately, this happened to <a href="http://asiatop50apps.com/">Asia&#8217;s Top 50 Apps</a> nomination, presented by <a href="http://six.sg/">Singtel Innovation Exchange</a>, and <a href="http://e27.sg">e27</a> as the organizer.</p>
<p>Interestingly, e27 community manager posted a <a href="http://e27.sg/2011/09/29/hi-there-can-we-please-focus-on-building-the-community/">blunt story</a> about their flawed voting system.</p>
<p>I like how the story revealed things from an organizer perspective. However, he is admitting to his mistake, and yet not doing anything about it. Quoted:</p>
<blockquote><p><cite>Go ahead, do it. We probably won’t find out.&#160; Keep it up, kudos to you. You’ll probably end up on the top of the list and be awarded the People’s Choice Award. </cite></p>
</blockquote>
<p>Since the voting system is not going to be fixed, there are only 2 possibilities:</p>
<ol>
<li>No one cheated (because developers have integrity!) </li>
<li>Someone cheated </li>
</ol>
<p>Since (2) is always a possibility, whoever turn out as the winner, will also turn out to be a cheater/loser.. </p>
<p>I thought, since that is the case, I might as well submit my <a href="http://blog.just2us.com/2010/04/sg-blood-v2/">SG Blood</a> and <strong>curl it to be the winner</strong>.</p>
<p><em>No one going to dispute a non-profitable app winning for a good cause, right?</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2011/09/what-happens-when-you-have-a-hackable-voting-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Many Developers Are There In The World?</title>
		<link>http://blog.just2us.com/2011/09/how-many-developers-are-there-in-the-world/</link>
		<comments>http://blog.just2us.com/2011/09/how-many-developers-are-there-in-the-world/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 03:39:31 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://blog.just2us.com/?p=693</guid>
		<description><![CDATA[
			
				
			
		
I have always been curious over the number of developers in each country. Recently, out of a need to present this statistics for my work, I went deeper to search for an answer.
StackExchange provided me with data for a few countries. For example, US has a population of 300 million, and has 1 million programmers [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F09%2Fhow-many-developers-are-there-in-the-world%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F09%2Fhow-many-developers-are-there-in-the-world%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I have always been curious over the number of developers in each country. Recently, out of a need to present this statistics for my work, I went deeper to search for an answer.</p>
<p><a href="http://programmers.stackexchange.com/questions/19720/where-can-i-find-statistics-on-worldwide-developers-and-software-companies/">StackExchange</a> provided me with data for a few countries. For example, US has a population of 300 million, and has 1 million programmers (that is 0.33%).&#160; </p>
<p>I took a lower figure and estimated that around <strong>0.1% of a population are active developers</strong> who work on web/mobile. With that, I estimate the number of developers in each country as such:</p>
<table border="1" cellspacing="0" cellpadding="2" width="488">
<tbody>
<tr>
<td valign="top" width="134"><strong>Country</strong></td>
<td valign="top" width="133"><strong>Population</strong></td>
<td valign="top" width="219"><strong>No. of developers (0.1%)</strong></td>
</tr>
<tr>
<td valign="top" width="134">US</td>
<td valign="top" width="133">300 mil</td>
<td valign="top" width="219">300,000</td>
</tr>
<tr>
<td valign="top" width="134">UK</td>
<td valign="top" width="133">61 mil</td>
<td valign="top" width="219">61,000</td>
</tr>
<tr>
<td valign="top" width="134">Japan</td>
<td valign="top" width="133">127 mil</td>
<td valign="top" width="219">127,000</td>
</tr>
<tr>
<td valign="top" width="134">Singapore </td>
<td valign="top" width="133">5 mil</td>
<td valign="top" width="219">5,000</td>
</tr>
<tr>
<td valign="top" width="134">Hong Kong</td>
<td valign="top" width="133">7 mil</td>
<td valign="top" width="219">7,000</td>
</tr>
<tr>
<td valign="top" width="134">Australia </td>
<td valign="top" width="133">22 mil</td>
<td valign="top" width="219">22,000</td>
</tr>
<tr>
<td valign="top" width="134">China</td>
<td valign="top" width="133">1,330 mil</td>
<td valign="top" width="219">1,330,000</td>
</tr>
</tbody>
</table>
<p><a href="http://www.quora.com/How-many-mobile-software-developers-are-there-in-the-world">Quora</a> also provided me a good answer, adding that around 10% of developers specialize in mobile development. That estimate does relate to the 40,000 iOS and 10,000 Android developers reported in <a href="http://blog.appstorehq.com/post/760323632/ios-vs-android-over-1-000-developers-including-some">appstorehq</a> in 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2011/09/how-many-developers-are-there-in-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMS Spreader &#8211; Run SMS Campaigns using Google Spreadsheet</title>
		<link>http://blog.just2us.com/2011/08/sms-spreader-run-sms-campaigns-using-google-spreadsheet/</link>
		<comments>http://blog.just2us.com/2011/08/sms-spreader-run-sms-campaigns-using-google-spreadsheet/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 17:25:02 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[sms]]></category>

		<guid isPermaLink="false">http://blog.just2us.com/2011/08/sms-spreader-run-sms-campaigns-using-google-spreadsheet/</guid>
		<description><![CDATA[
			
				
			
		
There are many online websites that helps SMS marketers send thousands of SMS. You have to upload an excel file containing the mobile numbers, then configure to run the campaign.
It was never easy finding and choosing a good web service that does that well.
However, running an SMS campaign actually do not need any web services. [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F08%2Fsms-spreader-run-sms-campaigns-using-google-spreadsheet%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F08%2Fsms-spreader-run-sms-campaigns-using-google-spreadsheet%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>There are many online websites that helps SMS marketers send thousands of SMS. You have to upload an excel file containing the mobile numbers, then configure to run the campaign.</p>
<p>It was never easy finding and choosing a good web service that does that well.</p>
<p>However, running an SMS campaign actually do not need any web services. All you need is a Google Spreadsheet with all the mobile numbers and messages that you want to send.</p>
<p>I am introducing to you <strong><a href="http://bit.ly/qFQRRQ">Google Spreader</a></strong> – A Google Spreadsheet app that helps you send thousands of SMS.</p>
<p><a href="http://bit.ly/qFQRRQ"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="SMS blasting useing spreadsheet" border="0" alt="SMS blasting useing spreadsheet" src="http://blog.just2us.com/wp-content/uploads/2011/08/SMS-blasting-useing-spreadsheet.jpg" width="644" height="332" /></a></p>
<p>The benefits are:</p>
<ul>
<li>Use what you are familiar with in SMS Marketing – spreadsheet</li>
<li>Send thousands, or millions, of SMS directly from the spreadsheet</li>
<li>Use placeholders such as ${“NAME”} to customize the messages</li>
<li>Create campaigns and get delivery report in the same spreadsheet</li>
<li>And all other benefits that Google Spreadsheet brings you!</li>
</ul>
<p>&#160;</p>
<h2>How to use?</h2>
<p>To use, simple open up this <a href="http://bit.ly/qFQRRQ">spreadsheet template</a> and make a copy.</p>
<p>To make a copy, go to File &gt; Make a copy. If the options is disabled, logout and login with your Gmail account.</p>
<p>Enter the mobile number and SMS messages in the campaign sheet. Once you are ready to blast the SMS, press ACTIONS &gt; Send SMS at the top menu.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2011/08/sms-spreader-run-sms-campaigns-using-google-spreadsheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone tracks your location. See it on map yourself.</title>
		<link>http://blog.just2us.com/2011/04/iphone-tracks-your-location-see-it-on-map-yourself/</link>
		<comments>http://blog.just2us.com/2011/04/iphone-tracks-your-location-see-it-on-map-yourself/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 05:30:00 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://just2us.com/2011/04/iphone-tracks-your-location-see-it-on-map-yourself/</guid>
		<description><![CDATA[
			
				
			
		
It was recently revealed by 2 researchers that iPhone is secretly tracking where you go!
Download this Mac app, iPhone Tracker, which will read a file stored on your Mac when you sync your iPhone. Download it here, unzip and simply open the app to reveal.

It was kind of fun for me to see where I [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F04%2Fiphone-tracks-your-location-see-it-on-map-yourself%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F04%2Fiphone-tracks-your-location-see-it-on-map-yourself%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>It was recently revealed by 2 researchers that iPhone is secretly tracking where you go!</p>
<p>Download this Mac app, <a href="http://petewarden.github.com/iPhoneTracker/">iPhone Tracker</a>, which will read a file stored on your Mac when you sync your iPhone. <a href="http://github.com/petewarden/iPhoneTracker/zipball/master">Download it here</a>, unzip and simply open the app to reveal.</p>
<p><a href="http://just2us.com/site/wp-content/uploads/2011/04/alltime-singapore.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="alltime-singapore" border="0" alt="alltime-singapore" src="http://just2us.com/site/wp-content/uploads/2011/04/alltime-singapore_thumb.png" width="631" height="481" /></a></p>
<p>It was kind of fun for me to see where I have been in the last 6 months. Basically everywhere in Singapore. Ah, but not Pulau Ubin.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2011/04/iphone-tracks-your-location-see-it-on-map-yourself/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to identify fake reviews</title>
		<link>http://blog.just2us.com/2011/03/how-to-identify-fake-reviews/</link>
		<comments>http://blog.just2us.com/2011/03/how-to-identify-fake-reviews/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 06:06:07 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[appstore]]></category>

		<guid isPermaLink="false">http://just2us.com/?p=577</guid>
		<description><![CDATA[
			
				
			
		
App Store reviews play a very important role in a customer’s decision to download an app.
As such, it is very common for the developers to write “reviews” for themselves.
I was prompted to write this article when @mugunthkumar mentioned “the reviews looked like insider job”.

 
 
I took a look and is very sure it is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F03%2Fhow-to-identify-fake-reviews%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F03%2Fhow-to-identify-fake-reviews%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>App Store reviews play a very important role in a customer’s decision to download an app.</p>
<p>As such, it is very common for the developers to write “reviews” for themselves.</p>
<p>I was prompted to write this article when <a href="http://twitter.com/#!/mugunthkumar/status/43614396039180288">@mugunthkumar mentioned “the reviews looked like insider job”</a>.</p>
<p><img title="WheresApp tweet reply" src="http://just2us.com/site/wp-content/uploads/2011/03/WheresApp-tweet-reply6.png" alt="" width="500" height="248" /><a href="http://just2us.com/site/wp-content/uploads/2011/03/WheresApp-SG-reviews.png"><br />
 </a><br />
 <a href="http://just2us.com/site/wp-content/uploads/2011/03/WheresApp-SG-reviews.png"></a></p>
<p>I took a look and is very sure it is fake reviews, generated by <a href="http://itunes.apple.com/sg/app/wheresapp-sg/id421363014?mt=8">Singtel Idea Factory</a>.</p>
<p>These are the characteristics of fake reviews that you will be able to identify with <a href="http://itunes.apple.com/sg/app/wheresapp-sg/id421363014?mt=8">WheresApp SG</a>:</p>
<ul>
<li>All ratings are 5 stars </li>
<li>Number of reviews = number of ratings </li>
<li>Reviews all on the same date and close to release date </li>
<li>Suspicion reviews voted helpful </li>
<li>Overdose of exclamation marks </li>
<li>Same writing style eg. First letter uppercase, title style </li>
<li>Mentioning functions similar to app description </li>
<li>Reviewers have only reviewed that 1 app in their lifetime </li>
<li>Reviewers gave a lousy 1 star review to competitor’s app </li>
</ul>
<p style="text-align: left;">With those pointers in mind, you know not to trust the review when you encounter one. And not waste that $1.99.</p>
<p style="text-align: left;"><a href="http://just2us.com/site/wp-content/uploads/2011/03/WheresApp-SG-reviews.png"> <img class="alignnone" title="WheresApp SG reviews" src="http://just2us.com/site/wp-content/uploads/2011/03/WheresApp-SG-reviews.png" alt="" width="500" height="665" /></a> <br />
 All 5 stars, reviewed on same day (with no further reviews), lots of !!, title styles with “app”.</p>
<p><a href="http://just2us.com/site/wp-content/uploads/2011/03/Gumuch-review.png"><img class="aligncenter size-full wp-image-582" title="Gumuch review" src="http://just2us.com/site/wp-content/uploads/2011/03/Gumuch-review.png" alt="" width="400" height="176" /></a> <br />
 Reviewer only reviewed 1 app.</p>
<p><a href="http://just2us.com/site/wp-content/uploads/2011/03/Widgetfun-review.png"><img class="aligncenter size-full wp-image-583" title="Widgetfun review" src="http://just2us.com/site/wp-content/uploads/2011/03/Widgetfun-review.png" alt="" width="400" height="360" /></a> <br />
 Reviewed gave <a href="http://itunes.apple.com/sg/app/my-movies-m1/id383832237?mt=8">M1’s My Movies</a> (competitor to Singtel) a 1 star app (when the app averages 3.5 stars).</p>
<p><em>Disclaimer: As a developer myself, I admit I have written my own “reviews”, but mildly, and smartly.</em></p>
<div><span style="color: #0000ee; -webkit-text-decorations-in-effect: underline;"><br />
 </span></div>
<div><span style="color: #0000ee; -webkit-text-decorations-in-effect: underline;"><br />
 </span></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2011/03/how-to-identify-fake-reviews/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Developing World, by Fredrik H&#228;r&#233;n</title>
		<link>http://blog.just2us.com/2010/11/the-developing-world-by-fredrik-hrn/</link>
		<comments>http://blog.just2us.com/2010/11/the-developing-world-by-fredrik-hrn/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 02:03:36 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[books]]></category>

		<guid isPermaLink="false">http://just2us.com/?p=551</guid>
		<description><![CDATA[
			
				
			
		
The Developing World is a book by Fredrik Härén.
If you belong to a developed country, this book provokes you to “wake up!” and realize how fast the developing country is catching up.
If you belong to a developing country, this books shows you the advantage that you have over the developed country, and urge you to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2010%2F11%2Fthe-developing-world-by-fredrik-hrn%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2010%2F11%2Fthe-developing-world-by-fredrik-hrn%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://astore.amazon.com/jus085-20/detail/B00439H4NA">The Developing World</a> is a book by <a href="http://www.theideabook.org">Fredrik Härén</a>.</p>
<p>If you belong to a <strong>developed country</strong>, this book provokes you to “wake up!” and realize how fast the developing country is catching up.</p>
<p>If you belong to a <strong>developing country</strong>, this books shows you the advantage that you have over the developed country, and urge you to outrun them.</p>
<p><a href="http://astore.amazon.com/jus085-20/detail/B00439H4NA"><img src="http://ecx.images-amazon.com/images/I/51o-%2B5cxmbL._SL210_.jpg" alt="" /></a></p>
<p>In the last pages of the book, there is a manifesto from the perspective of a developing world. Must watch!</p>
<p><br class="spacer_" /></p>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:0c64f3ba-df09-41ee-a289-4134719759e2" class="wlWriterEditableSmartContent" style="margin: 0px; display: inline; float: none; padding: 0px;">
<div>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="595" height="334" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/PdYNxvWDRHY?hl=en&amp;hd=1" /><embed type="application/x-shockwave-flash" width="595" height="334" src="http://www.youtube.com/v/PdYNxvWDRHY?hl=en&amp;hd=1"></embed></object>
</div>
</div>
<p><br class="spacer_" /></p>
<p>Lifting one of the memorable paragraph in the book:</p>
<blockquote><p>“I never plan”  <br />
 &#8211; Jack Ma, Founder of alibaba.com</p>
<p>If 2 people compete in a race and one is planning to get out of bed and put his shoe on, while the other is already running, then the person will come first.</p>
<p>I just mean that the orienteer who is forever looking at the map will not win.</p>
<p>The winner is the one who runs fastest in the right direction while looking at the map once in a while to make sure he is running in the right way.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2010/11/the-developing-world-by-fredrik-hrn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile ATM &#8211; An Idea for Paypal X Developer Challenge</title>
		<link>http://blog.just2us.com/2010/07/mobile-atm-an-idea-for-paypal-x-developer-challenge/</link>
		<comments>http://blog.just2us.com/2010/07/mobile-atm-an-idea-for-paypal-x-developer-challenge/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 17:30:53 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[paypal]]></category>

		<guid isPermaLink="false">http://just2us.com/2010/07/mobile-atm-an-idea-for-paypal-x-developer-challenge/</guid>
		<description><![CDATA[
			
				
			
		
I was out jogging the other day.
At the end of my run, I wanted to buy a drink, but I soon realized that I have forgotten to bring along cash with me! I have my iPhone with me, but can it pay for my drinks?
I started to think of solutions..
Thinking: If everyone is a mobile [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2010%2F07%2Fmobile-atm-an-idea-for-paypal-x-developer-challenge%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2010%2F07%2Fmobile-atm-an-idea-for-paypal-x-developer-challenge%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I was out jogging the other day.</p>
<p>At the end of my run, I wanted to buy a drink, but I soon realized that I have forgotten to bring along cash with me! I have my iPhone with me, but can it pay for my drinks?</p>
<p>I started to think of solutions..</p>
<p>Thinking: If everyone is a mobile ATM, and I could use my phone to transfer money electronically to these mobile ATM, it will be great! As long as they could “dispense” the money, I would not mind paying a commission fee for the service.</p>
<p>Not bad an idea.. Hence I am submitting it for <a href="https://www.x.com/community/ppx/devchallenge">Paypal X Developer Challenge</a>. </p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="https://www.x.com/servlet/JiveServlet/downloadBody/2282-102-1-2553/dev-challenge-2010.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2010/07/mobile-atm-an-idea-for-paypal-x-developer-challenge/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Singtel&#8217;s Advertisement for Galaxy S is Inaccurate..</title>
		<link>http://blog.just2us.com/2010/07/singtels-advertisement-for-galaxy-s-is-inaccurate/</link>
		<comments>http://blog.just2us.com/2010/07/singtels-advertisement-for-galaxy-s-is-inaccurate/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 14:41:35 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[SG Toto]]></category>
		<category><![CDATA[singtel]]></category>

		<guid isPermaLink="false">http://just2us.com/2010/07/singtels-advertisement-for-galaxy-s-is-inaccurate/</guid>
		<description><![CDATA[
			
				
			
		
On a full page advertisement for Samsung Galaxy S in Straits Times today:
 

I am happy to find SG Toto as one of the app that works for the Android phone.
Great.
But wait, I don’t remember releasing the app for Android..
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2010%2F07%2Fsingtels-advertisement-for-galaxy-s-is-inaccurate%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2010%2F07%2Fsingtels-advertisement-for-galaxy-s-is-inaccurate%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>On a full page advertisement for Samsung Galaxy S in Straits Times today:</p>
<p><a href="http://just2us.com/site/wp-content/uploads/2010/07/singteladwithsgtotoandroid.jpg"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="singtel-ad-with-sg-toto-android" border="0" alt="singtel-ad-with-sg-toto-android" src="http://just2us.com/site/wp-content/uploads/2010/07/singteladwithsgtotoandroid_thumb.jpg" width="404" height="304" /></a> </p>
</p>
<p>I am happy to find <a href="http://just2us.com/2009/05/sg-toto/">SG Toto</a> as one of the app that works for the Android phone.</p>
<p>Great.</p>
<p>But wait, I don’t remember releasing the app for Android..</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2010/07/singtels-advertisement-for-galaxy-s-is-inaccurate/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

