<?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>LimeTouch</title>
	<atom:link href="http://limetouch.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://limetouch.com</link>
	<description>Zooming into the Real Darran</description>
	<lastBuildDate>Mon, 08 Feb 2010 02:09:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Search by Post Category without a Plugin</title>
		<link>http://limetouch.com/article/search-by-post-category-without-a-plugin/</link>
		<comments>http://limetouch.com/article/search-by-post-category-without-a-plugin/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 07:31:20 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://limetouch.com/?p=4846</guid>
		<description><![CDATA[The WordPress Search looks through pages and posts. How about just limiting your results to specific post categories? There are many plugins on the repository which does this but there is a way to do that without one too. It is nothing difficult but something you probably didn't realize.]]></description>
			<content:encoded><![CDATA[<p>The WordPress Search looks through pages and posts. How about just limiting your results to specific post categories? There are many plugins on the repository which does this but there is a way to do that without one too. It is nothing difficult but something you probably didn&#8217;t realize.</p>
<h3>Creating the function</h3>
<p>We are going to define a function; <code>search_cat_dropdown()</code> which will return the HTML code required for a dropdown list populated with all the categories with at least a post filed under them.</p>
<p>Copy this snippet of code into your functions.php</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> search_cat_dropdown<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$post_cat</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'cat'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$categories</span> <span style="color: #339933;">=</span> get_categories<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'type=post&amp;hide_empty=true&amp;orderby=name'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$html</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;select name=&quot;cat&quot;&gt;'</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$categories</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$cat</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$html</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">'&lt;option value=&quot;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$cat</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">cat_ID</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&quot;'</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$cat</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">cat_ID</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$post_cat</span><span style="color: #009900;">&#41;</span>
            <span style="color: #000088;">$html</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">' selected'</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$html</span> <span style="color: #339933;">.=</span>  <span style="color: #0000ff;">'&gt;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$cat</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">cat_name</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/option&gt;'</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #000088;">$html</span> <span style="color: #339933;">.=</span>  <span style="color: #0000ff;">'&lt;/select&gt;'</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$html</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Now all that is needed is to call this function at where your search form HTML codes are residing. </p>
<p>Add this  line just before the start of the submit button code for the form.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span>&gt;&lt;?php echo search_cat_dropdown<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; ?&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></pre></div></div>

<p>Just so you know, when searching by category, pages will not be included in the result.</p>
]]></content:encoded>
			<wfw:commentRss>http://limetouch.com/article/search-by-post-category-without-a-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aurora Borealis Dream</title>
		<link>http://limetouch.com/article/aurora-borealis-dream/</link>
		<comments>http://limetouch.com/article/aurora-borealis-dream/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 07:17:29 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[nature]]></category>

		<guid isPermaLink="false">http://limetouch.com/?p=4841</guid>
		<description><![CDATA[I have many dreams, one of them is to see an Aurora Borealis in person and shoot a photograph of it. It is more commonly known as the Northern Lights. You will never find a nature wonder such as this in sunny Singapore. They can be seen in countries located near the North Magnetic Pole.]]></description>
			<content:encoded><![CDATA[<p>I have many dreams, one of them is to see an Aurora Borealis in person and shoot a photograph of it. It is more commonly known as the Northern Lights. You will never find a nature wonder such as this in sunny Singapore. They can be seen in countries located near the North Magnetic Pole.</p>
<p>When I first knew of the existence of such a phenomenon, I was captivated by its beauty and have fallen in love with it ever since. <em>Waterfalls still excite me, just add auroras to the list</em>.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-4844" title="Aurora Borealis - Bear Lake, Alaska" src="http://limetouch.com/media/2010/02/3598596321_6bf464ab33.jpg" alt="Aurora Borealis - Bear Lake, Alaska" width="500" height="313" /><small>By <a title="Link to nick_russill's photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/nickrussill/">nick_russill</a></small></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-4843" title="On the way to Aurora Borealis" src="http://limetouch.com/media/2010/02/3253592368_829b7ed567.jpg" alt="On the way to Aurora Borealis" width="500" height="333" /><small>By <a title="Link to alf07 °,°'s photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/alf07/">alf07 °,°</a></small></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-4842" title="Moonlight Aurora" src="http://limetouch.com/media/2010/02/1394679518_1ad7ed27f2.jpg" alt="Moonlight Aurora" width="500" height="333" /><small>By <a title="Link to blueforce4116's photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/blueforce4116/">blueforce4116</a></small></p>
<p>You can find plenty of amazing <a title="Search results of Aurora Borealis photos on Flickr" href="http://flickr.com/search/?q=aurora%20borealis&amp;w=all">Aurora Borealis pictures on Flickr</a>.</p>
<p>It is a real pity that to see one, you have to go all the way out to places like Greenland and Alaska. It could take many trips before one can actually see them as they do have their occurrences throughout the year.</p>
<p>I envy those living in countries which the Northern Lights circle as the Aurora Borealis is a common sight. People living in the other parts of the world like me will probably not see it unless we specially make an effort to do so.</p>
<p>Well, that is one of the many dreams I have.</p>
]]></content:encoded>
			<wfw:commentRss>http://limetouch.com/article/aurora-borealis-dream/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ankle Injury Follow Up</title>
		<link>http://limetouch.com/article/ankle-injury-follow-up/</link>
		<comments>http://limetouch.com/article/ankle-injury-follow-up/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 07:01:26 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[injury]]></category>

		<guid isPermaLink="false">http://limetouch.com/?p=4839</guid>
		<description><![CDATA[It was deduced as a normal sprain. I was told that <a title="Ankle Injury Layoff" href="http://limetouch.com/article/ankle-injury-layoff/">the pain would be gone in 5 days</a> and that I would be able to walk normally again. None of the sort happened even after an entire week. In fact, the swelling was getting worse so I wasted no time in doing a follow up.]]></description>
			<content:encoded><![CDATA[<p>It was deduced as a normal sprain. I was told that <a title="Ankle Injury Layoff" href="http://limetouch.com/article/ankle-injury-layoff/">the pain would be gone in 5 days</a> and that I would be able to walk normally again. None of the sort happened even after an entire week. In fact, the swelling was getting worse so I wasted no time in doing a follow up.</p>
<p>On a scale of 10, I rated the pain at a range between 6 to 7. You don&#8217;t just feel it at the ankle, but in many different areas of the foot. Even when at a resting position, I can feel the burning pinch. And it hurts.</p>
<p>The first question coming from any medical professional who has seen my foot is whether I have taken an X-Ray or not. Yes, I have already taken one last week.</p>
<p>For a change, I was being assessed and asked to move my right foot through different motions. Quite obviously, there were some I couldn&#8217;t manage due to the excruciating pain. To ease the suffering, I was injected with a painkiller in the rear. Till now I am still feeling the numbness on my right butt cheek. I didn&#8217;t get any of those in my first visit.</p>
<p>A more detailed X-Ray was done, 4 different views of the ankle. I really hate doing them as it puts a huge painful strain due to the angle I am supposed to position my ankle. But it is certain, there is no fracture.</p>
<p>Another 7 days of MC was given, totaling to 12 now. I was referred to an orthopedic specialist and our appointment has been set in a fortnight. In the mean time, I will need to rest and minimize any form of movement. What that means is more time spent being depressingly cooped up at home.</p>
<p>I would give anything to be able to have a smashing workout right about now.</p>
]]></content:encoded>
			<wfw:commentRss>http://limetouch.com/article/ankle-injury-follow-up/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ankle Injury Layoff</title>
		<link>http://limetouch.com/article/ankle-injury-layoff/</link>
		<comments>http://limetouch.com/article/ankle-injury-layoff/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 03:37:15 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[football]]></category>
		<category><![CDATA[injury]]></category>

		<guid isPermaLink="false">http://limetouch.com/?p=4833</guid>
		<description><![CDATA[During a competitive league match this past week, I suffered a freak incident just 10 minutes into it which will put me out of action for an estimated couple of weeks. It was a simple challenge for a header but I landed awkwardly on the poorly conditioned pitch and could not carry on.]]></description>
			<content:encoded><![CDATA[<p>During a competitive league match this past week, I suffered a freak incident just 10 minutes into it which will put me out of action for an estimated couple of weeks. It was a simple challenge for a header but I landed awkwardly on the poorly conditioned pitch and could not carry on.</p>
<p>After the match ended, I was sent to a clinic to check things out. The doctor suspected it was a fracture and wrote a memo for me to undergo an X-Ray at a hospital.</p>
<p>On reaching the A&amp;E, I was put on a wheelchair by a nurse. I waited for a good 2 hours, thank god there was a wireless@SG network to cure my boredom.</p>
<p>After the X-Ray, there were no signs of a fracture. It has been deduced as a sprain for now, the doctor was unable to confirm if there is a crack or not.</p>
<p>For my troubles, I have been given a 5 days MC for my troubles and if it still hurts after that, it is probably more than a simple sprain and I have to return for a followup.</p>
<p><img class="aligncenter size-full wp-image-4836" title="Ankle wrapped up" src="http://limetouch.com/media/2010/01/DSC_3714.jpg" alt="Ankle wrapped up" width="500" height="332" /></p>
<p>For now I am on medication to stop the pain and my ankle is wrapped up nicely. I am still unable to walk properly. Hopefully soon, it will not be a chore.</p>
<p>What irks me most is having the excitement of finally stepping onto the pitch in 2 weeks cut short and be out for another couple of weeks.</p>
<p>I am very thankful for all the support I have received thus far. I could not have managed at the hospital on my own. Right now, I am fully concentrated on getting past this setback and come back stronger. Hopefully I would be able to be running on the pitch sooner rather than later.</p>
]]></content:encoded>
			<wfw:commentRss>http://limetouch.com/article/ankle-injury-layoff/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Back To A 16 Year Old</title>
		<link>http://limetouch.com/article/back-to-a-16-year-old/</link>
		<comments>http://limetouch.com/article/back-to-a-16-year-old/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 12:45:19 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://limetouch.com/?p=4832</guid>
		<description><![CDATA[Ever remembered what you used to do after school hours during your secondary 4 days; besides studying for your O' levels of course (like you would)?

I still remember me mischievously playing some football on the eve of my E-Maths paper instead of preparing myself for it.]]></description>
			<content:encoded><![CDATA[<p>Ever remembered what you used to do after school hours during your secondary 4 days; besides studying for your O&#8217; levels of course (like you would)?</p>
<p>I still remember me mischievously playing some football on the eve of my E-Maths paper instead of preparing myself for it.</p>
<p>It has been a good while since 2003 and just for one day, I was able to turn the clock back. We went on a trip to the city no different from our past meetings, our schedule however packed with things almost every 16 year old would do as a pastime.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-4835" title="Cue balls on pool table" src="http://limetouch.com/media/2010/01/3254853154_c0c19ee688.jpg" alt="Cue balls on pool table" width="500" height="333" /><small>By <a title="Link to Ignacio Guerra's photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/ignacioguerra/">Ignacio Guerra</a></small></p>
<p>Things like:</p>
<ol>
<li>Taking a neoprint - <em>Not many places left to do that now</em></li>
<li>Catching a movie at student prices &#8211; <em>SGD </em><em>$10.00 for a weekend movie is just absurd</em></li>
<li>Playing pool - <em>The first thing to do when you reach 16</em></li>
</ol>
<p>Somethings do not change. I am still as bad in decorating neoprints and my pool skills have turned a tad rusty.</p>
<p>There are probably others like LAN and video arcade gaming but we didn&#8217;t go into all that. I may have even missed others myself. Do refresh my memory. Even in my younger years, I never really took a fancy to the former. <em>Probably because I was real bad at it</em>.</p>
<p>Being able to indulge in the favorite past times of a 16 year old again made me reminisce a little about being a teenager without any responsibilities. Well, except for doing well in the O&#8217; levels.</p>
<p>6 years later, it is still good fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://limetouch.com/article/back-to-a-16-year-old/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iPod Touch 2G Unboxed</title>
		<link>http://limetouch.com/article/ipod-touch-2g-unboxed/</link>
		<comments>http://limetouch.com/article/ipod-touch-2g-unboxed/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 12:52:54 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipod]]></category>

		<guid isPermaLink="false">http://limetouch.com/?p=4825</guid>
		<description><![CDATA[Believe it or not, I have finally unboxed my 8GB iPod Touch 2G a week ago. It came with the Macbook Pro I bought in August 2009.]]></description>
			<content:encoded><![CDATA[<p>Believe it or not, I have finally unboxed my 8GB iPod Touch 2G a week ago. It came with the Macbook Pro I bought in August 2009.</p>
<p>There was an ongoing student promotion at that time, they were trying to offload the remaining 2G sets to welcome 3G. As a result, I was able to get a SGD $365 rebate which pretty much means that the iPod Touch is a free gift. I am not complaining.</p>
<p>To officially induct the iPod Touch as my 2 year plus old iPod Video replacement, I took a screen capture (<em>Lock + Home button</em>) of the home page display.</p>
<p><img class="size-full wp-image-4827 aligncenter" title="iPod Touch screen capture" src="http://limetouch.com/media/2010/01/ipod.png" alt="iPod Touch screen capture" width="320" height="480" /></p>
<p>I also splashed out USD $4.95 to upgrade the software version to 3.1.1 just so that I can enjoy the latest, more cooler apps available on the App Store.</p>
<p>The lack of ways to use a data plan means I am not connected on the go. My only chance of getting connected is at home or where there is a <em>good </em>wireless network.</p>
<p>One of the things about the iPod Touch is that it cannot be mounted as a disk drive. I could sync it with a folder containing my photos but what about the other way round? Just copying the files since it is not even listed in Finder is not an option.</p>
<p>Thanks to <a title="How to transfer photos from iPod Touch to Mac" href="http://twitter.com/charholly9/status/7933274070">@charholly9</a> for a straight off the shelf answer &#8211; importing through iPhoto. It is a little unnatural but I guess over time I would get used to it.</p>
<p>The iPod Touch is primarily my music device but there isn&#8217;t a night now that I would not have it in hand, playing the downloaded games or actually browsing for more apps.</p>
]]></content:encoded>
			<wfw:commentRss>http://limetouch.com/article/ipod-touch-2g-unboxed/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Rainie Yang &#8211; 雨愛</title>
		<link>http://limetouch.com/article/rainie-yang-yu-ai/</link>
		<comments>http://limetouch.com/article/rainie-yang-yu-ai/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 13:34:54 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[rainie yang]]></category>

		<guid isPermaLink="false">http://limetouch.com/?p=4821</guid>
		<description><![CDATA[News broke out that Rainie Yang's latest album, <a title="Release date of 雨愛 in Singapore" href="http://blog.omy.sg/rainie/archives/2027">雨愛 would be in stores on the 1st of January 2010</a>. However only the 1st batch would be entitled to the limited edition raincoat.]]></description>
			<content:encoded><![CDATA[<p>News broke out that Rainie Yang&#8217;s latest album, <a title="Release date of 雨愛 in Singapore" href="http://blog.omy.sg/rainie/archives/2027">雨愛 would be in stores on the 1st of January 2010</a>. However only the 1st batch would be entitled to the limited edition raincoat.</p>
<p>I was terribly excited about the album, not the free gift. I gave a shot at Hougang mall&#8217;s CD Rama one fine Saturday but to no avail. After a good fortnight since it was released, I have finally gotten a copy of the album; as a belated Christmas gift from <a title="YVWYNE" href="http://yvwyne.blogspot.com">Vickie</a>.</p>
<p><img class="aligncenter size-full wp-image-4823" title="Rainie Yang 雨愛 and raincoat" src="http://limetouch.com/media/2010/01/DSC_3685.jpg" alt="Rainie Yang 雨愛 and raincoat" width="500" height="346" /></p>
<h3>Track Listings</h3>
<ol>
<li>雨愛</li>
<li>In Your Eyes</li>
<li>青春鬥</li>
<li>調皮的愛神</li>
<li>摺疊式愛情</li>
<li>匿名的好友</li>
<li>要我的命</li>
<li>絕對達令</li>
<li>新流感</li>
<li>二度戀愛</li>
</ol>
<p>Raincoats are just not my kind of thing. I don&#8217;t ever wear them, except during my BMT days.</p>
<p>I would much rather get drenched than be spotted wearing a raincoat. If any of you are interested in having it, do leave me a comment.</p>
<p>As always, support Rainie. Purchase her originals.</p>
]]></content:encoded>
			<wfw:commentRss>http://limetouch.com/article/rainie-yang-yu-ai/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Swift Return to Service</title>
		<link>http://limetouch.com/article/swift-return-to-service/</link>
		<comments>http://limetouch.com/article/swift-return-to-service/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 13:35:31 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[ns]]></category>

		<guid isPermaLink="false">http://limetouch.com/?p=4818</guid>
		<description><![CDATA[Not too short ago, I received the letter. It was an order to report for service on the 3rd of February 2010. And to think that it wasn't that long since I <a title="ORD Fireworks" href="http://limetouch.com/article/ord-fireworks/">completed my NS</a>. Perhaps ever since my PES status got upgraded, I am suddenly so much more valuable.]]></description>
			<content:encoded><![CDATA[<p><strong>Update: </strong>My request to defer my call ups has been accepted.</p>
<p>Not too short ago, I received the letter. It was an order to report for service on the 3rd of February 2010. And to think that it wasn&#8217;t that long since I <a title="ORD Fireworks" href="http://limetouch.com/article/ord-fireworks/">completed my NS</a>. Perhaps ever since my <a title="Upgraded to PES B" href="http://limetouch.com/article/upgraded-to-pes-b/">PES status got upgraded</a>, I am suddenly so much more valuable.</p>
<p>I immediately contacted NAAEC and made a request to defer any call ups till after the completion of my studies. I know it is probably futile as I am still after all studying in a private school. Things would have been different if I was in one of the 3 local universities. Ah nonetheless, I tried.</p>
<p>It is coming near to a whole month and a reply on its status would really come in handy now. As it stands, I would probably have to follow the schedule and report on the allocated date. Just to be on the safe side, I would make a call down to the hotline.</p>
<p><em>A neat haircut</em> is what we are supposed to be spotting. I would have to carefully plan my next visit to the hair stylist to avoid looking like a dork during Chinese New Year.</p>
<p>Without a day to day job, I could really do with the recently increased service pay for NS Sergeants, even if it is only a portion. Rumor has it that for the first 2 years, I am in for some intensive training. That has gotten me pretty excited and I can&#8217;t wait.</p>
<p>On a not so positive note, I won&#8217;t be grinding it out with any of my NS mates. It would be a totally whole new start with new friends and acquaintances.</p>
<p>This time round, I am quite certain that I won&#8217;t be taken away for more than a day. As stated on the slip, it is just a briefing. But one can never be too sure.</p>
<p>Right now, all there is are speculations. I will only get a clearer picture after 3rd of February 2010. Wish me luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://limetouch.com/article/swift-return-to-service/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Singaporean Laziali Unite</title>
		<link>http://limetouch.com/article/singaporean-laziali-unite/</link>
		<comments>http://limetouch.com/article/singaporean-laziali-unite/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 02:13:15 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[football]]></category>
		<category><![CDATA[lazio]]></category>
		<category><![CDATA[singaporeans]]></category>

		<guid isPermaLink="false">http://limetouch.com/?p=4809</guid>
		<description><![CDATA[I have always thought of myself as the only Laziale (S.S. Lazio supporter) in Singapore. My feeble attempts to rally others like myself have failed miserably. The only way I could ever talk about my beloved supported club is through community forums on the Web, I have been to countless.]]></description>
			<content:encoded><![CDATA[<p>I have always thought of myself as the only Laziale (S.S. Lazio supporter) in Singapore. My feeble attempts to rally others like myself have failed miserably. The only way I could ever talk about my beloved supported club is through community forums on the Web, <em>I have been to countless.</em></p>
<p>One fine day in 2008, I was contacted by a very passionate and knowledgeable Laziale after he found a post written by me on the HardwareZone forums. In time and gradually, we were building up a fan base in Singapore. However, we are still just a few and always looking out.</p>
<p>If you are a Laziale residing in sunny Singapore, do give us a shout <a title="S.S. Lazio Singapore Facebook group" href="http://facebook.com/group.php?gid=70512924038">on Facebook</a> and we will get in touch with you. Or if you have any friends who are avid Laziali, point them here.</p>
<p>At long last, we had our second official gathering, <em>I missed the first.</em></p>
<p style="text-align: center;"><img class="size-full wp-image-4810 aligncenter" title="Singaporean Laziali at TCC, Bugis" src="http://limetouch.com/media/2009/12/DSC_3627.jpg" alt="Singaporean Laziali at TCC, Bugis" width="500" height="248" /> <small>From left to right: Jon, Harun, Nigel, Stefano and Darran</small></p>
<p>It is nothing serious, just something very casual. It was good fun talking about everything Lazio and beyond, no different from a mingling session with a group of friends, <em>only that these are hardcore Laziali who never once abandoned the team in its most difficult times.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://limetouch.com/article/singaporean-laziali-unite/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Year Resolutions 2010</title>
		<link>http://limetouch.com/article/new-year-resolutions-2010/</link>
		<comments>http://limetouch.com/article/new-year-resolutions-2010/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 05:33:44 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[ippt]]></category>
		<category><![CDATA[new year resolution]]></category>

		<guid isPermaLink="false">http://limetouch.com/?p=4811</guid>
		<description><![CDATA[I am late again. A very happy new year to all my readers. It is that time of the year again. The time to say goodbye to 2009 and look forward to 2010. And of course let's not forget about the annual New Year Resolutions too.]]></description>
			<content:encoded><![CDATA[<p>I am late again. A very happy new year to all my readers. It is that time of the year again. The time to say goodbye to 2009 and look forward to 2010. And of course let&#8217;s not forget about the annual New Year Resolutions too.</p>
<p>Another year of failing to achieve my <a title="Looking Back at 2008" href="http://limetouch.com/article/looking-back-at-2008/">2009 new year resolutions</a> &#8211; getting a gold for my IPPT. <em>This is getting quite a habit. </em>I guess it is harder than it actually is since my emphasis will always be on bulking up and building muscle mass.</p>
<p>Training for a 9:45 mins timing for my 2.4km run will in fact go against what I have set out to do all this while. But I will not give up trying.</p>
<p>Let&#8217;s focus on 2010 instead by taking a brief look at my targets.</p>
<h3>New Year Resolutions for 2010</h3>
<ol>
<li>Get my driving license</li>
<li>Bump my weight to an ideal 70kg while looking ripped</li>
<li>Not fail any of my Computer Science subjects</li>
</ol>
<p><em>Yes, the last one is not a joke.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://limetouch.com/article/new-year-resolutions-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
