<?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>The Rubyist Journal</title>
	<atom:link href="http://rubyist-journal.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rubyist-journal.com</link>
	<description>Dedicated to Ruby community</description>
	<lastBuildDate>Mon, 23 Jan 2012 04:22:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rubyist-journal.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>The Rubyist Journal</title>
		<link>http://rubyist-journal.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rubyist-journal.com/osd.xml" title="The Rubyist Journal" />
	<atom:link rel='hub' href='http://rubyist-journal.com/?pushpress=hub'/>
		<item>
		<title>Specify precision and scale attributes for decimal number with scaffold/model/migration generators in Rails 3.2.0</title>
		<link>http://rubyist-journal.com/2012/01/22/specify-precision-and-scale-attributes-for-decimal-number-with-scaffoldmodelmigration-generators-in-rails-3-2-0/</link>
		<comments>http://rubyist-journal.com/2012/01/22/specify-precision-and-scale-attributes-for-decimal-number-with-scaffoldmodelmigration-generators-in-rails-3-2-0/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 22:35:20 +0000</pubDate>
		<dc:creator>joneslee85</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[3.2]]></category>
		<category><![CDATA[decimal]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[precision]]></category>
		<category><![CDATA[scaffold]]></category>
		<category><![CDATA[scale]]></category>

		<guid isPermaLink="false">http://rubyist-journal.com/?p=982</guid>
		<description><![CDATA[By using the short hand  :decimal{precision, scale}, rails generator lets you generate number migration with decimal and scale. You could use {precision, scale} or {precison-scale} or {precision.scale} shorhand: rails g scaffold Product title:string price:decimal{8,2} the above would generate a migration of: t.decimal :price, :precision =&#62; 8, :scale =&#62; 2 NOTE: sadly, this feature is so &#8230; <a href="http://rubyist-journal.com/2012/01/22/specify-precision-and-scale-attributes-for-decimal-number-with-scaffoldmodelmigration-generators-in-rails-3-2-0/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=982&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By using the short hand  <strong>:decimal{precision, scale}</strong>, rails generator lets you generate number migration with decimal and scale. You could use <strong>{precision, scale}</strong> or <strong>{precison-scale}</strong> or <strong>{precision.scale}</strong> shorhand:</p>
<p><code>rails g scaffold Product title:string price:decimal{8,2}</code></p>
<p>the above would generate a migration of:</p>
<p><code>t.decimal :price, :precision =&gt; 8, :scale =&gt; 2</code></p>
<p>NOTE: sadly, this feature is so broken as of the release of 3.2.0 and is addressed in the bug <a href="https://github.com/rails/rails/issues/4602">#4602</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joneslee85.wordpress.com/982/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joneslee85.wordpress.com/982/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joneslee85.wordpress.com/982/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joneslee85.wordpress.com/982/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joneslee85.wordpress.com/982/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joneslee85.wordpress.com/982/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joneslee85.wordpress.com/982/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joneslee85.wordpress.com/982/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joneslee85.wordpress.com/982/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joneslee85.wordpress.com/982/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joneslee85.wordpress.com/982/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joneslee85.wordpress.com/982/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joneslee85.wordpress.com/982/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joneslee85.wordpress.com/982/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=982&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubyist-journal.com/2012/01/22/specify-precision-and-scale-attributes-for-decimal-number-with-scaffoldmodelmigration-generators-in-rails-3-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/169264c25b4bccc3f710e4fc0c6f66fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joneslee85</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy Lunar New Year!</title>
		<link>http://rubyist-journal.com/2012/01/22/happy-lunar-new-year/</link>
		<comments>http://rubyist-journal.com/2012/01/22/happy-lunar-new-year/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 13:45:41 +0000</pubDate>
		<dc:creator>joneslee85</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rubyist-journal.com/?p=980</guid>
		<description><![CDATA[Happy New Year to all friends and readers. You guys have been, are and always be my inspiration to write and contribute to the great Ruby community. I would like to take this opportunity to extend my wish to all of you a year of Dragon full with prosperities, wealths and lucks.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=980&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Happy New Year to all friends and readers. You guys have been, are and always be my inspiration to write and contribute to the great Ruby community. I would like to take this opportunity to extend my wish to all of you a year of Dragon full with prosperities, wealths and lucks.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joneslee85.wordpress.com/980/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joneslee85.wordpress.com/980/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joneslee85.wordpress.com/980/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joneslee85.wordpress.com/980/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joneslee85.wordpress.com/980/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joneslee85.wordpress.com/980/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joneslee85.wordpress.com/980/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joneslee85.wordpress.com/980/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joneslee85.wordpress.com/980/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joneslee85.wordpress.com/980/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joneslee85.wordpress.com/980/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joneslee85.wordpress.com/980/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joneslee85.wordpress.com/980/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joneslee85.wordpress.com/980/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=980&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubyist-journal.com/2012/01/22/happy-lunar-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/169264c25b4bccc3f710e4fc0c6f66fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joneslee85</media:title>
		</media:content>
	</item>
		<item>
		<title>Introduction to The Suicidal Jumpman Ruby game aka ROFLBALT</title>
		<link>http://rubyist-journal.com/2012/01/17/introduction-to-the-suicidal-jumpman-ruby-game-aka-roflbalt/</link>
		<comments>http://rubyist-journal.com/2012/01/17/introduction-to-the-suicidal-jumpman-ruby-game-aka-roflbalt/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 06:35:30 +0000</pubDate>
		<dc:creator>joneslee85</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[ascii]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[jumpman]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://rubyist-journal.com/?p=974</guid>
		<description><![CDATA[Hi folks, the last 3 days were MADLY fun for me @ Railscamp X (Adelaide). I was blown away with beers, whiskey, Werewolfs, foods, geeks, hackers and their SUPERCOOL hacks. Dennis Hotson (@dennishotson) and Paul Annesley (@pda) decided to join force to create a game that if was released before Mario, it would probably take on &#8230; <a href="http://rubyist-journal.com/2012/01/17/introduction-to-the-suicidal-jumpman-ruby-game-aka-roflbalt/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=974&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi folks, the last 3 days were MADLY fun for me @ Railscamp X (Adelaide). I was blown away with beers, whiskey, Werewolfs, foods, geeks, hackers and their SUPERCOOL hacks. Dennis Hotson (<a href="https://twitter.com/#!/dennishotson">@dennishotson</a>) and Paul Annesley (<a title="@pda twitter" href="https://twitter.com/#!/pda" target="_blank">@pda</a>) decided to join force to create a game that if was released before Mario, it would probably take on the world. (Unfortunately it was 25 years later). The game goal is to sustain alive by jumping on the top of the building as long as possible.</p>
<span style="text-align:center; display: block;"><a href="http://rubyist-journal.com/2012/01/17/introduction-to-the-suicidal-jumpman-ruby-game-aka-roflbalt/"><img src="http://img.youtube.com/vi/VoHmJfXqwbM/2.jpg" alt="" /></a></span>
<p>It is interesting to see the progress that Paul and Dennis made, from such few characters to draw the man (not knowing jumping yet) and build blocks to animated jumpman chasing the helicopter which blasted to pieces if bumped into buildings (/w blood trails on the building). Paul and Dennis called the game ROLFBALT, for me I would call it the Suicidal Jumpan for its bloody ending scene. I rank this game 2nd after the Wolf3D clone Rubystein. Give it a try now at <a title="ROLFBALT" href="https://github.com/pda/roflbalt" target="_blank">https://github.com/pda/roflbalt</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joneslee85.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joneslee85.wordpress.com/974/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joneslee85.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joneslee85.wordpress.com/974/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joneslee85.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joneslee85.wordpress.com/974/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joneslee85.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joneslee85.wordpress.com/974/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joneslee85.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joneslee85.wordpress.com/974/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joneslee85.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joneslee85.wordpress.com/974/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joneslee85.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joneslee85.wordpress.com/974/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=974&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubyist-journal.com/2012/01/17/introduction-to-the-suicidal-jumpman-ruby-game-aka-roflbalt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/169264c25b4bccc3f710e4fc0c6f66fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joneslee85</media:title>
		</media:content>
	</item>
		<item>
		<title>Replace Honda Accord Euro MY05 Battery</title>
		<link>http://rubyist-journal.com/2011/12/15/replace-honda-accord-euro-my05-battery/</link>
		<comments>http://rubyist-journal.com/2011/12/15/replace-honda-accord-euro-my05-battery/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 11:41:16 +0000</pubDate>
		<dc:creator>joneslee85</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2005]]></category>
		<category><![CDATA[accord euro]]></category>
		<category><![CDATA[battery]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[honda]]></category>
		<category><![CDATA[supercharge]]></category>

		<guid isPermaLink="false">http://joneslee85.wordpress.com/?p=966</guid>
		<description><![CDATA[This year is the worst year of my life, everything is breaking down. And just a week before X-Mas, my car battery decided to retire after 5 years of hard work. So I started venturing into the World Wide Web to find a best replacement part. After digging into few forums, all recommended to go &#8230; <a href="http://rubyist-journal.com/2011/12/15/replace-honda-accord-euro-my05-battery/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=966&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://joneslee85.files.wordpress.com/2011/12/screen-shot-2011-12-15-at-10-40-58-pm.png"><img src="http://joneslee85.files.wordpress.com/2011/12/screen-shot-2011-12-15-at-10-40-58-pm.png?w=510&#038;h=311" alt="" title="SuperCharge Silver SMF55D23L" width="510" height="311" class="aligncenter size-full wp-image-967" /></a></p>
<p>This year is the worst year of my life, everything is breaking down. And just a week before X-Mas, my car battery decided to retire after 5 years of hard work. So I started venturing into the World Wide Web to find a best replacement part. After digging into few forums, all recommended to go for ACDelco 430 or Supercharge Gold MF75****. It turns out that those batteries does not fit perfectly with my Accord Euro MY05. Besides, they are quite expensive too ~ around $150 AUD. In the end I called up John Blair Honda Parts and got a good deal for the Supercharge Silver SMF55D23L for $130. Off I went to pick it up and quickly got my dead battery replaced. Now my car roar like a real lion with a full 500CCA (the stock part is 300CCA though). I think I should hit the road now <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joneslee85.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joneslee85.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joneslee85.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joneslee85.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joneslee85.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joneslee85.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joneslee85.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joneslee85.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joneslee85.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joneslee85.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joneslee85.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joneslee85.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joneslee85.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joneslee85.wordpress.com/966/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=966&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubyist-journal.com/2011/12/15/replace-honda-accord-euro-my05-battery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/169264c25b4bccc3f710e4fc0c6f66fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joneslee85</media:title>
		</media:content>

		<media:content url="http://joneslee85.files.wordpress.com/2011/12/screen-shot-2011-12-15-at-10-40-58-pm.png" medium="image">
			<media:title type="html">SuperCharge Silver SMF55D23L</media:title>
		</media:content>
	</item>
		<item>
		<title>Open Cubic Player (ocp) is now available under Homebrew for all MacOS X</title>
		<link>http://rubyist-journal.com/2011/12/12/open-cubic-player-ocp-is-now-available-under-homebrew-for-all-macos-x/</link>
		<comments>http://rubyist-journal.com/2011/12/12/open-cubic-player-ocp-is-now-available-under-homebrew-for-all-macos-x/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 09:54:29 +0000</pubDate>
		<dc:creator>joneslee85</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[player]]></category>

		<guid isPermaLink="false">http://joneslee85.wordpress.com/?p=959</guid>
		<description><![CDATA[For whom who doesn&#8217;t know what Open Cublic Player (ocp) is, this application is a pure console music player for DOS and *NIX based platform. It was one of the most popular app of the DOS era. Though lacking mouse control and a graphical user interface, many hackers/developers still prefer it to other GUI music &#8230; <a href="http://rubyist-journal.com/2011/12/12/open-cubic-player-ocp-is-now-available-under-homebrew-for-all-macos-x/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=959&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://joneslee85.files.wordpress.com/2011/12/ocp.png"><img class="aligncenter size-full wp-image-960" title="Open Cubic Player (ocp) on OSX Lion 10.7" src="http://joneslee85.files.wordpress.com/2011/12/ocp.png?w=510&#038;h=284" alt="" width="510" height="284" /></a></p>
<p>For whom who doesn&#8217;t know what <strong>Open Cublic Player</strong> (ocp) is, this application is a pure console music player for DOS and *NIX based platform. It was one of the most popular app of the DOS era. Though lacking mouse control and a graphical user interface, many hackers/developers still prefer it to other GUI music players for its light overhead and rich features.</p>
<p>Today, I am delighted to announce that ocp Formula is officially committed into Homebrew repository. I&#8217;d like to thank Stian for the great app and for being patient with me on many emails back and forth on fixing nested functions compiling issues with gcc on OSX. To all console lovers out there, you can start trying out this great app right now:</p>
<pre>$ brew update
$ brew install ocp
$ ocp</pre>
<p>Bugs reports are greatly welcomed. Enjoy!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joneslee85.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joneslee85.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joneslee85.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joneslee85.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joneslee85.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joneslee85.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joneslee85.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joneslee85.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joneslee85.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joneslee85.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joneslee85.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joneslee85.wordpress.com/959/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joneslee85.wordpress.com/959/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joneslee85.wordpress.com/959/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=959&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubyist-journal.com/2011/12/12/open-cubic-player-ocp-is-now-available-under-homebrew-for-all-macos-x/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/169264c25b4bccc3f710e4fc0c6f66fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joneslee85</media:title>
		</media:content>

		<media:content url="http://joneslee85.files.wordpress.com/2011/12/ocp.png" medium="image">
			<media:title type="html">Open Cubic Player (ocp) on OSX Lion 10.7</media:title>
		</media:content>
	</item>
		<item>
		<title>Best way to read codes before you sleep</title>
		<link>http://rubyist-journal.com/2011/12/04/best-way-to-read-codes-before-you-sleep/</link>
		<comments>http://rubyist-journal.com/2011/12/04/best-way-to-read-codes-before-you-sleep/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 10:40:30 +0000</pubDate>
		<dc:creator>joneslee85</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[orientation]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[sleep]]></category>
		<category><![CDATA[text editor]]></category>
		<category><![CDATA[vertical]]></category>
		<category><![CDATA[vico]]></category>

		<guid isPermaLink="false">http://joneslee85.wordpress.com/?p=956</guid>
		<description><![CDATA[Before I go to bed, I force myself to read code on my laptop while laying on bed. I normally lie down sideway facing left or right so I am more comfortable reading code that is vertically rotated. Thanks to Vico text-editor orientation feature, I could set the Orientation to Vertical and all codes are &#8230; <a href="http://rubyist-journal.com/2011/12/04/best-way-to-read-codes-before-you-sleep/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=956&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://joneslee85.files.wordpress.com/2011/12/screen-shot-2011-12-04-at-9-37-42-pm.png"><img class="aligncenter size-medium wp-image-957" title="Vico (Vertical Orientation)" src="http://joneslee85.files.wordpress.com/2011/12/screen-shot-2011-12-04-at-9-37-42-pm.png?w=265&#038;h=300" alt="" width="265" height="300" /></a></p>
<p>Before I go to bed, I force myself to read code on my laptop while laying on bed. I normally lie down sideway facing left or right so I am more comfortable reading code that is vertically rotated. Thanks to <a title="Vico" href="http://www.vicoapp.com/" target="_blank">Vico text-editor </a>orientation feature, I could set the Orientation to Vertical and all codes are now vertically rotated for me.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joneslee85.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joneslee85.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joneslee85.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joneslee85.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joneslee85.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joneslee85.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joneslee85.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joneslee85.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joneslee85.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joneslee85.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joneslee85.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joneslee85.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joneslee85.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joneslee85.wordpress.com/956/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=956&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubyist-journal.com/2011/12/04/best-way-to-read-codes-before-you-sleep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/169264c25b4bccc3f710e4fc0c6f66fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joneslee85</media:title>
		</media:content>

		<media:content url="http://joneslee85.files.wordpress.com/2011/12/screen-shot-2011-12-04-at-9-37-42-pm.png?w=265" medium="image">
			<media:title type="html">Vico (Vertical Orientation)</media:title>
		</media:content>
	</item>
		<item>
		<title>Quantum talk by Damian Conway @ YOW 2011</title>
		<link>http://rubyist-journal.com/2011/12/01/quantum-talk-by-damian-conway-yow-2011/</link>
		<comments>http://rubyist-journal.com/2011/12/01/quantum-talk-by-damian-conway-yow-2011/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 23:23:23 +0000</pubDate>
		<dc:creator>joneslee85</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://joneslee85.wordpress.com/?p=953</guid>
		<description><![CDATA[Damian is a truly world-class speaker. His talk on Temporally Quaquaversal Virtual Nanomachine Programming In Multiple Topologically Connected Quantum-Relativistic Parallel Timespaces is very inspiring. I&#8217;d recommend you to check that out once the talk video is up online.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=953&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Damian is a truly world-class speaker. His talk on Temporally Quaquaversal Virtual Nanomachine Programming In Multiple Topologically Connected Quantum-Relativistic Parallel Timespaces is very inspiring. I&#8217;d recommend you to check that out once the talk video is up online.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joneslee85.wordpress.com/953/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joneslee85.wordpress.com/953/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joneslee85.wordpress.com/953/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joneslee85.wordpress.com/953/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joneslee85.wordpress.com/953/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joneslee85.wordpress.com/953/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joneslee85.wordpress.com/953/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joneslee85.wordpress.com/953/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joneslee85.wordpress.com/953/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joneslee85.wordpress.com/953/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joneslee85.wordpress.com/953/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joneslee85.wordpress.com/953/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joneslee85.wordpress.com/953/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joneslee85.wordpress.com/953/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=953&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubyist-journal.com/2011/12/01/quantum-talk-by-damian-conway-yow-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/169264c25b4bccc3f710e4fc0c6f66fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joneslee85</media:title>
		</media:content>
	</item>
		<item>
		<title>Multi-line comment with Ruby</title>
		<link>http://rubyist-journal.com/2011/11/30/multi-line-comment-with-ruby/</link>
		<comments>http://rubyist-journal.com/2011/11/30/multi-line-comment-with-ruby/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 12:17:49 +0000</pubDate>
		<dc:creator>joneslee85</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://joneslee85.wordpress.com/?p=949</guid>
		<description><![CDATA[=begin line 1 blah blah line 2 blah blah =end<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=949&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>
=begin
line 1 blah blah
line 2 blah blah
=end
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joneslee85.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joneslee85.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joneslee85.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joneslee85.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joneslee85.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joneslee85.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joneslee85.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joneslee85.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joneslee85.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joneslee85.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joneslee85.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joneslee85.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joneslee85.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joneslee85.wordpress.com/949/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=949&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubyist-journal.com/2011/11/30/multi-line-comment-with-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/169264c25b4bccc3f710e4fc0c6f66fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joneslee85</media:title>
		</media:content>
	</item>
		<item>
		<title>Love hopes all things</title>
		<link>http://rubyist-journal.com/2011/11/25/love-hopes-all-things/</link>
		<comments>http://rubyist-journal.com/2011/11/25/love-hopes-all-things/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 03:59:22 +0000</pubDate>
		<dc:creator>joneslee85</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[love]]></category>

		<guid isPermaLink="false">http://joneslee85.wordpress.com/?p=928</guid>
		<description><![CDATA[The Truelove There is a faith in loving fiercely the one who is rightfully yours, especially if you have waited years and especially if part of you never believed you could deserve this loved and beckoning hand held out to you this way. I am thinking of faith now&#8230; Well Love hopes all things and &#8230; <a href="http://rubyist-journal.com/2011/11/25/love-hopes-all-things/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=928&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Truelove</p>
<p>There is a faith in loving fiercely<br />
the one who is rightfully yours,<br />
especially if you have<br />
waited years and especially<br />
if part of you never believed<br />
you could deserve this<br />
loved and beckoning hand<br />
held out to you this way.</p>
<p>I am thinking of faith now&#8230;</p>
<p>Well Love hopes all things and I hope you. I love you</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joneslee85.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joneslee85.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joneslee85.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joneslee85.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joneslee85.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joneslee85.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joneslee85.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joneslee85.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joneslee85.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joneslee85.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joneslee85.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joneslee85.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joneslee85.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joneslee85.wordpress.com/928/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=928&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubyist-journal.com/2011/11/25/love-hopes-all-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/169264c25b4bccc3f710e4fc0c6f66fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joneslee85</media:title>
		</media:content>
	</item>
		<item>
		<title>Howto remap Alt key to Meta key and Windows key to Option key on a PC keyboard for OSX?</title>
		<link>http://rubyist-journal.com/2011/11/22/howto-remap-alt-key-to-meta-key-and-windows-key-to-option-key-on-a-pc-keyboard-for-osx/</link>
		<comments>http://rubyist-journal.com/2011/11/22/howto-remap-alt-key-to-meta-key-and-windows-key-to-option-key-on-a-pc-keyboard-for-osx/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 23:09:31 +0000</pubDate>
		<dc:creator>joneslee85</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[option]]></category>
		<category><![CDATA[remap]]></category>

		<guid isPermaLink="false">http://joneslee85.wordpress.com/?p=943</guid>
		<description><![CDATA[Apple is famous for beautiful design with poor usability. After typing for a while, my fingers hurt so I decided not to use the Mac keyboard and replace it with a PC keyboard, in my case is the shiny and hefty Realforce 87UW keyboard. The downside of PC keyboard is the position of the Windows ~ Apple &#8230; <a href="http://rubyist-journal.com/2011/11/22/howto-remap-alt-key-to-meta-key-and-windows-key-to-option-key-on-a-pc-keyboard-for-osx/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=943&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://joneslee85.files.wordpress.com/2011/11/screen-shot-2011-11-03-at-10-39-33-pm.png"><img class="aligncenter size-full wp-image-944" title="Remap keyboard keys OSX" src="http://joneslee85.files.wordpress.com/2011/11/screen-shot-2011-11-03-at-10-39-33-pm.png?w=510&#038;h=438" alt="" width="510" height="438" /></a></p>
<p>Apple is famous for beautiful design with poor usability. After typing for a while, my fingers hurt so I decided not to use the Mac keyboard and replace it with a PC keyboard, in my case is the shiny and hefty <a title="Realforce 87UW keyboard" href="http://elitekeyboards.com/products.php?sub=topre_keyboards,rftenkeyless&amp;pid=rf_se0700" target="_blank">Realforce 87UW</a> keyboard. The downside of PC keyboard is the position of the Windows ~ Apple key  is swapped with the Alt key. In one of my <a href="http://joneslee85.wordpress.com/2010/06/23/howto-remap-alt-key-to-meta-key-and-windows-key-to-option-key-on-a-pc-keyboard/" target="_blank">old post</a>, I used DoubleCommand to remap those keys, yet I have been feeling there must be a easier way. Now I found a way w/o installing any external apps, here is how:</p>
<p>1. Go to <strong>System Preferences</strong> &gt; <strong>Keyboards</strong> &gt; <strong>Modifiers Keys</strong></p>
<p>2. Select the keyboard: Realforce 87 (yours differs)</p>
<p>3. Select <strong>Apple Command</strong> for <strong>Option Key</strong></p>
<p>4. Select <strong>Option Key</strong> for <strong>Apple Command</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joneslee85.wordpress.com/943/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joneslee85.wordpress.com/943/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joneslee85.wordpress.com/943/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joneslee85.wordpress.com/943/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joneslee85.wordpress.com/943/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joneslee85.wordpress.com/943/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joneslee85.wordpress.com/943/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joneslee85.wordpress.com/943/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joneslee85.wordpress.com/943/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joneslee85.wordpress.com/943/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joneslee85.wordpress.com/943/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joneslee85.wordpress.com/943/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joneslee85.wordpress.com/943/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joneslee85.wordpress.com/943/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rubyist-journal.com&amp;blog=590903&amp;post=943&amp;subd=joneslee85&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rubyist-journal.com/2011/11/22/howto-remap-alt-key-to-meta-key-and-windows-key-to-option-key-on-a-pc-keyboard-for-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/169264c25b4bccc3f710e4fc0c6f66fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joneslee85</media:title>
		</media:content>

		<media:content url="http://joneslee85.files.wordpress.com/2011/11/screen-shot-2011-11-03-at-10-39-33-pm.png" medium="image">
			<media:title type="html">Remap keyboard keys OSX</media:title>
		</media:content>
	</item>
	</channel>
</rss>
