<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mithro rants about stuff &#187; mithro</title>
	<atom:link href="http://blog.mithis.net/archives/author/mithro/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.mithis.net</link>
	<description></description>
	<lastBuildDate>Fri, 16 Dec 2011 06:02:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>FastComplete, making bash completion fast on remote file systems</title>
		<link>http://blog.mithis.net/archives/useful-bits/407-fastcomplete</link>
		<comments>http://blog.mithis.net/archives/useful-bits/407-fastcomplete#comments</comments>
		<pubDate>Fri, 16 Dec 2011 04:05:46 +0000</pubDate>
		<dc:creator>mithro</dc:creator>
				<category><![CDATA[Useful Bits]]></category>

		<guid isPermaLink="false">http://blog.mithis.net/?p=407</guid>
		<description><![CDATA[Here at Google we have quite a few remote file systems which contain various tools we use in our day-to-day work. As typing sucks we generally want the tools in our $PATH. When you try to tab complete Bash needs to stat a couple of thousand files and even on fast remote file systems this [...]]]></description>
			<content:encoded><![CDATA[<p>Here at Google we have quite a few remote file systems which contain various tools we use in our day-to-day work. As typing sucks we generally want the tools in our $PATH. When you try to tab complete Bash needs to <a href="http://linux.die.net/man/2/stat">stat</a> a couple of thousand files and even on fast remote file systems this takes a drastically long time.</p>
<p>I wrote FastComplete as a solution to this problem. The tool creates a local cache of links on your hard drive to everything in your $PATH. It uses a couple of tricks to make sure all the stats remain locally, while still allowing the remote file to change without needing to update the cache. Linux should also keep this information in memory disk cache making tab completion almost instant again. Yay!</p>
<p>You can find FastComplete at <a href="https://github.com/mithro/rcfiles/blob/master/bin/fastcomplete">https://github.com/mithro/rcfiles/blob/master/bin/fastcomplete</a> It is a stand alone python program which shouldn&#8217;t have any non-core dependencies. The usage documentation is as follows;</p>
<blockquote><p>
Fast complete creates a local disk cache of your path.<br />
It&#8217;s specifically designed to make bash tab complete run much faster. The correct fix would be to add caching to bash, but it was to hard to do so.</p>
<p>To find out what path fastcomplete is currently using:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;</span> ~tansell<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>fastcomplete
<span style="color: #666666; font-style: italic;"># Found 3977 commands</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">PATH</span>=<span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>tansell<span style="color: #000000; font-weight: bold;">/</span>bin: ... :<span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>build<span style="color: #000000; font-weight: bold;">/</span>google3<span style="color: #000000; font-weight: bold;">/</span>googledata<span style="color: #000000; font-weight: bold;">/</span>validators:<span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>build<span style="color: #000000; font-weight: bold;">/</span>google3<span style="color: #000000; font-weight: bold;">/</span>ads<span style="color: #000000; font-weight: bold;">/</span>db</pre></div></div>

<p>To get fastcomplete to rebuild it&#8217;s cache:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;</span> ~tansell<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>fastcomplete <span style="color: #660033;">--rebuild</span>
<span style="color: #666666; font-style: italic;"># Using path of '/home/tansell/bin: ... :/home/build/google3/googledata/validators:/home/build/google3/ads/db'</span>
<span style="color: #666666; font-style: italic;"># Cache /usr/local/google/users//tansell/tabcache/d7e5fb63454ae33b4a171b6437be904a did not exist! Rebuilding....</span>
<span style="color: #666666; font-style: italic;"># Looking in: /home/tansell/bin (execv)</span>
...
<span style="color: #666666; font-style: italic;"># Looking in: /usr/bin (symlink)</span>
...
<span style="color: #666666; font-style: italic;"># Looking in: /home/build/google3/ads/db (execv)</span>
<span style="color: #666666; font-style: italic;"># Found 3977 commands</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">PATH</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>google<span style="color: #000000; font-weight: bold;">/</span>users<span style="color: #000000; font-weight: bold;">//</span>tansell<span style="color: #000000; font-weight: bold;">/</span>tabcache<span style="color: #000000; font-weight: bold;">/</span>d7e5fb63454ae33b4a171b6437be904a</pre></div></div>

<p>To use fastcomplete all the time add the following as the *LAST* line in your ~/.bashrc file. Fastcomplete will echo some output to stderr so you can see what is happening.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Create a cache of the command</span>
<span style="color: #7a0874; font-weight: bold;">eval</span> <span style="color: #000000; font-weight: bold;">`</span>~tansell<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>fastcomplete <span style="color: #007800;">$PATH</span><span style="color: #000000; font-weight: bold;">`</span></pre></div></div>

</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.mithis.net/archives/useful-bits/407-fastcomplete/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pretty incredible short film</title>
		<link>http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22</link>
		<comments>http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22#comments</comments>
		<pubDate>Mon, 05 Dec 2011 16:22:08 +0000</pubDate>
		<dc:creator>mithro</dc:creator>
				<category><![CDATA[JibberJabber]]></category>
		<category><![CDATA[GooglePlus]]></category>

		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22</guid>
		<description><![CDATA[Pretty incredible short film mel peifer originally shared this post: AMAZING!! i just saw this in the g+ film festival. i cried. this is incredible! +Unofficial Google+ Film Festival Posted via Google+]]></description>
			<content:encoded><![CDATA[<p>Pretty incredible short film</p>
<blockquote style='overflow: auto;'><p><img src="https://lh6.googleusercontent.com/-B01PcLBpzjk/AAAAAAAAAAI/AAAAAAAAAAA/Pkmv2eLQFls/photo.jpg?sz=50" style="vertical-align:middle;"> <a href="https://plus.google.com/105852782594022510198">mel peifer</a> originally shared this post:</p>
<blockquote style='overflow: auto;'><p>AMAZING!! i just saw this in the g+ film festival.</p>
<p>i cried. this is incredible!</p>
<p><span class="proflinkWrapper"><span class="proflinkPrefix">+</span><a href="https://plus.google.com/112073635601345120001" class="proflink" oid="112073635601345120001">Unofficial Google+ Film Festival</a></span></p>
<div class='embedded_content video'><iframe width="500" height="281" src="http://www.youtube.com/embed/9DXL9vIUbWg?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></div>
</blockquote>
</blockquote>


<span class="via-google-plus"><a href="https://plus.google.com/100642868990821651444/posts/4YGSdidZnXM">Posted via Google+</a></span>]]></content:encoded>
			<wfw:commentRss>http://blog.mithis.net/archives/jibberjabber/763-pretty-incredible-short-film-22/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>A typewriter that types colors!</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1066-a-typewriter-that-types-colors</link>
		<comments>http://blog.mithis.net/archives/jibberjabber/1066-a-typewriter-that-types-colors#comments</comments>
		<pubDate>Mon, 05 Dec 2011 22:19:40 +0000</pubDate>
		<dc:creator>mithro</dc:creator>
				<category><![CDATA[JibberJabber]]></category>
		<category><![CDATA[GooglePlus]]></category>

		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1066-a-typewriter-that-types-colors</guid>
		<description><![CDATA[A typewriter that types colors! Janet Hawtin originally shared this post: http://tyreecallahan.tumblr.com/post/13602352689/this-is-the-chromatic-typewriter-my-entry-to-the Tyree Callahan &#124; This is the Chromatic Typewriter, my entry to the&#8230; This is the Chromatic Typewriter, my entry to the 2012 West Prize competition. The prize is awarded via popular vote this year. Click the source to get to the West Collection [...]]]></description>
			<content:encoded><![CDATA[<p>A typewriter that types colors!</p>
<blockquote style='overflow: auto;'><p><img src="https://lh3.googleusercontent.com/-o9RBZ9o3jY8/AAAAAAAAAAI/AAAAAAAAAAA/0mqjbYasZ7E/photo.jpg?sz=50" style="vertical-align:middle;"> <a href="https://plus.google.com/116128981825553309714">Janet Hawtin</a> originally shared this post:</p>
<blockquote style='overflow: auto;'><p><a href="http://tyreecallahan.tumblr.com/post/13602352689/this-is-the-chromatic-typewriter-my-entry-to-the" >http://tyreecallahan.tumblr.com/post/13602352689/this-is-the-chromatic-typewriter-my-entry-to-the</a></p>
<p><a href="http://tyreecallahan.tumblr.com/post/13602352689/this-is-the-chromatic-typewriter-my-entry-to-the">Tyree Callahan | This is the Chromatic Typewriter, my entry to the&#8230;</a></p>
<p><img src="http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&#038;gadget=a&#038;resize_h=100&#038;url=http%3A%2F%2F30.media.tumblr.com%2Ftumblr_lvjnizMGiu1r2syygo1_500.jpg" class="alignleft">This is the Chromatic Typewriter, my entry to the 2012 West Prize competition. The prize is awarded via popular vote this year. Click the source to get to the West Collection and to download the West&#8230;.
</p></blockquote>
</blockquote>


<span class="via-google-plus"><a href="https://plus.google.com/100642868990821651444/posts/69tcoXKoSvQ">Posted via Google+</a></span>]]></content:encoded>
			<wfw:commentRss>http://blog.mithis.net/archives/jibberjabber/1066-a-typewriter-that-types-colors/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Almost my complete board game collection</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1067-almost-my-complete-board-game-collection</link>
		<comments>http://blog.mithis.net/archives/jibberjabber/1067-almost-my-complete-board-game-collection#comments</comments>
		<pubDate>Sat, 26 Nov 2011 19:56:23 +0000</pubDate>
		<dc:creator>mithro</dc:creator>
				<category><![CDATA[JibberJabber]]></category>
		<category><![CDATA[gid]]></category>
		<category><![CDATA[GooglePlus]]></category>

		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1067-almost-my-complete-board-game-collection</guid>
		<description><![CDATA[Almost my complete board game collection From the top * Shroom Bloom * Sandwich * Aquarium (plus expansions) * Experiment (plus expansions) * Space Mission * Space Bastards * Lemming Mafia * Space Maze * Paperclip Railways * Galaxy Trucker + Galaxy Trucker The Big Expansion # * Undermining * Settlers of America: Trails to [...]]]></description>
			<content:encoded><![CDATA[<p>Almost my complete board game collection</p>
<p>From the top<br /> * Shroom Bloom<br /> * Sandwich<br /> * Aquarium (plus expansions)<br /> * Experiment (plus expansions)<br /> * Space Mission<br /> * Space Bastards<br /> * Lemming Mafia<br /> * Space Maze<br /> * Paperclip Railways<br /> * Galaxy Trucker + Galaxy Trucker The Big Expansion #<br /> * Undermining<br /> * Settlers of America: Trails to Rails<br /> * Ticket to Ride: Nordic Countries #<br /> * Ticket to Ride: Asia Expansion <br /> * Ticket to Ride: 1912 Expansion<br /> * Soul Hunter <br /> * Modern Society<br /> * Stargate SG1 #<br /> * Battleship Galaxies</p>
<p>Things missing<br /> * Interstellar Mayhem<br /> * Ticket to Ride: Dice expansion<br /> * Pandemic + On the Brink Expansion #<br /> * Space Alert + Space Alert Expansion #<br /> * Cosmic Encounter</p>
<p>I have only played the games marked with a hash. Who wants to play some board games?</p>
<p>Spreadsheet at <a href="https://docs.google.com/a/mithis.com/spreadsheet/ccc?key=0ApVlNZ_Rvdw6dDh3SEIwT3ZWcXBzVFNkYzR2aVVxTHc&amp;hl=en_US#gid=0" >https://docs.google.com/a/mithis.com/spreadsheet/ccc?key=0ApVlNZ_Rvdw6dDh3SEIwT3ZWcXBzVFNkYzR2aVVxTHc&amp;hl=en_US#gid=0</a></p>
<p><a href="https://plus.google.com/photos/100642868990821651444/albums/5679550434287409217/5679548289761383378"><img src="http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&#038;gadget=a&#038;resize_h=100&#038;url=https%3A%2F%2Flh4.googleusercontent.com%2F-twhGNwifIS0%2FTtHPE_fnk9I%2FAAAAAAAAALM%2FneHtFIxLviY%2Fw72-h96%2FIMG_20111127_163928.jpg" class="alignleft"></a></p>


<span class="via-google-plus"><a href="https://plus.google.com/100642868990821651444/posts/J5tC9xquHu5">Posted via Google+</a></span>]]></content:encoded>
			<wfw:commentRss>http://blog.mithis.net/archives/jibberjabber/1067-almost-my-complete-board-game-collection/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Well I can now officially say I&#8217;ve been around the world!</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1068-well-i-can-now-officially-say-ive-been-around-the-world</link>
		<comments>http://blog.mithis.net/archives/jibberjabber/1068-well-i-can-now-officially-say-ive-been-around-the-world#comments</comments>
		<pubDate>Fri, 18 Nov 2011 02:12:21 +0000</pubDate>
		<dc:creator>mithro</dc:creator>
				<category><![CDATA[JibberJabber]]></category>
		<category><![CDATA[GooglePlus]]></category>

		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1068-well-i-can-now-officially-say-ive-been-around-the-world</guid>
		<description><![CDATA[Well I can now officially say I&#39;ve been around the world! Sydney International Airport 5 Ross Smith Ave, Mascot NSW 2020, Australia Posted via Google+]]></description>
			<content:encoded><![CDATA[<p>Well I can now officially say I&#39;ve been around the world!</p>
<p><a href="http://maps.google.com/?ll=-33.9327414,151.1872464&#038;q=-33.9327414,151.1872464"><img src="http://maps.googleapis.com/maps/api/staticmap?center=-33.9327414,151.1872464&#038;zoom=12&#038;size=75x75&#038;maptype=roadmap&#038;markers=size:small|color:red|-33.9327414,151.1872464&#038;sensor=false" class="alignleft"></a></p>
<p>Sydney International Airport</p>
<p><a href="http://maps.google.com/?ll=-33.9327414,151.1872464&#038;q=-33.9327414,151.1872464">5 Ross Smith Ave, Mascot NSW 2020, Australia</a></p>


<span class="via-google-plus"><a href="https://plus.google.com/100642868990821651444/posts/McDyApmMYtu">Posted via Google+</a></span>]]></content:encoded>
			<wfw:commentRss>http://blog.mithis.net/archives/jibberjabber/1068-well-i-can-now-officially-say-ive-been-around-the-world/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Something for Greg. Didn&#8217;t have adult sizes.</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1069-something-for-greg-didnt-have-adult-sizes</link>
		<comments>http://blog.mithis.net/archives/jibberjabber/1069-something-for-greg-didnt-have-adult-sizes#comments</comments>
		<pubDate>Thu, 17 Nov 2011 09:18:24 +0000</pubDate>
		<dc:creator>mithro</dc:creator>
				<category><![CDATA[JibberJabber]]></category>
		<category><![CDATA[GooglePlus]]></category>

		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1069-something-for-greg-didnt-have-adult-sizes</guid>
		<description><![CDATA[Something for Greg. Didn&#39;t have adult sizes. Posted via Google+]]></description>
			<content:encoded><![CDATA[<p>Something for Greg. Didn&#39;t have adult sizes.</p>
<p><a href="https://plus.google.com/photos/100642868990821651444/albums/5675891637012366017/5675891637010990946"><img src="http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&#038;gadget=a&#038;resize_h=100&#038;url=https%3A%2F%2Flh6.googleusercontent.com%2F-z4-aXQhanBs%2FTsTRXyemh2I%2FAAAAAAAAAIg%2FaHtFotess00%2Fs0-d%2F2011%252B-%252B1" class="alignleft"></a></p>


<span class="via-google-plus"><a href="https://plus.google.com/100642868990821651444/posts/Beorcoyr4kB">Posted via Google+</a></span>]]></content:encoded>
			<wfw:commentRss>http://blog.mithis.net/archives/jibberjabber/1069-something-for-greg-didnt-have-adult-sizes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My lunch a Jurong Bird Park.</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1070-my-lunch-a-jurong-bird-park</link>
		<comments>http://blog.mithis.net/archives/jibberjabber/1070-my-lunch-a-jurong-bird-park#comments</comments>
		<pubDate>Thu, 17 Nov 2011 04:52:45 +0000</pubDate>
		<dc:creator>mithro</dc:creator>
				<category><![CDATA[JibberJabber]]></category>
		<category><![CDATA[GooglePlus]]></category>

		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1070-my-lunch-a-jurong-bird-park</guid>
		<description><![CDATA[My lunch a Jurong Bird Park. Jurong Bird Park 2 Jurong Hill, Singapore City 628925 Posted via Google+]]></description>
			<content:encoded><![CDATA[<p>My lunch a Jurong Bird Park.</p>
<p><a href="https://plus.google.com/photos/100642868990821651444/albums/5675823176499477009/5675823179632079090"><img src="http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&#038;gadget=a&#038;resize_h=100&#038;url=https%3A%2F%2Flh6.googleusercontent.com%2F-rUx_LgSQyi4%2FTsSTHC3l8PI%2FAAAAAAAAAHs%2FDeedhBeiqpM%2Fs0-d%2F2011%252B-%252B1" class="alignleft"></a></p>
<p><a href="http://maps.google.com/?ll=1.319118,103.707197&#038;q=1.319118,103.707197"><img src="http://maps.googleapis.com/maps/api/staticmap?center=1.319118,103.707197&#038;zoom=12&#038;size=75x75&#038;maptype=roadmap&#038;markers=size:small|color:red|1.319118,103.707197&#038;sensor=false" class="alignleft"></a></p>
<p>Jurong Bird Park</p>
<p><a href="http://maps.google.com/?ll=1.319118,103.707197&#038;q=1.319118,103.707197">2 Jurong Hill, Singapore City 628925</a></p>


<span class="via-google-plus"><a href="https://plus.google.com/100642868990821651444/posts/BQv6KqjJtEA">Posted via Google+</a></span>]]></content:encoded>
			<wfw:commentRss>http://blog.mithis.net/archives/jibberjabber/1070-my-lunch-a-jurong-bird-park/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>These are almost as awesome as they look. The white one contains a chocolate with faint Vegemite hints. The purple one a yellow custard. The green one a green almost minty jelly.</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1071-these-are-almost-as-awesome-as-they-look-the-white-one-contains-a-chocolate-with-faint-vegemite-hints-the-purple-one-a-yellow-custard-the-green-one-a-green-almost-minty-jelly</link>
		<comments>http://blog.mithis.net/archives/jibberjabber/1071-these-are-almost-as-awesome-as-they-look-the-white-one-contains-a-chocolate-with-faint-vegemite-hints-the-purple-one-a-yellow-custard-the-green-one-a-green-almost-minty-jelly#comments</comments>
		<pubDate>Wed, 16 Nov 2011 18:49:17 +0000</pubDate>
		<dc:creator>mithro</dc:creator>
				<category><![CDATA[JibberJabber]]></category>
		<category><![CDATA[GooglePlus]]></category>

		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1071-these-are-almost-as-awesome-as-they-look-the-white-one-contains-a-chocolate-with-faint-vegemite-hints-the-purple-one-a-yellow-custard-the-green-one-a-green-almost-minty-jelly</guid>
		<description><![CDATA[These are almost as awesome as they look. The white one contains a chocolate with faint Vegemite hints. The purple one a yellow custard. The green one a green almost minty jelly. Jurong Bird Park 2 Jurong Hill, Singapore City 628925 Posted via Google+]]></description>
			<content:encoded><![CDATA[<p>These are almost as awesome as they look. The white one contains a chocolate with faint Vegemite hints. The purple one a yellow custard. The green one a green almost minty jelly.</p>
<p><a href="https://plus.google.com/photos/100642868990821651444/albums/5675822287426798833/5675822288504604866"><img src="http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&#038;gadget=a&#038;resize_h=100&#038;url=https%3A%2F%2Flh4.googleusercontent.com%2F-NDDjDEaUjq4%2FTsSSTLKPyMI%2FAAAAAAAAAHY%2FlQ7M45idoBY%2Fs0-d%2F2011%252B-%252B1" class="alignleft"></a></p>
<p><a href="http://maps.google.com/?ll=1.319118,103.707197&#038;q=1.319118,103.707197"><img src="http://maps.googleapis.com/maps/api/staticmap?center=1.319118,103.707197&#038;zoom=12&#038;size=75x75&#038;maptype=roadmap&#038;markers=size:small|color:red|1.319118,103.707197&#038;sensor=false" class="alignleft"></a></p>
<p>Jurong Bird Park</p>
<p><a href="http://maps.google.com/?ll=1.319118,103.707197&#038;q=1.319118,103.707197">2 Jurong Hill, Singapore City 628925</a></p>


<span class="via-google-plus"><a href="https://plus.google.com/100642868990821651444/posts/5LewTAhZH5Y">Posted via Google+</a></span>]]></content:encoded>
			<wfw:commentRss>http://blog.mithis.net/archives/jibberjabber/1071-these-are-almost-as-awesome-as-they-look-the-white-one-contains-a-chocolate-with-faint-vegemite-hints-the-purple-one-a-yellow-custard-the-green-one-a-green-almost-minty-jelly/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Im being eaten alive!</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1072-im-being-eaten-alive</link>
		<comments>http://blog.mithis.net/archives/jibberjabber/1072-im-being-eaten-alive#comments</comments>
		<pubDate>Tue, 15 Nov 2011 19:14:39 +0000</pubDate>
		<dc:creator>mithro</dc:creator>
				<category><![CDATA[JibberJabber]]></category>
		<category><![CDATA[GooglePlus]]></category>

		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1072-im-being-eaten-alive</guid>
		<description><![CDATA[Im being eaten alive! Feels kinda like a more pleasant pins and needles. Unknown address 20 Netheravon Rd, Singapore Posted via Google+]]></description>
			<content:encoded><![CDATA[<p>Im being eaten alive!</p>
<p>Feels kinda like a more pleasant pins and needles.</p>
<p><a href="https://plus.google.com/photos/100642868990821651444/albums/5675457738693358657/5675457737835190226"><img src="http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&#038;gadget=a&#038;resize_h=100&#038;url=https%3A%2F%2Flh6.googleusercontent.com%2F-tIjhHzBEEpE%2FTsNGviFol9I%2FAAAAAAAAAGk%2FZo5jyo0H74A%2Fs0-d%2F2011%252B-%252B1" class="alignleft"></a></p>
<p><a href="http://maps.google.com/?ll=1.3916002,103.9839428&#038;q=1.3916002,103.9839428"><img src="http://maps.googleapis.com/maps/api/staticmap?center=1.3916002,103.9839428&#038;zoom=12&#038;size=75x75&#038;maptype=roadmap&#038;markers=size:small|color:red|1.3916002,103.9839428&#038;sensor=false" class="alignleft"></a></p>
<p>Unknown address</p>
<p><a href="http://maps.google.com/?ll=1.3916002,103.9839428&#038;q=1.3916002,103.9839428">20 Netheravon Rd, Singapore</a></p>


<span class="via-google-plus"><a href="https://plus.google.com/100642868990821651444/posts/EbYaHV8xSwY">Posted via Google+</a></span>]]></content:encoded>
			<wfw:commentRss>http://blog.mithis.net/archives/jibberjabber/1072-im-being-eaten-alive/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>All gone!</title>
		<link>http://blog.mithis.net/archives/jibberjabber/1073-all-gone</link>
		<comments>http://blog.mithis.net/archives/jibberjabber/1073-all-gone#comments</comments>
		<pubDate>Mon, 14 Nov 2011 19:39:47 +0000</pubDate>
		<dc:creator>mithro</dc:creator>
				<category><![CDATA[JibberJabber]]></category>
		<category><![CDATA[GooglePlus]]></category>

		<guid isPermaLink="false">http://blog.mithis.net/archives/jibberjabber/1073-all-gone</guid>
		<description><![CDATA[All gone! Seoul Jongno-gu Donui-dong Posted via Google+]]></description>
			<content:encoded><![CDATA[<p>All gone!</p>
<p><a href="https://plus.google.com/photos/100642868990821651444/albums/5675093129675853889/5675093129246034594"><img src="http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&#038;gadget=a&#038;resize_h=100&#038;url=https%3A%2F%2Flh4.googleusercontent.com%2F-_MdVg1m2kU0%2FTsH7IhP4SqI%2FAAAAAAAAAGA%2FItIj1RcOLvs%2Fs0-d%2F2011%252B-%252B1" class="alignleft"></a></p>
<p><a href="http://maps.google.com/?ll=37.5723462,126.9912114&#038;q=37.5723462,126.9912114"><img src="http://maps.googleapis.com/maps/api/staticmap?center=37.5723462,126.9912114&#038;zoom=12&#038;size=75x75&#038;maptype=roadmap&#038;markers=size:small|color:red|37.5723462,126.9912114&#038;sensor=false" class="alignleft"></a></p>
<p><a href="http://maps.google.com/?ll=37.5723462,126.9912114&#038;q=37.5723462,126.9912114">Seoul Jongno-gu Donui-dong</a></p>


<span class="via-google-plus"><a href="https://plus.google.com/100642868990821651444/posts/gj85nfR5Gvo">Posted via Google+</a></span>]]></content:encoded>
			<wfw:commentRss>http://blog.mithis.net/archives/jibberjabber/1073-all-gone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

