<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Sandalian.com</title>
	
	<link>http://sandalian.com</link>
	<description>Blog of Yeni Setiawan: Indonesian blogger, web developer and Opera browser user.</description>
	<lastBuildDate>Sat, 24 Jul 2010 12:32:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/sandaliandotcom" /><feedburner:info uri="sandaliandotcom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>sandaliandotcom</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Auto Retweet Bot for Twitter</title>
		<link>http://feedproxy.google.com/~r/sandaliandotcom/~3/gcUcfCCNz00/auto-retweet-bot-for-twitter.html</link>
		<comments>http://sandalian.com/php/auto-retweet-bot-for-twitter.html#comments</comments>
		<pubDate>Sat, 24 Jul 2010 12:32:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[auto retweet]]></category>
		<category><![CDATA[bot]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[retweet]]></category>
		<category><![CDATA[tweet]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://sandalian.com/?p=278</guid>
		<description><![CDATA[This simple tutorial will show you how to create a simple (ro)bot that will re-tweet (RT) any particular tweets related to your search results in Twitter. In this example, my bot will re-tweet any tweet that contain &#8220;wahihi&#8221; word, so I name it Kingdom of Wahihi. Before we start, we need following requirements: Twitter account [...]]]></description>
			<content:encoded><![CDATA[<p>This simple tutorial will show you how to create a simple (ro)bot that will re-tweet (RT) any particular tweets related to your search results in Twitter. In this example, my bot will re-tweet any tweet that contain &#8220;wahihi&#8221; word, so I name it <a href="http://twitter.com/kingdomofwahihi">Kingdom of Wahihi</a>.</p>
<p>Before we start, we need following requirements:</p>
<ul>
<li><strong>Twitter account</strong><br />
Yes, the bot needs its username and password.</li>
<li><strong>PHP interpreter</strong><br />
You can put this script in your own machine or any web hosting services that supports PHP.</li>
<li><strong>Cron Job</strong><br />
Cron is an application to execute a job (application/program) in schedule. Available on mostly any web hosting services.</li>
</ul>
<p>As replacement for Cron Job, you can manually execute the script by visiting the page (open the script using web browser).</p>
<p>Step one, create the bot. I&#8217;ts a PHP script, if you&#8217;re an alien and never heard of this programming language before, I recommend you to skip this page and visit my other stories shown in the sidebar.</p>
<p>Let&#8217;s start with declaration of username and password of your Twitter account:</p>
<pre name="code" class="php">&lt;?php
$user = 'kingdomofwahihi';
$pass = 'password';
?&gt;
</pre>
<p>Then grab the keyword:</p>
<pre name="code" class="php">&lt;?php
$search = "http://search.twitter.com/search.atom?q=wahihi";
$xml_source = file_get_contents($search);
$x = simplexml_load_string($xml_source);
?&gt;</pre>
<p>Above script will fetch search results of &#8220;wahihi&#8221; from Twitter&#8217;s search. The output from Twitter is in Atom (XML) format, so it&#8217;s easier for us to read the data using simplexml_load_string() function.</p>
<p>Next, extract the data and retweet them:</p>
<pre name="code" class="php">&lt;?php
foreach($x-&gt;entry as $item){
   // part one
   $author_name = $item-&gt;author-&gt;name;
   list($name, $mbuh) = explode (" ",$author_name);
   $author = trim($name);
   $msg = 'RT @'.$author. ': ' .$item-&gt;title;

   // part two
   $out = "POST http://twitter.com/statuses/update.json HTTP/1.1\r\n"
   ."Host: twitter.com\r\n"
   ."Authorization: Basic ".base64_encode ($user.':'.$pass)."\r\n"
   ."Content-type: application/x-www-form-urlencoded\r\n"
   ."Content-length: ".strlen ("status=$msg")."\r\n"
   ."Connection: Close\r\n\r\n"
   ."status=$msg";

   // part three
   $fp = fsockopen ('twitter.com', 80);
   fwrite ($fp, $out);
   fclose ($fp);
}
?&gt;
</pre>
<p>I divide above lines of code into three parts because they have different task. Part one, the bot will grab author&#8217;s name/username and what he/she tweeted then join them into one variable. And add a RT sign as a re-tweet mark.</p>
<p>Part two, we are preparing the variable that we will sent to Twitter&#8217;s server, it contains raw HTTP header. I know this bot is gross, but is robust <img src='http://sandalian.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Part three, open socket to Twitter&#8217;s server on port 80 then send the raw HTTP header we have prepared on part two. Now check Twitter to see if your bot is successful.</p>
<p>Leave any comment if you have any questions, but question about how to execute the script won&#8217;t be answered :p</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-german">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Auto+Retweet+Bot+for+Twitter+-+http://su.pr/194kIx&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://sandalian.com/php/auto-retweet-bot-for-twitter.html&amp;title=Auto+Retweet+Bot+for+Twitter" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Auto+Retweet+Bot+for+Twitter&amp;body=Link: http://sandalian.com/php/auto-retweet-bot-for-twitter.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20simple%20tutorial%20will%20show%20you%20how%20to%20create%20a%20simple%20%28ro%29bot%20that%20will%20re-tweet%20%28RT%29%20any%20particular%20tweets%20related%20to%20your%20search%20results%20in%20Twitter.%20In%20this%20example%2C%20my%20bot%20will%20re-tweet%20any%20tweet%20that%20contain%20%22wahihi%22%20word%2C%20so%20I%20name%20it%20Kingdom%20of%20Wahihi.%0D%0ABefore%20we%20start%2C%20we%20need%20following%20r" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fsandalian.com%2Fphp%2Fauto-retweet-bot-for-twitter.html&amp;t=Auto+Retweet+Bot+for+Twitter" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://sandalian.com/php/auto-retweet-bot-for-twitter.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://sandalian.com/php/auto-retweet-bot-for-twitter.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://sandalian.com/php/auto-retweet-bot-for-twitter.html</feedburner:origLink></item>
		<item>
		<title>Wild Fruit On The Roadside</title>
		<link>http://feedproxy.google.com/~r/sandaliandotcom/~3/MxIy6MhpGNo/wild-fruit-on-the-roadside.html</link>
		<comments>http://sandalian.com/daily/wild-fruit-on-the-roadside.html#comments</comments>
		<pubDate>Fri, 25 Jun 2010 20:59:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily]]></category>
		<category><![CDATA[daily]]></category>
		<category><![CDATA[fruits]]></category>
		<category><![CDATA[panoramio]]></category>
		<category><![CDATA[wild fruits]]></category>

		<guid isPermaLink="false">http://sandalian.com/?p=272</guid>
		<description><![CDATA[It was early morning and I was walking from the town into my house, it&#8217;s about 30 minutes walking distance. In the middle of the trip and after the sunrise, I saw this fruit on the roadside. I didn&#8217;t know what fruit is that. It looked delicious, remind me of the wild marquisa I found [...]]]></description>
			<content:encoded><![CDATA[<p>It was early morning and I was walking from the town into my house, it&#8217;s about 30 minutes walking distance. In the middle of the trip and after the sunrise, I saw this fruit on the roadside.</p>
<p><a href="http://www.panoramio.com/photo/37174049"><img src="http://commondatastorage.googleapis.com/static.panoramio.com/photos/medium/37174049.jpg" alt="Wild fruit and its leaves" /></a></p>
<p>I didn&#8217;t know what fruit is that. It looked delicious, remind me of the wild marquisa I found on the riverside some years ago &#8211;when I was a child. Before I picked the fruit to try how is the taste, I took some pictures of that fruit.</p>
<p>Later, I peeled that strange fruit carefully and found a disgusting form of the pulp. Without trying its taste, I knew that no way this fruit will be delicious.</p>
<p><a href="http://www.panoramio.com/photo/37174058"><img src="http://commondatastorage.googleapis.com/static.panoramio.com/photos/medium/37174058.jpg" alt="disgusting pulp" /></a></p>
<p>But I couldn&#8217;t resist to try it, so I licked its black pulp and there&#8217;s almost no taste.  Just cold and tasteless so I threw it away and continue my walk.</p>
<p><a href="http://www.panoramio.com/photo/37174066"><img src="http://commondatastorage.googleapis.com/static.panoramio.com/photos/medium/37174066.jpg" alt="Soft fur on its rind" /></a></p>
<p>I use Panoramio to publish those images, if you wonder where did I get that fruit, you can click on the image(s) above and there is a map (Google Maps) that show you where the pictures were taken.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-german">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Wild+Fruit+On+The+Roadside+-+http://su.pr/AZgCtn&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://sandalian.com/daily/wild-fruit-on-the-roadside.html&amp;title=Wild+Fruit+On+The+Roadside" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Wild+Fruit+On+The+Roadside&amp;body=Link: http://sandalian.com/daily/wild-fruit-on-the-roadside.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A It%20was%20early%20morning%20and%20I%20was%20walking%20from%20the%20town%20into%20my%20house%2C%20it%27s%20about%2030%20minutes%20walking%20distance.%20In%20the%20middle%20of%20the%20trip%20and%20after%20the%20sunrise%2C%20I%20saw%20this%20fruit%20on%20the%20roadside.%0D%0A%0D%0A%0D%0A%0D%0AI%20didn%27t%20know%20what%20fruit%20is%20that.%20It%20looked%20delicious%2C%20remind%20me%20of%20the%20wild%20marquisa%20I%20found%20on%20the%20r" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fsandalian.com%2Fdaily%2Fwild-fruit-on-the-roadside.html&amp;t=Wild+Fruit+On+The+Roadside" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://sandalian.com/daily/wild-fruit-on-the-roadside.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://sandalian.com/daily/wild-fruit-on-the-roadside.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://sandalian.com/daily/wild-fruit-on-the-roadside.html</feedburner:origLink></item>
		<item>
		<title>Insert French Characters Into MySQL</title>
		<link>http://feedproxy.google.com/~r/sandaliandotcom/~3/nYXcrYQ_UgM/insert-french-characters-into-mysql.html</link>
		<comments>http://sandalian.com/php/insert-french-characters-into-mysql.html#comments</comments>
		<pubDate>Thu, 03 Jun 2010 22:20:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[french characters]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql french]]></category>
		<category><![CDATA[non english]]></category>

		<guid isPermaLink="false">http://sandalian.com/?p=266</guid>
		<description><![CDATA[I was developing a bi-lingual website, so my custom CMS should be able to accept and display both English and non English characters. For English characters, it&#8217;s a piece of cake. But for French characters, I have pulling my hair for days to find out what went wrong with my script. I have set the [...]]]></description>
			<content:encoded><![CDATA[<p>I was developing a bi-lingual website, so my custom CMS should be able to accept and display both English and non English characters. For English characters, it&#8217;s a piece of cake. But for French characters, I have pulling my hair for days to find out what went wrong with my script.</p>
<p>I have set the database to use UTF-8 encoding, but every time I inserted the text it&#8217;s messed up. French characters become a horror, unreadable for everyone.</p>
<p>After several days &#8211;literally&#8211; I have found the solution: I <strong>must</strong> set the character set into UTF-8 right before I insert the data!</p>
<pre name="code" class="php">
< ?php
mysql_query("SET CHARACTER SET utf8"); //<--the key!
mysql_query("insert into data values ('$french_chars')");
?>
</pre>
<p><q>SET CHARACTER SET utf8</q> will tell MySQL to store the inserted data using UTF-8 encoding. And it works for me.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-german">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Insert+French+Characters+Into+MySQL+-+http://su.pr/5M0lWd&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://sandalian.com/php/insert-french-characters-into-mysql.html&amp;title=Insert+French+Characters+Into+MySQL" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Insert+French+Characters+Into+MySQL&amp;body=Link: http://sandalian.com/php/insert-french-characters-into-mysql.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20was%20developing%20a%20bi-lingual%20website%2C%20so%20my%20custom%20CMS%20should%20be%20able%20to%20accept%20and%20display%20both%20English%20and%20non%20English%20characters.%20For%20English%20characters%2C%20it%27s%20a%20piece%20of%20cake.%20But%20for%20French%20characters%2C%20I%20have%20pulling%20my%20hair%20for%20days%20to%20find%20out%20what%20went%20wrong%20with%20my%20script.%0D%0A%0D%0AI%20have%20set%20the" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fsandalian.com%2Fphp%2Finsert-french-characters-into-mysql.html&amp;t=Insert+French+Characters+Into+MySQL" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://sandalian.com/php/insert-french-characters-into-mysql.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://sandalian.com/php/insert-french-characters-into-mysql.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://sandalian.com/php/insert-french-characters-into-mysql.html</feedburner:origLink></item>
		<item>
		<title>Wrong mail quota in CPanel</title>
		<link>http://feedproxy.google.com/~r/sandaliandotcom/~3/9PAbmi3Y83A/wrong-mail-quota-in-cpanel.html</link>
		<comments>http://sandalian.com/technical-stuffs/wrong-mail-quota-in-cpanel.html#comments</comments>
		<pubDate>Sat, 08 May 2010 20:42:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical Stuffs]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[disk quota]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email quota]]></category>
		<category><![CDATA[maildirsize]]></category>

		<guid isPermaLink="false">http://sandalian.com/?p=259</guid>
		<description><![CDATA[Today I found my CPanel displays wrong disk quota for an email account. It shows 58/100 MB (58 MB used, of 100 MB preserved) while actually the mailbox is empty. I have checked with du -sh command (a command to check disk usage) and it returned 100 KB or something, so there must be something [...]]]></description>
			<content:encoded><![CDATA[<p>Today I found my CPanel displays wrong disk quota for an email account. It shows 58/100 MB (58 MB used, of 100 MB preserved) while actually the mailbox is empty. </p>
<p>I have checked with <q>du -sh</q> command (a command to check disk usage) and it returned 100 KB or something, so there must be something wrong.</p>
<p>After googling around, I got some trick to solve this problem. Perform this action from shell/SSH or simply using file manager in CPanel:</p>
<ol>
<li>Go to <q>/home/usercpanel/mail/domain.com/emailaccount/</q>.</li>
<li>Delete file named <strong>maildirsize</strong>, this file stores disk usage information</li>
<li>Change the number of disk quota for that email account from CPanel (inside menu Email Accounts), it will regenerate a new maildirsize file.</li>
</ol>
<p>Refresh your browser and now you should see the correct disk quota for that email account.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-german">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Wrong+mail+quota+in+CPanel+-+http://su.pr/6veOrk&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://sandalian.com/technical-stuffs/wrong-mail-quota-in-cpanel.html&amp;title=Wrong+mail+quota+in+CPanel" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Wrong+mail+quota+in+CPanel&amp;body=Link: http://sandalian.com/technical-stuffs/wrong-mail-quota-in-cpanel.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Today%20I%20found%20my%20CPanel%20displays%20wrong%20disk%20quota%20for%20an%20email%20account.%20It%20shows%2058%2F100%20MB%20%2858%20MB%20used%2C%20of%20100%20MB%20preserved%29%20while%20actually%20the%20mailbox%20is%20empty.%20%0D%0A%0D%0AI%20have%20checked%20with%20du%20-sh%20command%20%28a%20command%20to%20check%20disk%20usage%29%20and%20it%20returned%20100%20KB%20or%20something%2C%20so%20there%20must%20be%20something%20wro" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fsandalian.com%2Ftechnical-stuffs%2Fwrong-mail-quota-in-cpanel.html&amp;t=Wrong+mail+quota+in+CPanel" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://sandalian.com/technical-stuffs/wrong-mail-quota-in-cpanel.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://sandalian.com/technical-stuffs/wrong-mail-quota-in-cpanel.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://sandalian.com/technical-stuffs/wrong-mail-quota-in-cpanel.html</feedburner:origLink></item>
		<item>
		<title>SmadAV – At a Glance</title>
		<link>http://feedproxy.google.com/~r/sandaliandotcom/~3/oszt1L5ncvI/smadav-at-a-glance.html</link>
		<comments>http://sandalian.com/reviews/smadav-at-a-glance.html#comments</comments>
		<pubDate>Thu, 15 Apr 2010 23:57:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[smadav]]></category>
		<category><![CDATA[trojan]]></category>
		<category><![CDATA[virii]]></category>
		<category><![CDATA[virus]]></category>

		<guid isPermaLink="false">http://sandalian.com/?p=252</guid>
		<description><![CDATA[SmadAV is a local antivirus made by Indonesia youths that I&#8217;ve heard since some times ago but just now I get the chance to give it a try. Here is the screenshoot,  very simple with all tools in a single modal dialog (click to zoom the pic). The interface is likely different than any other [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.smadav.net/">SmadAV</a> is a local antivirus made by Indonesia youths that I&#8217;ve heard since some times ago but just now I get the chance to give it a try. Here is the screenshoot,  very simple with all tools in a single modal dialog (click to zoom the pic).</p>
<p><a href="http://sandalian.com/wp-content/uploads/2010/04/cap-5615.png"><img class="alignnone size-medium wp-image-253" title="cap-5615" src="http://sandalian.com/wp-content/uploads/2010/04/cap-5615-300x223.png" alt="" width="300" height="223" /></a></p>
<p>The interface is likely different than any other antivirus, very simple and contains all what we need when the computer is under attack by the viruses.</p>
<p>Some viruses will disable access to msconfig, regedit and task manager that make us difficult to restore the computer. And <a href="http://www.smadav.net/">SmadAV</a> provides button to access msconfig, regedit and task manager in a single click. Cool!</p>
<p>I would like to say that <a href="http://www.smadav.net/">SmadAV</a> is made by experienced people, I mean, experienced with the virus problem.  Maybe that&#8217;s why they include all the tools to kill virus in a single application.  It&#8217;s like having a swiss tool knife for all your virus problems.</p>
<p>Although I haven&#8217;t use SmadAV on my daily basis, it&#8217;s a recomended one. They said that after give some donations, we can get a license key to unlock some more features, like faster scanning and automatic updates.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-german">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=SmadAV+-+At+a+Glance+-+http://su.pr/6pKTIo&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://sandalian.com/reviews/smadav-at-a-glance.html&amp;title=SmadAV+-+At+a+Glance" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=SmadAV+-+At+a+Glance&amp;body=Link: http://sandalian.com/reviews/smadav-at-a-glance.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A SmadAV%20is%20a%20local%20antivirus%20made%20by%20Indonesia%20youths%20that%20I%27ve%20heard%20since%20some%20times%20ago%20but%20just%20now%20I%20get%20the%20chance%20to%20give%20it%20a%20try.%20Here%20is%20the%20screenshoot%2C%20%C2%A0very%20simple%20with%20all%20tools%20in%20a%20single%20modal%20dialog%20%28click%20to%20zoom%20the%20pic%29.%0D%0A%0D%0A%0D%0A%0D%0AThe%20interface%20is%20likely%20different%20than%20any%20other%20an" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fsandalian.com%2Freviews%2Fsmadav-at-a-glance.html&amp;t=SmadAV+-+At+a+Glance" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://sandalian.com/reviews/smadav-at-a-glance.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://sandalian.com/reviews/smadav-at-a-glance.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://sandalian.com/reviews/smadav-at-a-glance.html</feedburner:origLink></item>
		<item>
		<title>Create PDF Files For Free</title>
		<link>http://feedproxy.google.com/~r/sandaliandotcom/~3/kU4jRjO2gZ4/create-pdf-files-for-free.html</link>
		<comments>http://sandalian.com/technical-stuffs/create-pdf-files-for-free.html#comments</comments>
		<pubDate>Sat, 10 Apr 2010 22:43:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical Stuffs]]></category>
		<category><![CDATA[free pdf]]></category>
		<category><![CDATA[pdf converter]]></category>
		<category><![CDATA[pdf printer]]></category>

		<guid isPermaLink="false">http://sandalian.com/?p=246</guid>
		<description><![CDATA[I was wondering why many people still using Adobe Acrobat for creating PDF files from their documents. It&#8217;s bloated &#8211;or you can say my computer is too old&#8211; and of course expensive! Some minutes ago I&#8217;ve checked the price on their website, it costs US$ 299. Why don&#8217;t people find an alternative PDF-maker software which [...]]]></description>
			<content:encoded><![CDATA[<p>I was wondering why many people still using <a href="http://www.adobe.com/products/acrobat/">Adobe Acrobat</a> for creating PDF files from their documents. It&#8217;s bloated &#8211;or you can say my computer is too old&#8211; and of course expensive! Some minutes ago I&#8217;ve checked the price on their website, it costs US$ 299.</p>
<p>Why don&#8217;t people find an alternative PDF-maker software which is free and lightweight? I know that you can get any serial number from Internet for <a href="http://www.adobe.com/products/acrobat/">Adobe Acrobat</a> to turn that pricey software into a free one. But hey, it&#8217;s like stealing from a kid&#8217;s pocket.</p>
<p>A few days ago &#8211;when I needed a software to convert my documents into PDFs&#8211; I found <a href="http://www.dopdf.com/">doPDF</a> which is free and lightweight. And most of all, it doesn&#8217;t require any Ghostscript installation just like any other PDF printers.</p>
<p><a href="http://sandalian.com/wp-content/uploads/2010/04/cap-0109.png"><img class="alignnone size-full wp-image-247" title="cap-0109" src="http://sandalian.com/wp-content/uploads/2010/04/cap-0109.png" alt="cap-0109" width="438" height="327" /></a></p>
<p>Perhaps it doesn&#8217;t have all the features you want and requires you to upgrade to the paid version but it&#8217;s enough for me. Awesome PDF printer.</p>
<p>This way I thank to <a href="http://www.dopdf.com/">doPDF</a> developer(s) for their great work.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-german">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Create+PDF+Files+For+Free+-+http://su.pr/1L42m9&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://sandalian.com/technical-stuffs/create-pdf-files-for-free.html&amp;title=Create+PDF+Files+For+Free" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Create+PDF+Files+For+Free&amp;body=Link: http://sandalian.com/technical-stuffs/create-pdf-files-for-free.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20was%20wondering%20why%20many%20people%20still%20using%20Adobe%20Acrobat%20for%20creating%20PDF%20files%20from%20their%20documents.%20It%27s%20bloated%20--or%20you%20can%20say%20my%20computer%20is%20too%20old--%20and%20of%20course%20expensive%21%20Some%20minutes%20ago%20I%27ve%20checked%20the%20price%20on%20their%20website%2C%20it%20costs%20US%24%20299.%0D%0A%0D%0AWhy%20don%27t%20people%20find%20an%20alternative%20P" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fsandalian.com%2Ftechnical-stuffs%2Fcreate-pdf-files-for-free.html&amp;t=Create+PDF+Files+For+Free" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://sandalian.com/technical-stuffs/create-pdf-files-for-free.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://sandalian.com/technical-stuffs/create-pdf-files-for-free.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://sandalian.com/technical-stuffs/create-pdf-files-for-free.html</feedburner:origLink></item>
		<item>
		<title>Redirect Old URLs to New URLs</title>
		<link>http://feedproxy.google.com/~r/sandaliandotcom/~3/CM3RfjU7IlM/redirect-old-url-to-new-url.html</link>
		<comments>http://sandalian.com/technical-stuffs/redirect-old-url-to-new-url.html#comments</comments>
		<pubDate>Sat, 03 Apr 2010 11:54:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical Stuffs]]></category>
		<category><![CDATA[301]]></category>
		<category><![CDATA[302]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://sandalian.com/?p=240</guid>
		<description><![CDATA[When we have a completely new website and uses different CMS, there will be old URLs that already spread everywhere on the Net. Discarding old URLs is not an option because we will lost visitors from search engines. So we must redirect all old URLs into new URLs. Using redirect in .htaccess is great, but [...]]]></description>
			<content:encoded><![CDATA[<p>When we have a completely new website and uses different CMS, there will be old URLs that already spread everywhere on the Net. Discarding old URLs is not an option because we will lost visitors from search engines. So we must redirect all old URLs into new URLs.</p>
<p>Using redirect in .htaccess is great, but when your old URLs contain question mark, most likely it will fail to redirect. </p>
<p>Following code will work:</p>
<pre name="code" class="html">
redirect 301 /old-url.html http://domain.com/new-url.html
redirect 301 /very-old.html http://domain.com/very-new.html
</pre>
<p>But following code will &#8211;at least in my case&#8211; failed:</p>
<pre name="code" class="html">
redirect 301 /file.php?age=old http://domain.com/new-url.html
redirect 301 /file.php?age=old&#038;id=12 http://domain.com/very-new.html
</pre>
<p>Luckily there&#8217;s 404 directive from Apache using .htaccess. We can mix the power of custom 404 page with PHP to perform this directions stuff. Here&#8217;s how to mix them up:</p>
<p>Create custom 404 page using .htaccess</p>
<pre name="code" class="html">
ErrorDocument 404 /redirect.php
</pre>
<p>Then create file redirect.php with following contents:</p>
<pre name="code" class="php">
< ?php
$req = trim($_SERVER['REQUEST_URI']);
switch($req){
	case "/file.php?age=old":
		$goto = "http://domain.com/new-url.html";
	break;
	case "/file.php?age=old&#038;id=12";
		$goto = "http://domain.com/im-very-new.html";
	break;
	default:
		$goto = "http://domain.com";
}
header ("HTTP/1.1 301 Moved Permanently");
header ("Location: $goto");
?>
</pre>
<p>By this method, old URLs that are no longer exist are forwarded to our custom 404 page (named redirect.php) and that redirect.php will bring visitors to new URLs.</p>
<p>Nice, isn&#8217;t it?</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-german">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Redirect+Old+URLs+to+New+URLs+-+http://su.pr/AF3L2v&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://sandalian.com/technical-stuffs/redirect-old-url-to-new-url.html&amp;title=Redirect+Old+URLs+to+New+URLs" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Redirect+Old+URLs+to+New+URLs&amp;body=Link: http://sandalian.com/technical-stuffs/redirect-old-url-to-new-url.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A When%20we%20have%20a%20completely%20new%20website%20and%20uses%20different%20CMS%2C%20there%20will%20be%20old%20URLs%20that%20already%20spread%20everywhere%20on%20the%20Net.%20Discarding%20old%20URLs%20is%20not%20an%20option%20because%20we%20will%20lost%20visitors%20from%20search%20engines.%20So%20we%20must%20redirect%20all%20old%20URLs%20into%20new%20URLs.%0D%0A%0D%0AUsing%20redirect%20in%20.htaccess%20is%20gr" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fsandalian.com%2Ftechnical-stuffs%2Fredirect-old-url-to-new-url.html&amp;t=Redirect+Old+URLs+to+New+URLs" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://sandalian.com/technical-stuffs/redirect-old-url-to-new-url.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://sandalian.com/technical-stuffs/redirect-old-url-to-new-url.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://sandalian.com/technical-stuffs/redirect-old-url-to-new-url.html</feedburner:origLink></item>
		<item>
		<title>How Many Facebook Users from Indonesia?</title>
		<link>http://feedproxy.google.com/~r/sandaliandotcom/~3/6mW4bfFRUwo/how-many-facebook-users-from-indonesia.html</link>
		<comments>http://sandalian.com/out-of-topics/how-many-facebook-users-from-indonesia.html#comments</comments>
		<pubDate>Wed, 17 Feb 2010 12:37:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Out Of Topics]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[stats]]></category>

		<guid isPermaLink="false">http://sandalian.com/?p=237</guid>
		<description><![CDATA[How many do you think the number of Facebook users from Indonesia? Thank God, Facebook have a nice tool to find out. Practically, you can also see how many lesbians, gays and other cool stats. Only if the users are honest Tweet This! Share this on del.icio.us Email this via Yahoo! Mail Share this on [...]]]></description>
			<content:encoded><![CDATA[<p>How many do you think the number of Facebook users from Indonesia? Thank God, Facebook have a nice tool to find out.</p>
<p><a href="http://sandalian.com/wp-content/uploads/2010/02/fbmember.png"><img src="http://sandalian.com/wp-content/uploads/2010/02/fbmember.png" alt="fbmember" title="fbmember" width="275" height="75" class="alignnone size-full wp-image-238" /></a></p>
<p>Practically, you can also see how many lesbians, gays and other cool stats. Only if the users are honest <img src='http://sandalian.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-german">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+Many+Facebook+Users+from+Indonesia%3F+-+http://su.pr/4Uimq5&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://sandalian.com/out-of-topics/how-many-facebook-users-from-indonesia.html&amp;title=How+Many+Facebook+Users+from+Indonesia%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+Many+Facebook+Users+from+Indonesia%3F&amp;body=Link: http://sandalian.com/out-of-topics/how-many-facebook-users-from-indonesia.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A How%20many%20do%20you%20think%20the%20number%20of%20Facebook%20users%20from%20Indonesia%3F%20Thank%20God%2C%20Facebook%20have%20a%20nice%20tool%20to%20find%20out.%0D%0A%0D%0A%0D%0A%0D%0APractically%2C%20you%20can%20also%20see%20how%20many%20lesbians%2C%20gays%20and%20other%20cool%20stats.%20Only%20if%20the%20users%20are%20honest%20%3AP" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fsandalian.com%2Fout-of-topics%2Fhow-many-facebook-users-from-indonesia.html&amp;t=How+Many+Facebook+Users+from+Indonesia%3F" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://sandalian.com/out-of-topics/how-many-facebook-users-from-indonesia.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://sandalian.com/out-of-topics/how-many-facebook-users-from-indonesia.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://sandalian.com/out-of-topics/how-many-facebook-users-from-indonesia.html</feedburner:origLink></item>
		<item>
		<title>Disposable Email Address</title>
		<link>http://feedproxy.google.com/~r/sandaliandotcom/~3/8RtoYAaFv5w/disposable-email-address.html</link>
		<comments>http://sandalian.com/reviews/disposable-email-address.html#comments</comments>
		<pubDate>Sat, 13 Feb 2010 17:31:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[disposable email]]></category>
		<category><![CDATA[one way mail]]></category>
		<category><![CDATA[quick email]]></category>
		<category><![CDATA[quick inbox]]></category>

		<guid isPermaLink="false">http://sandalian.com/?p=233</guid>
		<description><![CDATA[Some website require us to provide an email address in order to use their service(s), even if we only use their service once in a lifetime. Say you want to download a hardware driver for your computer from a website but they ask you to fill up your email address so they can send you [...]]]></description>
			<content:encoded><![CDATA[<p>Some website require us to provide an email address in order to use their service(s), even if we only use their service once in a lifetime. Say you want to download a hardware driver for your computer from a website but they ask you to fill up your email address so they can send you the download link. Giving your email address away? You don&#8217;t have to.</p>
<p><a href="http://sandalian.com/wp-content/uploads/2010/02/onewaymail.png"><img src="http://sandalian.com/wp-content/uploads/2010/02/onewaymail.png" alt="one way mail" title="one way mail" width="500" height="153" class="alignnone size-medium wp-image-234" /></a></p>
<p>You can use any free <a href="http://onewaymail.com/faq/">disposable email address</a> service such as <a href="http://onewaymail.com">onewaymail.com</a>, it&#8217;s very easy to use. When the website asks your email, simply fill any (yes, any) email address that came into your mind. Let&#8217;s say driver@onewaymail.com. </p>
<p>The next thing you do is visit <a href="http://onewaymail.com"><strong>onewaymail.com</strong></a> and type <q>driver</q> in the field box located at the top page then press Go button. Now you should see an email from the website where you can download the driver.</p>
<p>Piece of cake, isn&#8217;t it?</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-german">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Disposable+Email+Address+-+http://su.pr/20sL7o&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://sandalian.com/reviews/disposable-email-address.html&amp;title=Disposable+Email+Address" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Disposable+Email+Address&amp;body=Link: http://sandalian.com/reviews/disposable-email-address.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Some%20website%20require%20us%20to%20provide%20an%20email%20address%20in%20order%20to%20use%20their%20service%28s%29%2C%20even%20if%20we%20only%20use%20their%20service%20once%20in%20a%20lifetime.%20Say%20you%20want%20to%20download%20a%20hardware%20driver%20for%20your%20computer%20from%20a%20website%20but%20they%20ask%20you%20to%20fill%20up%20your%20email%20address%20so%20they%20can%20send%20you%20the%20download%20lin" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fsandalian.com%2Freviews%2Fdisposable-email-address.html&amp;t=Disposable+Email+Address" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://sandalian.com/reviews/disposable-email-address.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://sandalian.com/reviews/disposable-email-address.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://sandalian.com/reviews/disposable-email-address.html</feedburner:origLink></item>
		<item>
		<title>My first GPS device, iGotU GPS Logger</title>
		<link>http://feedproxy.google.com/~r/sandaliandotcom/~3/BAJwRxl2qr8/my-first-gps-device-igotu-gps-logger.html</link>
		<comments>http://sandalian.com/reviews/my-first-gps-device-igotu-gps-logger.html#comments</comments>
		<pubDate>Thu, 26 Nov 2009 17:38:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://sandalian.com/?p=225</guid>
		<description><![CDATA[A few days ago I received a free giveaway from My Digital Life, a small GPS device: i GotU GPS Logger. I soon opened the package and found the contents are: - GPS device - white strap/belt - data/power cable - CD driver and applications The color is all white, remind me of any Apple&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago I received a free giveaway from <a href="http://mydigitallife.info/">My Digital Life</a>, a small GPS device: <a href="http://www.i-gotu.com/">i GotU GPS Logger</a>.</p>
<p><img style="margin:0 7px 0 0" title="i-GotU GPS Logger" src="http://sandalian.com/wp-content/uploads/2009/11/igotu-225x300.jpg" alt="i-GotU GPS Logger" width="225" height="300" align="left" />I soon opened the package and found the contents are:</p>
<p>- GPS device<br />
- white strap/belt<br />
- data/power cable<br />
- CD driver and applications</p>
<p>The color is all white, remind me of any Apple&#8217;s products and the GPS device is pretty small.  It made sense because the device is used for logging and receiver only, and there&#8217;s only one button for various operation: power on/off, tracking, pairing with bluetooth and else.</p>
<p>The strap helped me to attach GPS logger on my arm, bag, or any place where I want to attach. I also found a USB cable that I can use to charge the battery and transfer log file from GPS into my laptop/PC.</p>
<p>While the CD contains driver and application named <a href="http://www.a-trip.com/download">@Trip PC</a>. With this app I can automatically geotag photos, track my journey and view it on the maps etc.</p>
<p>When I tried to track myself, the <a href="http://twitpic.com/q3nq8">result</a> is pretty good. I can measure how far I go, my speed and altitude. Despite the manual said to put the device directly toward the sky (to gain better satellite signal), it still worked great although I hide the receiver under my jacket.</p>
<p>Now I can&#8217;t wait to go out  for some outdoor activities. A hiking, maybe.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-german">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=My+first+GPS+device%2C+iGotU+GPS+Logger+-+http://su.pr/8yU714&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://sandalian.com/reviews/my-first-gps-device-igotu-gps-logger.html&amp;title=My+first+GPS+device%2C+iGotU+GPS+Logger" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=My+first+GPS+device%2C+iGotU+GPS+Logger&amp;body=Link: http://sandalian.com/reviews/my-first-gps-device-igotu-gps-logger.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A A%20few%20days%20ago%20I%20received%20a%20free%20giveaway%20from%20My%20Digital%20Life%2C%20a%20small%20GPS%20device%3A%20i%20GotU%20GPS%20Logger.%0D%0A%0D%0AI%20soon%20opened%20the%20package%20and%20found%20the%20contents%20are%3A%0D%0A%0D%0A-%20GPS%20device%0D%0A-%20white%20strap%2Fbelt%0D%0A-%20data%2Fpower%20cable%0D%0A-%20CD%20driver%20and%20applications%0D%0A%0D%0AThe%20color%20is%20all%20white%2C%20remind%20me%20of%20any%20Apple%27s%20pr" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fsandalian.com%2Freviews%2Fmy-first-gps-device-igotu-gps-logger.html&amp;t=My+first+GPS+device%2C+iGotU+GPS+Logger" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://sandalian.com/reviews/my-first-gps-device-igotu-gps-logger.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://sandalian.com/reviews/my-first-gps-device-igotu-gps-logger.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://sandalian.com/reviews/my-first-gps-device-igotu-gps-logger.html</feedburner:origLink></item>
	</channel>
</rss>
