<?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>Simple Difference</title>
	<atom:link href="http://fendy.simpledifference.net/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://fendy.simpledifference.net/blog</link>
	<description>To be Simple to make a Difference</description>
	<lastBuildDate>Sat, 05 Dec 2009 17:50:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>I Wanted To Change The World</title>
		<link>http://fendy.simpledifference.net/blog/archives/28</link>
		<comments>http://fendy.simpledifference.net/blog/archives/28#comments</comments>
		<pubDate>Thu, 16 Apr 2009 14:24:30 +0000</pubDate>
		<dc:creator>s1mple</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[poem]]></category>

		<guid isPermaLink="false">http://fendy.simpledifference.net/blog/?p=28</guid>
		<description><![CDATA[By Unknown Monk, 1100 A.D.
When I was a young man, I wanted to change the world. I found it was difficult to change the world, so I tried to change my nation.
When I found I couldn&#8217;t change the nation, I began to focus on my town. I couldn&#8217;t change the town and as an older [...]]]></description>
		<wfw:commentRss>http://fendy.simpledifference.net/blog/archives/28/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great time, Good friends, Nice Easter Camp</title>
		<link>http://fendy.simpledifference.net/blog/archives/21</link>
		<comments>http://fendy.simpledifference.net/blog/archives/21#comments</comments>
		<pubDate>Tue, 14 Apr 2009 01:15:45 +0000</pubDate>
		<dc:creator>s1mple</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://fendy.simpledifference.net/blog/?p=21</guid>
		<description><![CDATA[I just came back from Easter camp retreat carried by one of HOPE church care group. It was 3 days 2 nights retreat in Tanjung puteri golf resort Johor Bahru Malaysia. Actually I didn&#8217;t have any plan to join this retreat. I&#8217;m not part of their church and I was afraid I would feel lonely [...]]]></description>
		<wfw:commentRss>http://fendy.simpledifference.net/blog/archives/21/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle cheat sheet</title>
		<link>http://fendy.simpledifference.net/blog/archives/10</link>
		<comments>http://fendy.simpledifference.net/blog/archives/10#comments</comments>
		<pubDate>Tue, 30 Dec 2008 04:11:30 +0000</pubDate>
		<dc:creator>s1mple</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Tips & Triks]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://fendy.simpledifference.net/blog/?p=10</guid>
		<description><![CDATA[- SQLPlus short connection
sqlplus &#60;username&#62;/&#60;password&#62;@&#60;ipAddress&#62;:&#60;port&#62;/&#60;sid&#62; [@&#60;scriptfile&#62;]
Ex:
sqlplus user/pass@192.168.1.10:3267/MYDB @test.sql
- MySQL limit equivalent
Ex:
  SELECT last_name FROM
(SELECT last_name, ROW_NUMBER() OVER (ORDER BY last_name) R FROM employees)
WHERE R BETWEEN 51 and 100;
Alternative:
select *
from ( select a.*, rownum rnum
from ( YOUR_QUERY_GOES_HERE -- including the order by ) a
where rownum &#60;= MAX_ROWS )
where rnum &#62;= MIN_ROWS;
]]></description>
		<wfw:commentRss>http://fendy.simpledifference.net/blog/archives/10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux cheat sheet</title>
		<link>http://fendy.simpledifference.net/blog/archives/11</link>
		<comments>http://fendy.simpledifference.net/blog/archives/11#comments</comments>
		<pubDate>Mon, 29 Dec 2008 16:16:12 +0000</pubDate>
		<dc:creator>s1mple</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Triks]]></category>

		<guid isPermaLink="false">http://fendy.simpledifference.net/blog/?p=11</guid>
		<description><![CDATA[- show disk usage: du
- show disk capacity: df
- search word from file inside directory: 
find /start/dir -exec grep -q my_search_word {} \; -print
- search files with specific name inside directory (HP-Unix, maxdepth=1): 
find . \( ! -name . -prune \) \( -name &#8220;*TEST1*.ps&#8221; -o -name &#8220;*TEST2*.ps&#8221; \) -mtime +30 -type f
find /parent/child \( ! [...]]]></description>
		<wfw:commentRss>http://fendy.simpledifference.net/blog/archives/11/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Simple IRIS for SBS Bus</title>
		<link>http://fendy.simpledifference.net/blog/archives/8</link>
		<comments>http://fendy.simpledifference.net/blog/archives/8#comments</comments>
		<pubDate>Sun, 20 Apr 2008 06:34:44 +0000</pubDate>
		<dc:creator>s1mple</dc:creator>
				<category><![CDATA[Tips & Triks]]></category>

		<guid isPermaLink="false">http://fendy.simpledifference.net/blog/2008/04/20/simple-iris/</guid>
		<description><![CDATA[Do you frequently travel by bus in Singapore? Do you use SBS bus? Have you ever waited for long time and the bus still hasn&#8217;t come yet?  Have you ever faced situation when you needed to choose between bus or MRT but you were afraid if you chose bus you would wait for a [...]]]></description>
		<wfw:commentRss>http://fendy.simpledifference.net/blog/archives/8/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
