<?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>theKindOfMe</title>
	<atom:link href="http://thekindofme.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thekindofme.wordpress.com</link>
	<description>"It's not stupid, it's advanced." -Space Invader Zim</description>
	<lastBuildDate>Fri, 21 Sep 2012 01:04:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='thekindofme.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>theKindOfMe</title>
		<link>http://thekindofme.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://thekindofme.wordpress.com/osd.xml" title="theKindOfMe" />
	<atom:link rel='hub' href='http://thekindofme.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Rails Assets Pipeline Survival Guide</title>
		<link>http://thekindofme.wordpress.com/2012/01/26/rails-assets-pipeline-survival-guide/</link>
		<comments>http://thekindofme.wordpress.com/2012/01/26/rails-assets-pipeline-survival-guide/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 01:50:11 +0000</pubDate>
		<dc:creator>yasi8h</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[assets pipeline]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[ror]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://thekindofme.wordpress.com/?p=636</guid>
		<description><![CDATA[Helpful settings If you have assets pipeline enabled. By default you need to precompile your assets every time you change something (in production env). Having everything precompiled is cool but this will ask rails compile any assets that are not already compiled. # Don't fallback to assets pipeline if a precompiled asset is missed config.assets.compile [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=636&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<h3>Helpful settings</h3>
<p>If you have assets pipeline enabled. By default you need to precompile your assets every time you change something (in production env). Having everything precompiled is cool but this will ask rails compile any assets that are not already compiled.</p>
<pre># Don't fallback to assets pipeline if a precompiled asset is missed
 config.assets.compile = true</pre>
<h3>Page Specific JS/CSS</h3>
<p>If you want some JS/CSS to only be included in a specific set of pages.</p>
<ul>
<li>break the page specific JS/CSS code to different files (ex:- profiles.js)</li>
<li>make sure they are not referenced in your manifest file (application.js)</li>
<li>add the following code snippets to the necessary files</li>
</ul>
<div><strong><em>application.html.erb</em></strong> (your main template)</div>
<div>
<pre>&lt;head&gt;
 &lt;title&gt;FamousApp&lt;/title&gt;
 &lt;%= stylesheet_link_tag "application" %&gt;
 &lt;%= javascript_include_tag "application" %&gt;
<strong> &lt;%= yield :head %&gt;</strong>
 &lt;%= csrf_meta_tags %&gt;
&lt;/head&gt;</pre>
</div>
<div><strong><em>specific_page.html.erb</em></strong> (the template where you want your JS to appear)</div>
<div>
<pre>&lt;% content_for :head do %&gt;
 &lt;%= javascript_include_tag "profiles" %&gt;
&lt;% end %&gt;</pre>
<p><em><strong>production.rb</strong></em></p>
<pre># Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
 config.assets.precompile += %w( profiles.js )</pre>
</div>
<h3>Deploying with Capistrano</h3>
<p>This is easy enough</p>
<pre>load 'deploy/assets'</pre>
<p>If you ever run across this problem:</p>
<pre># Disable warning message about missing dirs 'public/[javascripts|images|stylesheets]'
# src: https://github.com/capistrano/capistrano/issues/79
set :normalize_asset_timestamps, false</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thekindofme.wordpress.com/636/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thekindofme.wordpress.com/636/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=636&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thekindofme.wordpress.com/2012/01/26/rails-assets-pipeline-survival-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8c573345f80ec8131e3341cd457000d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yasi8h</media:title>
		</media:content>
	</item>
		<item>
		<title>Note: Test and View available Rails Routes</title>
		<link>http://thekindofme.wordpress.com/2012/01/17/note-test-and-view-available-rails-routes/</link>
		<comments>http://thekindofme.wordpress.com/2012/01/17/note-test-and-view-available-rails-routes/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 03:39:12 +0000</pubDate>
		<dc:creator>yasi8h</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://thekindofme.wordpress.com/?p=633</guid>
		<description><![CDATA[See all available routes rake routes Check route/path/URL helpers (in rails console) app.the_route_you_want_to_test_path OR app.the_route_you_want_to_test_url<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=633&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>See all available routes</p>
<pre>rake routes</pre>
<p>Check route/path/URL helpers (in rails console)</p>
<pre>app.the_route_you_want_to_test_path</pre>
<p>OR</p>
<pre>app.the_route_you_want_to_test_url</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thekindofme.wordpress.com/633/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thekindofme.wordpress.com/633/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=633&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thekindofme.wordpress.com/2012/01/17/note-test-and-view-available-rails-routes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8c573345f80ec8131e3341cd457000d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yasi8h</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL &#8216;Group By&#8217; + &#8216;Order By&#8217; in Mongodb</title>
		<link>http://thekindofme.wordpress.com/2012/01/05/sql-group-by-order-by-in-mongodb/</link>
		<comments>http://thekindofme.wordpress.com/2012/01/05/sql-group-by-order-by-in-mongodb/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 04:50:16 +0000</pubDate>
		<dc:creator>yasi8h</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://thekindofme.wordpress.com/?p=499</guid>
		<description><![CDATA[As a newbie to mongodb i was a bit puzzled when i couldn&#8217;t find a equivalent to the SQL group by combined with order by in mongodb. Group If you just want to go a SQL group by in mongodb you can use the group() function (refer http://www.mongodb.org/display/DOCS/Aggregation#Aggregation-Group). however the results you get from group function cannot be sorted using [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=499&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>As a newbie to mongodb i was a bit puzzled when i couldn&#8217;t find a equivalent to the SQL group by combined with order by in mongodb.</p>
<h4></h4>
<h4>Group</h4>
<p>If you just want to go a SQL group by in mongodb you can use the group() function (refer <a title="http://www.mongodb.org/display/DOCS/Aggregation#Aggregation-Group" href="http://www.mongodb.org/display/DOCS/Aggregation#Aggregation-Group">http://www.mongodb.org/display/DOCS/Aggregation#Aggregation-Group</a>). however the results you get from group function cannot be sorted using the sort() function. This is because group function does not return a cursor (on which you can sort(), limit()&#8230;etc), but a single document.</p>
<p>You can&#8217;t sort the document wich is returned by group but you can sort the document in the client side. This is one way to go about doing a &#8216;group by + order by&#8217;. However if you don&#8217;t want to sort things in the client side you can use mapreduce.</p>
<h4>MapReduce</h4>
<p>This is probably not as simple as you would want it to be. But until mongodb supports a one liner for group by + order by function this is the only way to go about it.</p>
<p>You can refer the <a title="http://www.mongodb.org/display/DOCS/MapReduce" href="http://www.mongodb.org/display/DOCS/MapReduce">MapReduce</a> documentation in the official site to get a better understanding about how it works. But if you just want to do a simple group by + order by equivalent in mongodb you can look at the sample bellow.</p>
<h5>Mongodb Data Structure</h5>
<pre>gplus_profiles: id(objectId), have_user_in_circles_count (int)</pre>
<h5>SQL</h5>
<pre><code>SELECT COUNT(id), `have_user_in_circles_count` from `gplus_profiles`GROUP BY `have_user_in_circles_count` ORDER BY 1 DESC</code></pre>
<h5>Mongodb</h5>
<pre>m = function(){
emit(this.have_user_in_circles_count, { count : 1 });
};
r = function(key, values) {
var total = 0;
for ( var i=0; i&lt;values.length; i++ )
total += values[i].count;
return { count:total };
};
res = db.gplus_profiles.mapReduce(m, r, { out : "myoutputt" } );
db.myoutputt.find().sort({value:-1})</pre>
<p>Although we have to use mapreduce for the time being, a later version of mongodb will <a title="https://jira.mongodb.org/browse/SERVER-447" href="https://jira.mongodb.org/browse/SERVER-447">support</a> group by + order by like functionality natively.</p>
<pre></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thekindofme.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thekindofme.wordpress.com/499/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=499&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thekindofme.wordpress.com/2012/01/05/sql-group-by-order-by-in-mongodb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8c573345f80ec8131e3341cd457000d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yasi8h</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Plus and Google Profiles</title>
		<link>http://thekindofme.wordpress.com/2011/12/21/google-plus-and-google-profiles/</link>
		<comments>http://thekindofme.wordpress.com/2011/12/21/google-plus-and-google-profiles/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 02:26:00 +0000</pubDate>
		<dc:creator>yasi8h</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[notes]]></category>

		<guid isPermaLink="false">http://thekindofme.wordpress.com/?p=495</guid>
		<description><![CDATA[Was a bit confused about Google Profiles and Google Plus profiles. A quick note for my self about the two. Both google plus and google profiles seems to be using the same user id A google profile may or may not have a google plus account (if the user didn&#8217;t opt for google plus) A [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=495&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Was a bit confused about Google Profiles and Google Plus profiles. A quick note for my self about the two.</p>
<ul>
<li>Both google plus and google profiles seems to be using the same user id</li>
<li>A google profile may or may not have a google plus account (if the user didn&#8217;t opt for google plus)</li>
<li>A user who has signed up for both google profile and google plus have one id and one page for both services.</li>
<ul>
<li>which is the google plus profile page.</li>
</ul>
<li>A user who only signed up for google profile has a google profile page (which is different from a google plus profile page).</li>
<li>A user who only signed up for google plus has a google profile page which points to his/her google plus page.</li>
<li>So in essences google plus is a upgrade on top of the google profile.</li>
</ul>
<p>Happy Christmas everyone!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thekindofme.wordpress.com/495/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thekindofme.wordpress.com/495/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=495&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thekindofme.wordpress.com/2011/12/21/google-plus-and-google-profiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8c573345f80ec8131e3341cd457000d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yasi8h</media:title>
		</media:content>
	</item>
		<item>
		<title>Merlion</title>
		<link>http://thekindofme.wordpress.com/2011/09/27/merlion/</link>
		<comments>http://thekindofme.wordpress.com/2011/09/27/merlion/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 09:25:52 +0000</pubDate>
		<dc:creator>yasi8h</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thekindofme.wordpress.com/2011/09/27/merlion/</guid>
		<description><![CDATA[Merlion, a photo by thekindofme on Flickr. The Merlion (Malay: Singa-Laut) is a mythical creature with the head of a lion and the body of a fish, used as a mascot of Singapore. Its name combines &#8220;mer&#8221; meaning the sea and &#8220;lion&#8221;. The fish body represents Singapore&#8217;s origin as a fishing village when it was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=494&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<div style="font-size:.8em;line-height:1.6em;margin:0 0 10px;padding:0;"><a href="http://www.flickr.com/photos/thekindofme/6112126099/" title="Merlion"><img src="http://farm7.static.flickr.com/6197/6112126099_1996b70a30.jpg" alt="Merlion by thekindofme" /></a><br /><span style="margin:0;"><a href="http://www.flickr.com/photos/thekindofme/6112126099/">Merlion</a>, a photo by <a href="http://www.flickr.com/photos/thekindofme/">thekindofme</a> on Flickr.</span></div>
<p>The Merlion (Malay: Singa-Laut) is a mythical creature with the head of a lion and the body of a fish, used as a mascot of Singapore. Its name combines &#8220;mer&#8221; meaning the sea and &#8220;lion&#8221;. The fish body represents Singapore&#8217;s origin as a fishing village when it was called Temasek, which means &#8220;sea town&#8221; in Javanese. The lion head represents Singapore&#8217;s original name — Singapura — meaning &#8220;lion city&#8221; or &#8220;kota singa&#8221;.<br />
The symbol was designed by Fraser Brunner, a member of the Souvenir Committee and curator of the Van Kleef Aquarium, for the logo of the Singapore Tourism Board (STB) in use from 26 March 1964 to 1997[1] and has been its trademarked symbol since 20 July 1966. Although the STB changed their logo in 1997, the STB Act continues to protect the Merlion symbol.[2] Approval must be received from STB before it can be used. The Merlion appears frequently on STB-approved souvenirs.</p>
<p>From: Wikipedia(<a href="http://en.wikipedia.org/wiki/Merlion" rel="nofollow">http://en.wikipedia.org/wiki/Merlion</a>)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thekindofme.wordpress.com/494/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thekindofme.wordpress.com/494/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=494&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thekindofme.wordpress.com/2011/09/27/merlion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8c573345f80ec8131e3341cd457000d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yasi8h</media:title>
		</media:content>

		<media:content url="http://farm7.static.flickr.com/6197/6112126099_1996b70a30.jpg" medium="image">
			<media:title type="html">Merlion by thekindofme</media:title>
		</media:content>
	</item>
		<item>
		<title>Batch Video Conversion to 3gp using ffmpeg</title>
		<link>http://thekindofme.wordpress.com/2011/08/23/batch-video-conversion-to-3gp-using-ffmpeg/</link>
		<comments>http://thekindofme.wordpress.com/2011/08/23/batch-video-conversion-to-3gp-using-ffmpeg/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 06:46:19 +0000</pubDate>
		<dc:creator>yasi8h</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">https://thekindofme.wordpress.com/?p=492</guid>
		<description><![CDATA[Some notes for self reference. Batch video conversion Using some a simple loop (in bash) for f in *.mp4; do ffmpeg -i &#8220;${f}&#8221; -b 4000k -s 4cif -vcodec h263 -acodec aac -y &#8220;${f}_4000.3gp&#8221;; done; Converts all mp4 files in the current folder Original file name: file_one.mp4 Converted file name: file_one.mp4_4000.3gp Convert to 3gp ffmpeg -i [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=492&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Some notes for self reference.</p>
<h2>Batch video conversion</h2>
<p>Using some a simple loop (in bash)</p>
<p><cite>for f in *.mp4; do ffmpeg -i &#8220;${f}&#8221; -b 4000k -s 4cif -vcodec h263 -acodec aac -y &#8220;${f}_4000.3gp&#8221;; done;</cite></p>
<p>Converts all mp4 files in the current folder</p>
<p>Original file name: file_one.mp4</p>
<p>Converted file name: file_one.mp4_4000.3gp</p>
<h2>Convert to 3gp</h2>
<p><cite>ffmpeg -i file_name -s 4cif -vcodec h263 -acodec aac -y converted.3gp</cite></p>
<h2>Convert to with a set bit-rate</h2>
<p>When the set bit rate is 4000k (kilo bits)<br />
<cite>ffmpeg -i file_name -b 4000k -s 4cif -vcodec h263 -acodec aac -y converted.3gp</cite></p>
<h2>Setting resolution</h2>
<p>Use the -s flag to set the resoultion. For possible values refer: <a href="http://ffmpeg.org/ffmpeg-doc.html">http://ffmpeg.org/ffmpeg-doc.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thekindofme.wordpress.com/492/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thekindofme.wordpress.com/492/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=492&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thekindofme.wordpress.com/2011/08/23/batch-video-conversion-to-3gp-using-ffmpeg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8c573345f80ec8131e3341cd457000d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yasi8h</media:title>
		</media:content>
	</item>
		<item>
		<title>Good old days [Photo]</title>
		<link>http://thekindofme.wordpress.com/2011/08/17/good-old-days-photo/</link>
		<comments>http://thekindofme.wordpress.com/2011/08/17/good-old-days-photo/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 10:59:38 +0000</pubDate>
		<dc:creator>yasi8h</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thekindofme.wordpress.com/2011/08/17/good-old-days-photo/</guid>
		<description><![CDATA[good old days, a photo by thekindofme on Flickr. Some where near the tanjong pagar market and food centre. From atop of a HDB void deck at night (around 9.30PM) . 0.6 sec at f/5.3 45mm with the nikon 18-55 kit lens.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=491&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<div style="font-size:.8em;line-height:1.6em;margin:0 0 10px;padding:0;"><a href="http://www.flickr.com/photos/thekindofme/6052136647/" title="good old days"><img src="http://farm7.static.flickr.com/6181/6052136647_48a22f3b68.jpg" alt="good old days by thekindofme" /></a><br /><span style="margin:0;"><a href="http://www.flickr.com/photos/thekindofme/6052136647/">good old days</a>, a photo by <a href="http://www.flickr.com/photos/thekindofme/">thekindofme</a> on Flickr.</span></div>
<p>Some where near the tanjong pagar market and food centre. From atop of a HDB void deck at night (around 9.30PM) <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . </p>
<p>0.6 sec at f/5.3 45mm with the nikon 18-55 kit lens.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thekindofme.wordpress.com/491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thekindofme.wordpress.com/491/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=491&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thekindofme.wordpress.com/2011/08/17/good-old-days-photo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8c573345f80ec8131e3341cd457000d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yasi8h</media:title>
		</media:content>

		<media:content url="http://farm7.static.flickr.com/6181/6052136647_48a22f3b68.jpg" medium="image">
			<media:title type="html">good old days by thekindofme</media:title>
		</media:content>
	</item>
		<item>
		<title>Favoritemedium is Hiring!: UI Engineer (based in Singapore)</title>
		<link>http://thekindofme.wordpress.com/2011/08/05/favoritemedium-is-hiring-ui-engineer-based-in-singapore/</link>
		<comments>http://thekindofme.wordpress.com/2011/08/05/favoritemedium-is-hiring-ui-engineer-based-in-singapore/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 05:34:47 +0000</pubDate>
		<dc:creator>yasi8h</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[singapore]]></category>

		<guid isPermaLink="false">https://thekindofme.wordpress.com/?p=489</guid>
		<description><![CDATA[The company i work for: favoritemedium is looking for a new UI talent. Basically if you love hacking JS and CSS, this position is for you. Send in your resume, but more importantly some links to your github and twitter If i know you (and about your work) you can contact me and i&#8217;ll refer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=489&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The company i work for: <a href="http://favoritemedium.com/#home">favoritemedium</a> is looking for a new UI talent. Basically if you love hacking JS and CSS, this position is for you. Send in your resume, but more importantly some links to your github and twitter <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>If i know you (and about your work) you can contact me and i&#8217;ll refer you.</p>
<p>Here is the &#8216;official&#8217; ad.</p>
<p><i>UI Engineer (Based in Singapore)</p>
<p>We are a successful web and mobile development consultancy seeking to bring on a UI engineer to assist with front-end web development. Our work environment is both fast-paced and fun.</p>
<p>An ideal candidate should have these capabilities:<br />
Ability to communicate effectively in English. Mandarin is helpful but not mandatory.<br />
Very solid HTML and CSS skills. You must live and breathe it.<br />
JavaScript &#8211; understand concepts like scoping and declaration hoisting<br />
Understand the differences between browser implementations of HTML, CSS, and JS<br />
Reasonably adept with Photoshop<br />
To be clear, this is not a web design position. It involves client-side development and implementation of designs.</p>
<p>This is a full-time position based in Singapore (S088853). </p>
<p>To apply, please email a resume/CV to hr017@favoritemedium.com and use &#8216;SG UI Engineer [2011Q3]&#8216; as the email subject. Include links to Twitter and/or Github accounts, if applicable.</i></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thekindofme.wordpress.com/489/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thekindofme.wordpress.com/489/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=489&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thekindofme.wordpress.com/2011/08/05/favoritemedium-is-hiring-ui-engineer-based-in-singapore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8c573345f80ec8131e3341cd457000d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yasi8h</media:title>
		</media:content>
	</item>
		<item>
		<title>Taking the Plunge: D5100, My first DSLR</title>
		<link>http://thekindofme.wordpress.com/2011/08/05/taking-the-plunge-d5100-my-first-dslr/</link>
		<comments>http://thekindofme.wordpress.com/2011/08/05/taking-the-plunge-d5100-my-first-dslr/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 03:54:16 +0000</pubDate>
		<dc:creator>yasi8h</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://thekindofme.wordpress.com/?p=484</guid>
		<description><![CDATA[About two weeks back, i finally took the plunge and brought my first DSLR: D5100. In retrospect i think it was a impulse buy. I was a bit stressed out from a busy schedule and i think this was my escape from all of it. I have been thinking about buying a DSLR for a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=484&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>About two weeks back, i finally took the plunge and brought my first DSLR: D5100. In retrospect i think it was a impulse buy. I was a bit stressed out from a busy schedule and i think this was my escape from all of it. I have been thinking about buying a DSLR for a long time. However i couldn&#8217;t justify the expense all this time. But now it seems to be worth it. As photography have given me a reason to be excited about something. A hobby that i desperately needed.</p>
<p>Been a total newbie to photography and with a tiny budget i didn&#8217;t have a lot of choices when deciding which camera body to invest it. I think the wise decision would have been to go for a second hand body and spend more cash on some good lenses. But i didn&#8217;t do that <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>I had to decide between Cannon 550D/ 600D/ Nikon D5100. All were in the same price range. And here in Singapore, the Nikon was the cheapest. Although else where the cheapest would have been 550D. After going thorough zillion reviews and articles. The general idea i got was  600D was good for video while D5100 was good for photos (as in it produced better quality photos/better low light sensitivity/better sensor).</p>
<p>As my primary aim was photography and also because the Nikon was cheaper, i went for it. I took the bundled body-lens kit which came with a 18-55 lens. I think so far it have been grate. It lets me take good landscape and portraits. However i am always touching its limits. Sometimes its not wide enough, and sometimes it&#8217;s not long enough <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>But i guess the important thing is that i am having fun learning photography and experimenting with it. You can follow me on flickr at <a href="http://www.flickr.com/thekindofme">http://www.flickr.com/thekindofme</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thekindofme.wordpress.com/484/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thekindofme.wordpress.com/484/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=484&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thekindofme.wordpress.com/2011/08/05/taking-the-plunge-d5100-my-first-dslr/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8c573345f80ec8131e3341cd457000d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yasi8h</media:title>
		</media:content>
	</item>
		<item>
		<title>Fixing foursquare2 gem: NameError: uninitialized constant MultiJson</title>
		<link>http://thekindofme.wordpress.com/2011/06/30/fixing-foursquare2-gem-nameerror-uninitialized-constant-multijson/</link>
		<comments>http://thekindofme.wordpress.com/2011/06/30/fixing-foursquare2-gem-nameerror-uninitialized-constant-multijson/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 12:00:44 +0000</pubDate>
		<dc:creator>yasi8h</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">https://thekindofme.wordpress.com/?p=482</guid>
		<description><![CDATA[If you get a error similar to the one bellow when you try to use (perform a simple task such as get a venue) from the foursquare2 gem. You are probably missing the multi_json gem. NameError: uninitialized constant MultiJson from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday_middleware-0.6.5/lib/faraday/response/parse_json.rb:16:in `parse&#8217; from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/response.rb:17:in `on_complete&#8217; from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/response.rb:9:in `block in call&#8217; from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/response.rb:62:in `on_complete&#8217; from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/response.rb:8:in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=482&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>If you get a error similar to the one bellow when you try to use (perform a simple task such as get a venue) from the foursquare2 gem. You are probably missing the multi_json gem.</p>
<p>NameError: uninitialized constant MultiJson<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday_middleware-0.6.5/lib/faraday/response/parse_json.rb:16:in `parse&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/response.rb:17:in `on_complete&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/response.rb:9:in `block in call&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/response.rb:62:in `on_complete&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/response.rb:8:in `call&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/response.rb:8:in `call&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/adapter/net_http.rb:63:in `call&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/request.rb:88:in `run&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/request.rb:28:in `run&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/connection.rb:170:in `run_request&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/faraday-0.6.1/lib/faraday/connection.rb:64:in `get&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/foursquare2-1.1.0/lib/foursquare2/venues.rb:9:in `venue&#8217;<br />
	from (irb):6<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/railties-3.0.7/lib/rails/commands/console.rb:44:in `start&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/railties-3.0.7/lib/rails/commands/console.rb:8:in `start&#8217;<br />
	from /Users/jamesx/.rvm/gems/ruby-1.9.2-p180@snipwits3/gems/railties-3.0.7/lib/rails/commands.rb:23:in `&#8217;<br />
	from script/rails:6:in `require&#8217;<br />
	from script/rails:6:in `&#8217;ruby-1.9.2-p180 :007 &gt; </p>
<p>So to fix it, just add gem &#8216;multi_json&#8217; to your Gemfile.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thekindofme.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thekindofme.wordpress.com/482/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thekindofme.wordpress.com&#038;blog=996289&#038;post=482&#038;subd=thekindofme&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thekindofme.wordpress.com/2011/06/30/fixing-foursquare2-gem-nameerror-uninitialized-constant-multijson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8c573345f80ec8131e3341cd457000d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yasi8h</media:title>
		</media:content>
	</item>
	</channel>
</rss>
