<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>阿宅 +</title>
	<atom:link href="http://kinokunya.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kinokunya.wordpress.com</link>
	<description>Geek loves Thai pop</description>
	<lastBuildDate>Fri, 27 Jan 2012 03:48:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='kinokunya.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>阿宅 +</title>
		<link>http://kinokunya.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kinokunya.wordpress.com/osd.xml" title="阿宅 +" />
	<atom:link rel='hub' href='http://kinokunya.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Java Dates</title>
		<link>http://kinokunya.wordpress.com/2012/01/27/java-dates/</link>
		<comments>http://kinokunya.wordpress.com/2012/01/27/java-dates/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 03:44:50 +0000</pubDate>
		<dc:creator>Kinokunya</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Date]]></category>

		<guid isPermaLink="false">http://kinokunya.wordpress.com/?p=354</guid>
		<description><![CDATA[For own documentation purposes. Tagged: Date, Java<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=354&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For own documentation purposes.<br />
<pre class="brush: java;">
private String returnDMY(Timestamp date) {
String str = &quot;&quot;;
if (date != null) {
String d = date.toString();
// System.out.println(&quot;returnDMY (start): &quot;+d);
int year = Integer.parseInt(d.substring(0, 4));
int month = Integer.parseInt(d.substring(5, 7));
int day = Integer.parseInt(d.substring(8, 10));
int hours = Integer.parseInt(d.substring(11, 13));
int mins = Integer.parseInt(d.substring(14, 16));
int secs = Integer.parseInt(d.substring(17, 19));

Calendar gc = new GregorianCalendar(year, month - 1, day, hours,
mins, secs);
SimpleDateFormat sdf = new SimpleDateFormat(&quot;dd/MM/yyyy&quot;);
str = sdf.format(gc.getTime());
// System.out.println(&quot;returnDMY (end): &quot;+str);
}
return str; // returns empty String if DB field is null
}

private Timestamp plusOneYear(Timestamp date)
{
//2011-03-28 00:00:00.0 - Sample timestamp
String d = date.toString();
//System.out.println(&quot;Timestamp toString():&quot;+d);
int year = Integer.parseInt(d.substring(0, 4));
int month = Integer.parseInt(d.substring(5, 7));
int day = Integer.parseInt(d.substring(8, 10));
int hours = Integer.parseInt(d.substring(11, 13));
int mins = Integer.parseInt(d.substring(14, 16));
int secs = Integer.parseInt(d.substring(17, 19));

Calendar gc = new GregorianCalendar(year, month - 1, day, hours, mins, secs);
gc.add(Calendar.YEAR, 1);

SimpleDateFormat sdf = new SimpleDateFormat(&quot;yyyy-MM-dd HH:mm:ss&quot;);
String str = sdf.format(gc.getTime());
//System.out.println(&quot;PlusOneYear: &quot;+str);

return Timestamp.valueOf(str);
}
</pre></p>
<br /> Tagged: <a href='http://kinokunya.wordpress.com/tag/date/'>Date</a>, <a href='http://kinokunya.wordpress.com/tag/java/'>Java</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kinokunya.wordpress.com/354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kinokunya.wordpress.com/354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kinokunya.wordpress.com/354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kinokunya.wordpress.com/354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kinokunya.wordpress.com/354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kinokunya.wordpress.com/354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kinokunya.wordpress.com/354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kinokunya.wordpress.com/354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kinokunya.wordpress.com/354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kinokunya.wordpress.com/354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kinokunya.wordpress.com/354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kinokunya.wordpress.com/354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kinokunya.wordpress.com/354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kinokunya.wordpress.com/354/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=354&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kinokunya.wordpress.com/2012/01/27/java-dates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25fff8d972e8278f2011c252fd01fd47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinokunya</media:title>
		</media:content>
	</item>
		<item>
		<title>Clearing iPhone&#8217;s &#8216;Other&#8217; space</title>
		<link>http://kinokunya.wordpress.com/2012/01/22/clearing-iphones-other-space/</link>
		<comments>http://kinokunya.wordpress.com/2012/01/22/clearing-iphones-other-space/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 20:24:04 +0000</pubDate>
		<dc:creator>Kinokunya</dc:creator>
				<category><![CDATA[Life+]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Jailbreak]]></category>
		<category><![CDATA[The Geek]]></category>

		<guid isPermaLink="false">http://kinokunya.wordpress.com/?p=349</guid>
		<description><![CDATA[Requires a jailbroken iPhone, with iFunBox installed. My iTunes version: 10.3.1.55, using iPhone 4. Connect iPhone to PC and launch iFunBox Navigate to [iTunes Control], and then [Music Control] folder. Delete all sub-folders, sub-directories inside [Music Control] folder Disconnect and close iFunBox, go to iTunes, and sync your iPhone WITHOUT the music (make sure to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=349&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Requires a jailbroken iPhone, with iFunBox installed.<br />
My iTunes version: 10.3.1.55, using iPhone 4.</p>
<ol>
<li>Connect iPhone to PC and launch iFunBox</li>
<li>Navigate to [iTunes Control], and then [Music Control] folder.</li>
<li>Delete all sub-folders, sub-directories inside [Music Control] folder</li>
<li>Disconnect and close iFunBox, go to iTunes, and sync your iPhone WITHOUT the music (make sure to uncheck the sync music choice)</li>
<li>Disconnect iPhone. Reboot iPhone. Reconnect phone to PC again.</li>
<li>Launch iTunes, sync iPhone with everything you want (including music, make sure to check it again)</li>
<li>There should be a significant drop in the OTHERS space indicator in iTunes.</li>
</ol>
<br /> Tagged: <a href='http://kinokunya.wordpress.com/tag/iphone/'>iPhone</a>, <a href='http://kinokunya.wordpress.com/tag/jailbreak/'>Jailbreak</a>, <a href='http://kinokunya.wordpress.com/tag/the-geek/'>The Geek</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kinokunya.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kinokunya.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kinokunya.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kinokunya.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kinokunya.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kinokunya.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kinokunya.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kinokunya.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kinokunya.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kinokunya.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kinokunya.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kinokunya.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kinokunya.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kinokunya.wordpress.com/349/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=349&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kinokunya.wordpress.com/2012/01/22/clearing-iphones-other-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25fff8d972e8278f2011c252fd01fd47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinokunya</media:title>
		</media:content>
	</item>
		<item>
		<title>Guitar Amps and Effects for iPhone, iPod and iPad</title>
		<link>http://kinokunya.wordpress.com/2011/09/13/guitar-amps-and-effects-for-iphone-ipad/</link>
		<comments>http://kinokunya.wordpress.com/2011/09/13/guitar-amps-and-effects-for-iphone-ipad/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 15:03:17 +0000</pubDate>
		<dc:creator>Kinokunya</dc:creator>
				<category><![CDATA[Life+]]></category>
		<category><![CDATA[The Gig]]></category>

		<guid isPermaLink="false">http://kinokunya.wordpress.com/?p=303</guid>
		<description><![CDATA[Just learnt that there are guitar amplifier apps on the iOS devices. I&#8217;ll give these apps a test run on my iPad and iPhone before getting one of those mini portable guitar amplifiers. Amplitube Amplitube (iTunes $19.99) Amplitube (iTunes Free) The Amplitube iRig costs like SGD$54 on my local Apple Store. Maybe I should get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=303&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just learnt that there are guitar amplifier apps on the iOS devices. I&#8217;ll give these apps a test run on my iPad and iPhone before getting one of those mini portable guitar amplifiers.</p>
<h2><strong>Amplitube</strong></h2>
<p><img class="alignnone" title="Amplitube" src="http://a1.mzstatic.com/us/r1000/074/Purple/64/c4/b1/mzl.wgkptsck.320x480-75.jpg" alt="" width="320" height="480" /></p>
<p><a href="http://itunes.apple.com/sg/app/amplitube/id373524000?mt=8" target="_blank">Amplitube (iTunes $19.99)</a><br />
<a href="http://itunes.apple.com/sg/app/amplitube-free/id373309342?mt=8" target="_blank">Amplitube (iTunes Free)</a></p>
<p>The Amplitube <a href="http://store.apple.com/sg/product/H2169ZM/A" target="_blank">iRig</a> costs like SGD$54 on my local Apple Store.<br />
Maybe I should get the replica from <a href="http://www.dealextreme.com/p/designer-s-amplitube-irig-guitar-effects-adapter-for-iphone-ipad-73519" target="_blank">DealExtreme</a> instead.</p>
<h2>StompBox</h2>
<p><img class="alignnone" title="StompBox for iPad" src="http://a3.mzstatic.com/us/r1000/105/Purple/9d/b2/8b/mzl.lnnhrpvz.480x480-75.jpg" alt="" width="360" height="480" /></p>
<p><a href="http://itunes.apple.com/sg/app/stompbox/id392607732?mt=8" target="_blank">StompBox for iPad (iTunes $19.99)</a></p>
<h2>Other Amplifier apps</h2>
<p><img src="http://profile.ak.fbcdn.net/hprofile-ak-snc4/41591_127210663972135_8911_n.jpg" alt="AmpKit+" width="180" height="180" /><a href="http://itunes.apple.com/sg/app/ampkit/id385758778?mt=8" target="_blank">AmpKit+ (iTunes $19.99/ AmpKit Free)</a></p>
<p><img class="alignnone" title="PocketAmp" src="http://www.ipadcreative.com/storage/PocketAmpIcon190.png?__SQUARESPACE_CACHEVERSION=1290464933379" alt="" width="180" height="180" /> <a href="http://itunes.apple.com/sg/app/pocketamp-guitar-amp-effects/id358988434?mt=8" target="_blank">PocketAmp (iTunes $4.99/ Free lite version available)</a></p>
<br /> Tagged: <a href='http://kinokunya.wordpress.com/tag/the-gig/'>The Gig</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kinokunya.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kinokunya.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kinokunya.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kinokunya.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kinokunya.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kinokunya.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kinokunya.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kinokunya.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kinokunya.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kinokunya.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kinokunya.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kinokunya.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kinokunya.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kinokunya.wordpress.com/303/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=303&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kinokunya.wordpress.com/2011/09/13/guitar-amps-and-effects-for-iphone-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25fff8d972e8278f2011c252fd01fd47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinokunya</media:title>
		</media:content>

		<media:content url="http://a1.mzstatic.com/us/r1000/074/Purple/64/c4/b1/mzl.wgkptsck.320x480-75.jpg" medium="image">
			<media:title type="html">Amplitube</media:title>
		</media:content>

		<media:content url="http://a3.mzstatic.com/us/r1000/105/Purple/9d/b2/8b/mzl.lnnhrpvz.480x480-75.jpg" medium="image">
			<media:title type="html">StompBox for iPad</media:title>
		</media:content>

		<media:content url="http://profile.ak.fbcdn.net/hprofile-ak-snc4/41591_127210663972135_8911_n.jpg" medium="image">
			<media:title type="html">AmpKit+</media:title>
		</media:content>

		<media:content url="http://www.ipadcreative.com/storage/PocketAmpIcon190.png?__SQUARESPACE_CACHEVERSION=1290464933379" medium="image">
			<media:title type="html">PocketAmp</media:title>
		</media:content>
	</item>
		<item>
		<title>New apps on my iDevices</title>
		<link>http://kinokunya.wordpress.com/2011/09/12/new-apps-on-my-idevices/</link>
		<comments>http://kinokunya.wordpress.com/2011/09/12/new-apps-on-my-idevices/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 12:13:15 +0000</pubDate>
		<dc:creator>Kinokunya</dc:creator>
				<category><![CDATA[Life+]]></category>
		<category><![CDATA[The Gig]]></category>

		<guid isPermaLink="false">http://kinokunya.wordpress.com/?p=308</guid>
		<description><![CDATA[Planet Waves Guitar Tools (iTunes $1.99) Gibson Learn &#38; Master Guitar Application (iTunes Free) EQu &#8211; the quality equalizer (iTunes $2.99) Tagged: The Gig<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=308&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>Planet Waves Guitar Tools</h2>
<p><img class="alignnone" title="Planet Waves Guitar Tools" src="http://www.freshapps.com/wp-content/uploads/2010/12/logo1.png" alt="" width="177" height="179" /> <a href="http://itunes.apple.com/sg/app/planet-waves-guitar-tools/id375703586?mt=8" target="_blank">(iTunes $1.99)</a></p>
<h1>Gibson Learn &amp; Master Guitar Application</h1>
<p><img class="alignnone" title="Gibson Learn &amp; Master Guitar Application" src="http://www.iphonemag.jp/wp-content/uploads/2010/07/052-0.jpg" alt="" width="176" height="177" /> <a href="http://itunes.apple.com/sg/app/gibson-learn-master-guitar/id355744218?mt=8" target="_blank">(iTunes Free)</a></p>
<h1>EQu &#8211; the quality equalizer</h1>
<p><img class="alignnone" title="EQu - the quality equalizer" src="http://www.smashapp.com/sites/default/files/imagecache/application_details_image/mzl.bkptgidt.175x175-75.jpg" alt="" width="175" height="175" /> <a href="http://itunes.apple.com/sg/app/equ-the-quality-equalizer/id403704212?mt=8" target="_blank">(iTunes $2.99)</a></p>
<br /> Tagged: <a href='http://kinokunya.wordpress.com/tag/the-gig/'>The Gig</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kinokunya.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kinokunya.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kinokunya.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kinokunya.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kinokunya.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kinokunya.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kinokunya.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kinokunya.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kinokunya.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kinokunya.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kinokunya.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kinokunya.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kinokunya.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kinokunya.wordpress.com/308/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=308&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kinokunya.wordpress.com/2011/09/12/new-apps-on-my-idevices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25fff8d972e8278f2011c252fd01fd47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinokunya</media:title>
		</media:content>

		<media:content url="http://www.freshapps.com/wp-content/uploads/2010/12/logo1.png" medium="image">
			<media:title type="html">Planet Waves Guitar Tools</media:title>
		</media:content>

		<media:content url="http://www.iphonemag.jp/wp-content/uploads/2010/07/052-0.jpg" medium="image">
			<media:title type="html">Gibson Learn &#38; Master Guitar Application</media:title>
		</media:content>

		<media:content url="http://www.smashapp.com/sites/default/files/imagecache/application_details_image/mzl.bkptgidt.175x175-75.jpg" medium="image">
			<media:title type="html">EQu - the quality equalizer</media:title>
		</media:content>
	</item>
		<item>
		<title>Impulsive buys and hoots</title>
		<link>http://kinokunya.wordpress.com/2011/09/09/impulsive-buys-and-hoots-from-dealextreme/</link>
		<comments>http://kinokunya.wordpress.com/2011/09/09/impulsive-buys-and-hoots-from-dealextreme/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 16:10:21 +0000</pubDate>
		<dc:creator>Kinokunya</dc:creator>
				<category><![CDATA[Life+]]></category>
		<category><![CDATA[The Geek]]></category>
		<category><![CDATA[The Gig]]></category>

		<guid isPermaLink="false">https://kinokunya.wordpress.com/2011/09/16/impulsive-buys-and-hoots-from-dealextreme/</guid>
		<description><![CDATA[HP DV6-6105tx Intel i7-2620M 8GB DDR3 ATI Radeon HD 6770 1GB DDR5 15.6&#8243; HD LED Blu-ray player Funan, 3 weeks before IT Show Damage: $1499 Just Mobile Alupen replica Damage: USD$5 (DealExtreme) FiiO E5 Portable Amplifier Went to Adelphi to audition some headphones. The best pick for the intended budget range was the Alessandro MS-1i [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=320&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>HP DV6-6105tx</h2>
<p><a href="http://kinokunya.files.wordpress.com/2011/09/20110914-121110.jpg"><img class="alignnone size-full" src="http://kinokunya.files.wordpress.com/2011/09/20110914-121110.jpg?w=580" alt="20110914-121110.jpg" /></a></p>
<p>Intel i7-2620M<br />
8GB DDR3<br />
<em>ATI</em> Radeon HD <em>6770</em> 1GB DDR5<br />
15.6&#8243; HD LED<br />
Blu-ray player</p>
<p>Funan, 3 weeks before IT Show <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
<strong>Damage: $1499</strong></p>
<h2>Just Mobile Alupen replica</h2>
<p><a href="http://kinokunya.files.wordpress.com/2011/09/20110914-121126.jpg"><img class="alignnone size-full" src="http://kinokunya.files.wordpress.com/2011/09/20110914-121126.jpg?w=580" alt="20110914-121126.jpg" /></a></p>
<p><strong>Damage: USD$5</strong> (<a href="http://www.dealextreme.com/p/aluminum-touchpad-stylus-pen-for-ipad-iphone-4-silver-54278" target="_blank">DealExtreme</a>)</p>
<h2 id="ctl00_content_HeadLine1">FiiO E5 Portable Amplifier</h2>
<p><a href="http://kinokunya.files.wordpress.com/2011/09/20110914-121132.jpg"><img class="alignnone size-full" src="http://kinokunya.files.wordpress.com/2011/09/20110914-121132.jpg?w=580" alt="20110914-121132.jpg" /></a></p>
<p>Went to Adelphi to audition some headphones. The best pick for the intended budget range was the Alessandro MS-1i open headphones but then I have absolute no reason to get them. Got the Fiio portable amp to match my IE2s instead. Happy with the extra boost.</p>
<p><strong>Damage: USD$17.41</strong> (<a href="http://www.dealextreme.com/p/fiio-e5-3-5mm-earphone-volume-booster-power-amplifier-black-18350" target="_blank">DealExtreme</a>)</p>
<h2 id="ctl00_content_HeadLine1">Craftsman ST30, Line 6 Spider IV 15</h2>
<p><a href="http://kinokunya.files.wordpress.com/2011/09/20110914-121211.jpg"><img class="alignnone size-full" src="http://kinokunya.files.wordpress.com/2011/09/20110914-121211.jpg?w=580" alt="20110914-121211.jpg" /></a></p>
<p>Suckseed + Thai pubs = <span style="font-family:Arial;font-size:small;">♥</span> Thai pop.<br />
Experimental + tight budget = ST30 package from City Music.</p>
<p>Craftsman ST30 Black Strat copy<br />
Line 6 Spider IV 15W Amplifier<br />
Korg GA-1 Solo Tuner<br />
Guitar Bag<br />
Guitar Cable<br />
Picks<br />
<strong>Damage: SGD$307</strong></p>
<p><em>Add</em>: Hercules electric guitar stand GS402B $24 from Ranking Sports and Music Supplier, Bras Basah Complex</p>
<br /> Tagged: <a href='http://kinokunya.wordpress.com/tag/the-geek/'>The Geek</a>, <a href='http://kinokunya.wordpress.com/tag/the-gig/'>The Gig</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kinokunya.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kinokunya.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kinokunya.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kinokunya.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kinokunya.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kinokunya.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kinokunya.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kinokunya.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kinokunya.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kinokunya.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kinokunya.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kinokunya.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kinokunya.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kinokunya.wordpress.com/320/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=320&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kinokunya.wordpress.com/2011/09/09/impulsive-buys-and-hoots-from-dealextreme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25fff8d972e8278f2011c252fd01fd47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinokunya</media:title>
		</media:content>

		<media:content url="http://kinokunya.files.wordpress.com/2011/09/20110914-121110.jpg" medium="image">
			<media:title type="html">20110914-121110.jpg</media:title>
		</media:content>

		<media:content url="http://kinokunya.files.wordpress.com/2011/09/20110914-121126.jpg" medium="image">
			<media:title type="html">20110914-121126.jpg</media:title>
		</media:content>

		<media:content url="http://kinokunya.files.wordpress.com/2011/09/20110914-121132.jpg" medium="image">
			<media:title type="html">20110914-121132.jpg</media:title>
		</media:content>

		<media:content url="http://kinokunya.files.wordpress.com/2011/09/20110914-121211.jpg" medium="image">
			<media:title type="html">20110914-121211.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>SuckSeed &amp; Nattasha Nauljam ณัฐชา นวลแจ่ม</title>
		<link>http://kinokunya.wordpress.com/2011/09/08/suckseed-nattasha-nauljam-%e0%b8%93%e0%b8%b1%e0%b8%90%e0%b8%8a%e0%b8%b2-%e0%b8%99%e0%b8%a7%e0%b8%a5%e0%b9%81%e0%b8%88%e0%b9%88%e0%b8%a1/</link>
		<comments>http://kinokunya.wordpress.com/2011/09/08/suckseed-nattasha-nauljam-%e0%b8%93%e0%b8%b1%e0%b8%90%e0%b8%8a%e0%b8%b2-%e0%b8%99%e0%b8%a7%e0%b8%a5%e0%b9%81%e0%b8%88%e0%b9%88%e0%b8%a1/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 17:03:27 +0000</pubDate>
		<dc:creator>Kinokunya</dc:creator>
				<category><![CDATA[Life+]]></category>
		<category><![CDATA[ณัฐชา นวลแจ่ม]]></category>
		<category><![CDATA[Nattasha Nauljam]]></category>
		<category><![CDATA[SuckSeed]]></category>

		<guid isPermaLink="false">http://kinokunya.wordpress.com/?p=330</guid>
		<description><![CDATA[Fucking chio. Wallpaper Tagged: ณัฐชา นวลแจ่ม, Nattasha Nauljam, SuckSeed<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=330&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<a href="http://kinokunya.wordpress.com/2011/09/08/suckseed-nattasha-nauljam-%e0%b8%93%e0%b8%b1%e0%b8%90%e0%b8%8a%e0%b8%b2-%e0%b8%99%e0%b8%a7%e0%b8%a5%e0%b9%81%e0%b8%88%e0%b9%88%e0%b8%a1/#gallery-1-slideshow">Click to view slideshow.</a>
<p>Fucking chio.</p>
<h2>Wallpaper</h2>
<p><a href="http://kinokunya.files.wordpress.com/2011/09/82_1_8090a53b3171da5.jpg"><img class="alignnone size-full wp-image-337" title="Natt" src="http://kinokunya.files.wordpress.com/2011/09/82_1_8090a53b3171da5.jpg?w=580&#038;h=386" alt="" width="580" height="386" /></a></p>
<br /> Tagged: <a href='http://kinokunya.wordpress.com/tag/%e0%b8%93%e0%b8%b1%e0%b8%90%e0%b8%8a%e0%b8%b2-%e0%b8%99%e0%b8%a7%e0%b8%a5%e0%b9%81%e0%b8%88%e0%b9%88%e0%b8%a1/'>ณัฐชา นวลแจ่ม</a>, <a href='http://kinokunya.wordpress.com/tag/nattasha-nauljam/'>Nattasha Nauljam</a>, <a href='http://kinokunya.wordpress.com/tag/suckseed/'>SuckSeed</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kinokunya.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kinokunya.wordpress.com/330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kinokunya.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kinokunya.wordpress.com/330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kinokunya.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kinokunya.wordpress.com/330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kinokunya.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kinokunya.wordpress.com/330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kinokunya.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kinokunya.wordpress.com/330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kinokunya.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kinokunya.wordpress.com/330/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kinokunya.wordpress.com/330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kinokunya.wordpress.com/330/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=330&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kinokunya.wordpress.com/2011/09/08/suckseed-nattasha-nauljam-%e0%b8%93%e0%b8%b1%e0%b8%90%e0%b8%8a%e0%b8%b2-%e0%b8%99%e0%b8%a7%e0%b8%a5%e0%b9%81%e0%b8%88%e0%b9%88%e0%b8%a1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25fff8d972e8278f2011c252fd01fd47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinokunya</media:title>
		</media:content>

		<media:content url="http://kinokunya.files.wordpress.com/2011/09/82_1_8090a53b3171da5.jpg" medium="image">
			<media:title type="html">Natt</media:title>
		</media:content>
	</item>
		<item>
		<title>Potato &#8211; เธอยัง&#8230;</title>
		<link>http://kinokunya.wordpress.com/2011/08/18/potato-%e0%b9%80%e0%b8%98%e0%b8%ad%e0%b8%a2%e0%b8%b1%e0%b8%87/</link>
		<comments>http://kinokunya.wordpress.com/2011/08/18/potato-%e0%b9%80%e0%b8%98%e0%b8%ad%e0%b8%a2%e0%b8%b1%e0%b8%87/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 10:34:09 +0000</pubDate>
		<dc:creator>Kinokunya</dc:creator>
				<category><![CDATA[Chords]]></category>

		<guid isPermaLink="false">http://kinokunya.wordpress.com/?p=341</guid>
		<description><![CDATA[C Am F Em Dm G ฉันยังเป็นคนที่รักเธอหมดใจ ฉันยังได้แต่คิดถึงเธอเรื่อยไป ฉันยังดูรูปถ่าย ที่เราชิดใกล้ อยู่ทุกวัน C Am F Em Dm G ฉันยังรอคอยให้เธอนั้นกลับมา ฉันยังกาปฏิทินทุกคืนวัน เพราะคำเดียว ระยะทาง ที่มาขวางกั้น เราไว้ &#8230; Em Am F Em Dm G ได้แต่คิดแล้วก็สงสัย อยู่ตรงนั้นเธอเป็นอย่างไรก็ไม่รู้ ฝากเพลงนี้ให้ไปถามเธอดู อยากจะรู้ในความเป็นไป C Am เธอยังคิดถึงฉันทุกนาทีอยู่รึเปล่า เธอยังจำเรื่องเราในวันวานได้หรือไม่ F Em Dm G C เธอยังมีใจให้ฉันคนเดียว ยังรอฉันเค่คนเดียว เธอยังคงเป็นเหมือนเดิมอยู่ใช่ไหม ช่วยบอกให้รู้ที C Am F Em Dm G ฉันกลัวใครทำให้เธอยังเปลี่ยนไป ฉันกลัวสิ่งที่ไม่แน่นอนมากมาย [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=341&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>C Am F Em Dm G<br />
ฉันยังเป็นคนที่รักเธอหมดใจ ฉันยังได้แต่คิดถึงเธอเรื่อยไป ฉันยังดูรูปถ่าย ที่เราชิดใกล้ อยู่ทุกวัน<br />
C Am F Em Dm G<br />
ฉันยังรอคอยให้เธอนั้นกลับมา ฉันยังกาปฏิทินทุกคืนวัน เพราะคำเดียว ระยะทาง ที่มาขวางกั้น เราไว้ &#8230;</p>
<p>Em Am F Em Dm G<br />
ได้แต่คิดแล้วก็สงสัย อยู่ตรงนั้นเธอเป็นอย่างไรก็ไม่รู้ ฝากเพลงนี้ให้ไปถามเธอดู อยากจะรู้ในความเป็นไป</p>
<p>C Am<br />
เธอยังคิดถึงฉันทุกนาทีอยู่รึเปล่า เธอยังจำเรื่องเราในวันวานได้หรือไม่<br />
F Em Dm G C<br />
เธอยังมีใจให้ฉันคนเดียว ยังรอฉันเค่คนเดียว เธอยังคงเป็นเหมือนเดิมอยู่ใช่ไหม ช่วยบอกให้รู้ที</p>
<p>C Am F Em Dm G<br />
ฉันกลัวใครทำให้เธอยังเปลี่ยนไป ฉันกลัวสิ่งที่ไม่แน่นอนมากมาย ฉันกลัวคำว่าเสียใจ เธอรอฉันได้ ใช่มั้ย&#8230;</p>
<p>Em Am F Em Dm G<br />
ได้แต่คิดแล้วก็สงสัย อยู่ตรงนั้นเธอเป็นอย่างไรก็ไม่รู้ ฝากเพลงนี้ให้ไปถามเธอดู อยากจะรู้ในความเป็นไป<br />
C Am<br />
เธอยังคิดถึงฉันทุกนาทีอยู่รึเปล่า เธอยังจำเรื่องเราในวันวานได้หรือไม่<br />
F Em Dm G<br />
เธอยังมีใจให้ฉันคนเดียว ยังรอฉันเค่คนเดียว เธอยังคงเป็นเหมือนเดิมอยู่ใช่ไหม<br />
C Am<br />
เธอยังคิดถึงฉันทุกเวลาอยู่รึเปล่า เธอยังดูรูปเราใบเดิมๆอยู่หรือไม่<br />
F Em Dm G<br />
เธอยังมีใจให้ฉันคนเดียว ยังรอฉันเค่คนเดียว เธอยังรักกันเหมือนเดิมอยู่ใช่ไหม ช่วยบอกให้รู้ที</p>
<p>Solo &#8230; C/C/Am/Am/F/Em/Dm/G</p>
<p>Em Am F Em Dm G<br />
ได้แต่คิดแล้วก็สงสัย อยู่ตรงนั้นเธอเป็นอย่างไรก็ไม่รู้ ฝากเพลงนี้ให้ไปถามเธอดู อยากจะรู้ในความเป็นไป<br />
C Am<br />
เธอยังคิดถึงฉันทุกนาทีอยู่รึเปล่า เธอยังจำเรื่องเราในวันวานได้หรือไม่<br />
F Em Dm G<br />
เธอยังมีใจให้ฉันคนเดียว ยังรอฉันเค่คนเดียว เธอยังคงเป็นเหมือนเดิมอยู่ใช่ไหม<br />
C Am<br />
เธอยังคิดถึงฉันทุกเวลาอยู่รึเปล่า เธอยังดูรูปเราใบเดิมๆอยู่หรือไม่<br />
F Em Dm G C<br />
เธอยังมีใจให้ฉันคนเดียว ยังรอฉันเค่คนเดียว เธอยังรักกันเหมือนเดิมอยู่ใช่ไหม ช่วยบอกให้รู้ที</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='580' height='357' src='http://www.youtube.com/embed/50Z7OA--pNA?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kinokunya.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kinokunya.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kinokunya.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kinokunya.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kinokunya.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kinokunya.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kinokunya.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kinokunya.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kinokunya.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kinokunya.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kinokunya.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kinokunya.wordpress.com/341/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kinokunya.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kinokunya.wordpress.com/341/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=341&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kinokunya.wordpress.com/2011/08/18/potato-%e0%b9%80%e0%b8%98%e0%b8%ad%e0%b8%a2%e0%b8%b1%e0%b8%87/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25fff8d972e8278f2011c252fd01fd47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinokunya</media:title>
		</media:content>
	</item>
		<item>
		<title>First post for 2009</title>
		<link>http://kinokunya.wordpress.com/2009/03/09/255/</link>
		<comments>http://kinokunya.wordpress.com/2009/03/09/255/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 17:02:12 +0000</pubDate>
		<dc:creator>Kinokunya</dc:creator>
				<category><![CDATA[Life+]]></category>
		<category><![CDATA[AW15ECE-LG]]></category>
		<category><![CDATA[Ibanez]]></category>
		<category><![CDATA[Leopard Dock]]></category>
		<category><![CDATA[Mac OS Leopard]]></category>
		<category><![CDATA[Rainie Yang]]></category>
		<category><![CDATA[The Gig]]></category>
		<category><![CDATA[楊丞琳]]></category>

		<guid isPermaLink="false">http://kinokunya.wordpress.com/?p=255</guid>
		<description><![CDATA[Bren, Danny and I chose to end 2008 at the Boiler, St. James in a countdown party which I didn&#8217;t get to really enjoy; fucking wasted that night, and Tampinesians Bren+Danny had to send me back before heading home. Was really lazy, and was hard getting myself in to blog just for the sake of  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=255&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Bren, Danny and I chose to end 2008 at the Boiler, St. James in a countdown party which I didn&#8217;t get to really enjoy; fucking wasted that night, and Tampinesians Bren+Danny had to send me back before heading home.</p>
<p>Was really lazy, and was hard getting myself in to blog just for the sake of  2009. The year of 2009 had been, and will still be a year of many changes. My plumpish friends went from fat to thin (some even suffer from anorexia nervosa), Rainie Yang replaced Ariel Lin as my favorite female artiste because of [不良笑花], partly due to colleagues&#8217; influence, KTV outings with hyper colleagues who simply love to sing became a reality, and my sickening colleagues now call me 阿宅/宅男.</p>
<h2>Ibanez AW15ECE-LG</h2>
<p>While waiting for events &amp; happenings to blog about, the idea of getting myself an electric-acoustic guitar was intriguing; my first guitar was only 3 months old; I don&#8217;t play the chords well; so why do I even bother.</p>
<p>On the 24th of Jan I went to Swee Lee and got myself an Ibanez AW15ECE-LG as my CNY prezzie.</p>
<p><img class="alignnone size-full wp-image-253" title="dsc00399" src="http://kinokunya.files.wordpress.com/2009/03/dsc00399.jpg?w=580" alt="dsc00399"   /></p>
<p>My beginner guitar class ended shortly before the CNY period, and I&#8217;m stuck ever since with the same strumming and picking patterns which I&#8217;ve grown to be quite tired of after some time. I had to constantly find new song chords to retain the interest. Barre chords were mentioned and briefly introduced in the last lesson, a topic not so beginner-ish (at least) to me. I learnt that the usual F chord which I&#8217;ve practiced since week 2 was not the only F chord. Switching to the F Barre chord was hard; my finger strength was not there yet, but the real horror starts when I tried to do fingerpicking for the songs that I usually play. Not to mention that the strings that came shipped with the Ibanez was of a thicker string gauge then my old guitar. My fingers tire easily, I get muted sounds after few minutes of practicing Barre chords, even now. Still instilling muscle memory to chord shapes for Barre F + Bm.</p>
<h2>Mac OS Leopard Dock for Windows</h2>
<p>Was into mac machines these days. Came across this site with a sleek tutorial on emulating the Leopard dock. As I&#8217;ve been conscientiously using RocketDock for my shortcuts, this was just a minor tweak to my current dock to get the stacking feature. For further reading please <a href="http://davron.wordpress.com/2008/01/03/leopard-style-dock-for-windows-with-stacking-feature/" target="_blank">click here</a>.</p>
<p><a href="http://kinokunya.files.wordpress.com/2009/03/desktop1.jpg" target="_blank"><img class="alignnone size-full wp-image-261" title="desktop1" src="http://kinokunya.files.wordpress.com/2009/03/desktop1.jpg?w=580" alt="desktop1"   /></a><br />
<em>Rainie Adidas Photoshoot</em></p>
<h2>楊丞琳 半熟宣言 (CD+DVD) 幸福新年庆功版</h2>
<p>Might be a bit late, but still I got myself a copy of Rainie&#8217;s 半熟宣言 (CD+DVD) (幸福新年庆功版) during our short meet with Stan and Bren for breakfast at BK this morning. 加油 陳默默!</p>
<p><img class="alignnone size-full wp-image-254" title="dsc00397" src="http://kinokunya.files.wordpress.com/2009/03/dsc00397.jpg?w=580" alt="dsc00397"   /></p>
<br /> Tagged: AW15ECE-LG, Ibanez, Leopard Dock, Mac OS Leopard, Rainie Yang, The Gig, 楊丞琳 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kinokunya.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kinokunya.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kinokunya.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kinokunya.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kinokunya.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kinokunya.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kinokunya.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kinokunya.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kinokunya.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kinokunya.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kinokunya.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kinokunya.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kinokunya.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kinokunya.wordpress.com/255/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=255&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kinokunya.wordpress.com/2009/03/09/255/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25fff8d972e8278f2011c252fd01fd47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinokunya</media:title>
		</media:content>

		<media:content url="http://kinokunya.files.wordpress.com/2009/03/dsc00399.jpg" medium="image">
			<media:title type="html">dsc00399</media:title>
		</media:content>

		<media:content url="http://kinokunya.files.wordpress.com/2009/03/desktop1.jpg" medium="image">
			<media:title type="html">desktop1</media:title>
		</media:content>

		<media:content url="http://kinokunya.files.wordpress.com/2009/03/dsc00397.jpg" medium="image">
			<media:title type="html">dsc00397</media:title>
		</media:content>
	</item>
		<item>
		<title>周杰倫 &#8211; 给我一首歌的时间</title>
		<link>http://kinokunya.wordpress.com/2009/03/01/geiwoyishougedeshijian/</link>
		<comments>http://kinokunya.wordpress.com/2009/03/01/geiwoyishougedeshijian/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 16:00:10 +0000</pubDate>
		<dc:creator>Kinokunya</dc:creator>
				<category><![CDATA[Chords]]></category>

		<guid isPermaLink="false">http://kinokunya.wordpress.com/?p=272</guid>
		<description><![CDATA[Key: C# Capo 1 &#8211; Play C Intro: &#124;C     &#124;G/B         &#124;Am7    &#124;Am7/G    &#124; &#124;F      &#124;Em Am7 &#124;Dm7    &#124;G7b9       &#124; Am7             Em                 F                     G 雨淋濕了天空 毀得很講究 你說你不懂 為何在這時牽手 Am7             Em                 F                        G               Am7 我曬干了沉默 悔得很沖動 就算這是做錯 也只是怕錯過 Em               F                       G                      Am7 在一起叫夢 分開了叫痛 是不是說 沒有做完的夢最痛 Em                      F                     Dm7           G9sus4  G7b9 迷路的后果 我能承受    這最后的出口 在愛過了才有 C                   G/B                 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=272&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Key: C#<br />
Capo 1 &#8211; Play C</p>
<p>Intro: |C     |G/B         |Am7    |Am7/G    |<br />
|F      |Em Am7 |Dm7    |G7b9       |</p>
<p>Am7             Em                 F                     G<br />
雨淋濕了天空 毀得很講究 你說你不懂 為何在這時牽手<br />
Am7             Em                 F                        G               Am7<br />
我曬干了沉默 悔得很沖動 就算這是做錯 也只是怕錯過<br />
Em               F                       G                      Am7<br />
在一起叫夢 分開了叫痛 是不是說 沒有做完的夢最痛<br />
Em                      F                     Dm7           G9sus4  G7b9<br />
迷路的后果 我能承受    這最后的出口 在愛過了才有<br />
C                   G/B                 Am7              G<br />
* 能不能給我一首歌的時間 緊緊的把那擁抱變成永遠<br />
F                    Em         Dm7                   G7b9<br />
在我的懷里你不用害怕失眠 如果你想忘記我也能失憶<br />
C                   G/B                 Am7            G<br />
能不能給我一首歌的時間 把故事聽到最后才說再見<br />
F                    Em          Dm7                    G7b9      C<br />
你送我的眼淚 讓它留在雨天 越過你劃的線 我定了勇氣 的終點<br />
Bbsus2       A7   A7/C# Dm7       Dm7/C<br />
你說我不該 不該 不該在這時候    說了我愛你<br />
G/B                    Am7       Am7/G   Fmaj7 Em        Am7<br />
要怎么證明我沒有說謊的力氣 請告訴我暫停算不算放棄<br />
Dm7                Gsus4  G#<br />
我只有一天的回憶 *</p>
<p>(Play * in C#)</p>
<p>Bbsus2 = x-1-2-2-1-1<br />
G9sus4 = 3-3-3-2-x-x<br />
G7b9    = 3-2-0-1-0-0<br />
Gsus4  = 3-2-0-0-1-3</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kinokunya.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kinokunya.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kinokunya.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kinokunya.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kinokunya.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kinokunya.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kinokunya.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kinokunya.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kinokunya.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kinokunya.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kinokunya.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kinokunya.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kinokunya.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kinokunya.wordpress.com/272/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=272&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kinokunya.wordpress.com/2009/03/01/geiwoyishougedeshijian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25fff8d972e8278f2011c252fd01fd47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinokunya</media:title>
		</media:content>
	</item>
		<item>
		<title>My Dunlop Trigger® Capo</title>
		<link>http://kinokunya.wordpress.com/2008/12/19/my-new-dunlop-trigger%c2%ae-capo/</link>
		<comments>http://kinokunya.wordpress.com/2008/12/19/my-new-dunlop-trigger%c2%ae-capo/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 18:37:51 +0000</pubDate>
		<dc:creator>Kinokunya</dc:creator>
				<category><![CDATA[Life+]]></category>
		<category><![CDATA[Capo]]></category>
		<category><![CDATA[Jim Dunlop]]></category>
		<category><![CDATA[The Gig]]></category>

		<guid isPermaLink="false">http://kinokunya.wordpress.com/?p=233</guid>
		<description><![CDATA[Was looking at some guitar related videos on YouTube when I came across 關懷方式, an evergreen song for a local movie years back. I Googled and printed out the chords. Now there&#8217;s always this term &#8220;Capo&#8221; in some of my collection of song chords. I never really paid attention to it until this particular song [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=233&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Was looking at some guitar related videos on YouTube when I came across 關懷方式, an evergreen song for a local movie years back. I Googled and printed out the chords. Now there&#8217;s always this term &#8220;Capo&#8221; in some of my collection of song chords. I never really paid attention to it until this particular song that I realize the need for a Capo. When played, the chords were too low for even casual singing.</p>
<p><em>&#8220;A <strong>capo tasto </strong>s a device used for shortening the strings, and hence raising the pitch, of a stringed instrument such as the guitar&#8221;</em></p>
<p>Got myself a Jim Dunlop 84FN Flat-Nickel Trigger® Capo for acoustic guitars at $21. At least nickel goes well with my guitar, haha.</p>
<p><img class="alignnone size-full wp-image-237" title="dsc00339" src="http://kinokunya.files.wordpress.com/2008/12/dsc00339.jpg?w=580" alt="dsc00339"   /><img class="alignnone size-full wp-image-238" title="dsc00335" src="http://kinokunya.files.wordpress.com/2008/12/dsc00335.jpg?w=580" alt="dsc00335"   /><img class="alignnone size-full wp-image-239" title="dsc00336" src="http://kinokunya.files.wordpress.com/2008/12/dsc00336.jpg?w=580" alt="dsc00336"   /></p>
<p>Not perfect nor smooth, but with practice I hope to get better as to what I&#8217;ve posted now.</p>
<p><span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://s0.wp.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://s0.wp.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=http%3A%2F%2Fwww.fileden.com%2Ffiles%2F2007%2F1%2F7%2F609483%2Fpractice_guanhuaifangshi' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /><param name='wmode' value='opaque' /></object></p></span><br />
(This was already on Capo:2!)</p>
<br /> Tagged: Capo, Jim Dunlop, The Gig <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kinokunya.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kinokunya.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kinokunya.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kinokunya.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kinokunya.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kinokunya.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kinokunya.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kinokunya.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kinokunya.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kinokunya.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kinokunya.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kinokunya.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kinokunya.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kinokunya.wordpress.com/233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kinokunya.wordpress.com&amp;blog=662159&amp;post=233&amp;subd=kinokunya&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kinokunya.wordpress.com/2008/12/19/my-new-dunlop-trigger%c2%ae-capo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25fff8d972e8278f2011c252fd01fd47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kinokunya</media:title>
		</media:content>

		<media:content url="http://kinokunya.files.wordpress.com/2008/12/dsc00339.jpg" medium="image">
			<media:title type="html">dsc00339</media:title>
		</media:content>

		<media:content url="http://kinokunya.files.wordpress.com/2008/12/dsc00335.jpg" medium="image">
			<media:title type="html">dsc00335</media:title>
		</media:content>

		<media:content url="http://kinokunya.files.wordpress.com/2008/12/dsc00336.jpg" medium="image">
			<media:title type="html">dsc00336</media:title>
		</media:content>

		<media:content url="http://www.fileden.com/files/2007/1/7/609483/practice_guanhuaifangshi" medium="audio">
			<media:player url="http://kinokunya.wordpress.com/wp-content/plugins/audio-player/player.swf?soundFile=http://www.fileden.com/files/2007/1/7/609483/practice_guanhuaifangshi" />
		</media:content>
	</item>
	</channel>
</rss>
