<?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>Pedro Assunção &#187; jokes</title>
	<atom:link href="http://pedroassuncao.com/category/jokes/feed/" rel="self" type="application/rss+xml" />
	<link>http://pedroassuncao.com</link>
	<description>Thoughts on technology, skydiving, life, and the universe...</description>
	<lastBuildDate>Mon, 02 Jan 2012 19:40:04 +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>Red Hot Chili Peppers lyrics generator</title>
		<link>http://pedroassuncao.com/2011/11/red-hot-chili-peppers-lyrics-generator/</link>
		<comments>http://pedroassuncao.com/2011/11/red-hot-chili-peppers-lyrics-generator/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 10:09:40 +0000</pubDate>
		<dc:creator>Pedro Assunção</dc:creator>
				<category><![CDATA[experiments]]></category>
		<category><![CDATA[findings]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://pedroassuncao.com/?p=1483</guid>
		<description><![CDATA[Here&#8217;s a little something i tried yesterday: a ruby script that mixes and matches verbs, nouns, adjectives, and colors to come up with crazy ass lyrics, red hot style. Enjoy $nouns = IO.readlines('names.txt') $adjectives = IO.readlines('adjectives.txt') $verbs = IO.readlines('verbs.txt') $adjectives &#60;&#60; ['red','blue','green','white','black','yellow','brown','gray'] $pronouns = IO.readlines('pronouns.txt') $adverbs = IO.readlines('adverbs.txt') $prepositions = IO.readlines('prepositions.txt') def get_rand(collection) sleep rand [...]


Related posts:<ol><li><a href='http://pedroassuncao.com/2011/11/new-version-of-the-red-hot-chili-peppers-lyrics-generator/' rel='bookmark' title='New version of the red hot chili peppers lyrics generator'>New version of the red hot chili peppers lyrics generator</a></li>
<li><a href='http://pedroassuncao.com/2010/12/spring-and-hibernate-lazy-loading-collections-in-desktop-swing-applications/' rel='bookmark' title='Spring and hibernate: Lazy loading collections in desktop (swing) applications'>Spring and hibernate: Lazy loading collections in desktop (swing) applications</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Here&#8217;s a little something i tried yesterday: a ruby script that mixes and matches verbs, nouns, adjectives, and colors to come up with crazy ass lyrics, red hot style. Enjoy <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre>$nouns = IO.readlines('names.txt')
$adjectives = IO.readlines('adjectives.txt')
$verbs = IO.readlines('verbs.txt')
$adjectives &lt;&lt; ['red','blue','green','white','black','yellow','brown','gray']
$pronouns = IO.readlines('pronouns.txt')
$adverbs = IO.readlines('adverbs.txt')
$prepositions = IO.readlines('prepositions.txt')

def get_rand(collection)
  sleep rand / 10000
  collection[rand * collection.length.to_i - 1]
end

def preposition_phrase
  "#{get_rand($prepositions).strip} the #{get_rand($nouns).strip}"
end

def adjectivated_subject_phrase
  the_part = "the" if rand.to_f &gt; 0.5
  adjective = get_rand($adjectives).strip if rand.to_f &gt; 0.5
  return "#{the_part} #{adjective} #{get_rand($nouns).strip}" if the_part and adjective
  nil
end

def generate_phrase
  as = adjectivated_subject_phrase
  adjectivated_subject_part = as.nil? ? get_rand($pronouns).strip : as
  preposition_part = rand.to_f &gt; 0.5 ? preposition_phrase : ""
  verb_part = get_rand($verbs).strip
  object_part = rand.to_f &gt; 0.25 ? get_rand($nouns).strip : ""
  the_part = (rand.to_f &gt; 0.5 and object_part != "") ? "the" : ""
  adverb_part = rand.to_f &gt; 0.75 ? get_rand($adverbs).strip : ""

  "#{adjectivated_subject_part} #{preposition_part} #{verb_part} #{the_part} #{object_part} #{adverb_part}".squeeze(" ").strip
end

def generate_lyrics
  result = ""
  (1..5).each do
    first_phrase = generate_phrase
    new_phrase = generate_phrase
    while new_phrase[-2, 2] != first_phrase[-2, 2] or new_phrase.split(" ")[-1] == first_phrase.split(" ")[-1] do
      new_phrase = generate_phrase
    end
    result &lt;&lt; "#{first_phrase}\r\n#{new_phrase}\r\n\r\n"
  end
  result
end

puts generate_lyrics</pre>
<p>Here are the sources: <a href="http://pedroassuncao.com/wp-content/uploads/2011/11/rhcp_lyrics_v2.tar.gz">rhcp_lyrics_v2.tar</a>. As a bonus there is a script to see how many attempts are required to reach the phrase &#8220;The quick brown fox&#8221; <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="shr-publisher-1483"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2011%2F11%2Fred-hot-chili-peppers-lyrics-generator%2F' data-shr_title='Red+Hot+Chili+Peppers+lyrics+generator'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2011%2F11%2Fred-hot-chili-peppers-lyrics-generator%2F' data-shr_title='Red+Hot+Chili+Peppers+lyrics+generator'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->

<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2011/11/new-version-of-the-red-hot-chili-peppers-lyrics-generator/' rel='bookmark' title='New version of the red hot chili peppers lyrics generator'>New version of the red hot chili peppers lyrics generator</a></li>
<li><a href='http://pedroassuncao.com/2010/12/spring-and-hibernate-lazy-loading-collections-in-desktop-swing-applications/' rel='bookmark' title='Spring and hibernate: Lazy loading collections in desktop (swing) applications'>Spring and hibernate: Lazy loading collections in desktop (swing) applications</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2011/11/red-hot-chili-peppers-lyrics-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wank&#8217;o&#039;meter is fun</title>
		<link>http://pedroassuncao.com/2011/05/wankometer-is-fun/</link>
		<comments>http://pedroassuncao.com/2011/05/wankometer-is-fun/#comments</comments>
		<pubDate>Mon, 23 May 2011 20:51:45 +0000</pubDate>
		<dc:creator>Pedro Assunção</dc:creator>
				<category><![CDATA[dumbasses]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[time wasting]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://pedroassuncao.com/2011/05/wankometer-is-fun/</guid>
		<description><![CDATA[Last night i laughed like i didn&#8217;t in a really long time, watching my brother play with the android app &#8220;wank&#8217;o'meter&#8221;. Try it out, it&#8217;s guaranteed fun No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Last night i laughed like i didn&#8217;t in a really long time, watching my brother play with the android app &#8220;wank&#8217;o'meter&#8221;. Try it out, it&#8217;s guaranteed fun <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p class=""><a href="http://farm6.static.flickr.com/5104/5751893691_32d8c6cbdd.jpg" target="_blank"><img src="http://farm6.static.flickr.com/5104/5751893691_32d8c6cbdd.jpg" id="blogsy-1306183827265.393" class="alignleft" width="500" height="375" alt=""></a></p>
<div class="shr-publisher-1403"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2011%2F05%2Fwankometer-is-fun%2F' data-shr_title='Wank%27o%27meter+is+fun'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2011%2F05%2Fwankometer-is-fun%2F' data-shr_title='Wank%27o%27meter+is+fun'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2011/05/wankometer-is-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guru meditation error</title>
		<link>http://pedroassuncao.com/2011/03/guru-meditation-error/</link>
		<comments>http://pedroassuncao.com/2011/03/guru-meditation-error/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 08:49:40 +0000</pubDate>
		<dc:creator>Pedro Assunção</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[findings]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[zen]]></category>

		<guid isPermaLink="false">http://pedroassuncao.com/?p=1260</guid>
		<description><![CDATA[While reading my morning web comics, i noticed this error in wulffmorgenthaler: Guru meditation error. Apparently this is the default way the Varnish HTTP cache shows errors and &#8211; as it turns out &#8211; it comes from the old Commodore Amiga times. It&#8217;s always refreshing to find more developers with a sense of humor Related [...]


Related posts:<ol><li><a href='http://pedroassuncao.com/2010/03/other-probably-intelligent-wordpress-plugins-to-install/' rel='bookmark' title='Other (probably intelligent) wordpress plugins to install'>Other (probably intelligent) wordpress plugins to install</a></li>
<li><a href='http://pedroassuncao.com/2011/02/installing-ruby-on-rails-on-osx-snow-leopard/' rel='bookmark' title='Installing Ruby on Rails on OSX (snow leopard)'>Installing Ruby on Rails on OSX (snow leopard)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p><a href="http://pedroassuncao.com/wp-content/uploads/2011/03/Screen-shot-2011-03-11-at-9.39.40-AM.png"><img class="alignright size-medium wp-image-1261" style="margin: 10px; border: 1px solid black;" title="Guru meditation error" src="http://pedroassuncao.com/wp-content/uploads/2011/03/Screen-shot-2011-03-11-at-9.39.40-AM-300x138.png" alt="" width="300" height="138" /></a>While reading my morning web comics, i noticed this error in <a href="http://wulffmorgenthaler.com/">wulffmorgenthaler</a>: Guru meditation error.</p>
<p>Apparently this is the default way the <a href="http://www.varnish-cache.org/">Varnish HTTP cache</a> shows errors and &#8211; as it turns out &#8211; it comes from the old <a href="http://en.wikipedia.org/wiki/Guru_Meditation">Commodore Amiga times</a>.</p>
<p>It&#8217;s always refreshing to find more developers with a sense of humor <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<div class="shr-publisher-1260"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2011%2F03%2Fguru-meditation-error%2F' data-shr_title='Guru+meditation+error'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2011%2F03%2Fguru-meditation-error%2F' data-shr_title='Guru+meditation+error'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->

<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2010/03/other-probably-intelligent-wordpress-plugins-to-install/' rel='bookmark' title='Other (probably intelligent) wordpress plugins to install'>Other (probably intelligent) wordpress plugins to install</a></li>
<li><a href='http://pedroassuncao.com/2011/02/installing-ruby-on-rails-on-osx-snow-leopard/' rel='bookmark' title='Installing Ruby on Rails on OSX (snow leopard)'>Installing Ruby on Rails on OSX (snow leopard)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2011/03/guru-meditation-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sniper Monkey</title>
		<link>http://pedroassuncao.com/2011/03/sniper-monkey/</link>
		<comments>http://pedroassuncao.com/2011/03/sniper-monkey/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 08:55:05 +0000</pubDate>
		<dc:creator>Pedro Assunção</dc:creator>
				<category><![CDATA[animals]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[nature]]></category>

		<guid isPermaLink="false">http://pedroassuncao.com/2011/03/sniper-monkey/</guid>
		<description><![CDATA[No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p><a href="http://a7.sphotos.ak.fbcdn.net/hphotos-ak-ash4/199991_207318732615452_100000119817796_880009_3609987_n.jpg"><img src="http://pedroassuncao.com/wp-content/uploads/2011/03/sniper_monkey.jpg" alt="Sniper Monkey" width="500" height="450" /></a></p>
<div class="shr-publisher-1256"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2011%2F03%2Fsniper-monkey%2F' data-shr_title='Sniper+Monkey'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2011%2F03%2Fsniper-monkey%2F' data-shr_title='Sniper+Monkey'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2011/03/sniper-monkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>They still call it Blue Screen</title>
		<link>http://pedroassuncao.com/2010/08/they-still-call-it-blue-screen/</link>
		<comments>http://pedroassuncao.com/2010/08/they-still-call-it-blue-screen/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 20:54:36 +0000</pubDate>
		<dc:creator>Pedro Assunção</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://pedroassuncao.com/?p=1114</guid>
		<description><![CDATA[After a long, long time without crashes on my windows box i finally got this one while watching a movie on vimeo.com. It seems they call the crash event &#8220;Blue Screen&#8221;. Got love the nostalgia on the windows developers Related posts:Blue Screen Of Death&#8230; on a door?!? Blue Screen Of Death&#8230; on a door?!?


Related posts:<ol><li><a href='http://pedroassuncao.com/2009/02/blue-screen-of-death-on-a-door-2/' rel='bookmark' title='Blue Screen Of Death&#8230; on a door?!?'>Blue Screen Of Death&#8230; on a door?!?</a></li>
<li><a href='http://pedroassuncao.com/2009/02/blue-screen-of-death-on-a-door/' rel='bookmark' title='Blue Screen Of Death&#8230; on a door?!?'>Blue Screen Of Death&#8230; on a door?!?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p><img class="alignright size-medium wp-image-1115" title="Blue Screen event" src="http://pedroassuncao.com/wp-content/uploads/2010/08/bluescreen-300x222.jpg" alt="Blue Screen event" width="300" height="222" /></p>
<p>After a long, long time without crashes on my windows box i finally got this one while watching a movie on vimeo.com. It seems they call the crash event &#8220;Blue Screen&#8221;. Got love the nostalgia on the windows developers <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<div class="shr-publisher-1114"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2010%2F08%2Fthey-still-call-it-blue-screen%2F' data-shr_title='They+still+call+it+Blue+Screen'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2010%2F08%2Fthey-still-call-it-blue-screen%2F' data-shr_title='They+still+call+it+Blue+Screen'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->

<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2009/02/blue-screen-of-death-on-a-door-2/' rel='bookmark' title='Blue Screen Of Death&#8230; on a door?!?'>Blue Screen Of Death&#8230; on a door?!?</a></li>
<li><a href='http://pedroassuncao.com/2009/02/blue-screen-of-death-on-a-door/' rel='bookmark' title='Blue Screen Of Death&#8230; on a door?!?'>Blue Screen Of Death&#8230; on a door?!?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2010/08/they-still-call-it-blue-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing the new eyePhone</title>
		<link>http://pedroassuncao.com/2010/07/introducing-the-new-eyephone/</link>
		<comments>http://pedroassuncao.com/2010/07/introducing-the-new-eyephone/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 13:02:29 +0000</pubDate>
		<dc:creator>Pedro Assunção</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[cartoons]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://pedroassuncao.com/?p=1013</guid>
		<description><![CDATA[Awesome Futurama video parodying Apple&#8217;s iPhone: Related posts:Introducing Danny MacAskill, the BMX wizard Things i wanted in Apple&#8217;s iPad (tablet)


Related posts:<ol><li><a href='http://pedroassuncao.com/2011/02/introducing-danny-macaskill-the-bmx-wizard/' rel='bookmark' title='Introducing Danny MacAskill, the BMX wizard'>Introducing Danny MacAskill, the BMX wizard</a></li>
<li><a href='http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/' rel='bookmark' title='Things i wanted in Apple&#8217;s iPad (tablet)'>Things i wanted in Apple&#8217;s iPad (tablet)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Awesome Futurama video parodying Apple&#8217;s iPhone:</p>
<p><object id="viddler_9d35e344" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="332" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.viddler.com/player/9d35e344/" /><param name="name" value="viddler_9d35e344" /><param name="allowfullscreen" value="true" /><embed id="viddler_9d35e344" type="application/x-shockwave-flash" width="500" height="332" src="http://www.viddler.com/player/9d35e344/" name="viddler_9d35e344" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<div class="shr-publisher-1013"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2010%2F07%2Fintroducing-the-new-eyephone%2F' data-shr_title='Introducing+the+new+eyePhone'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2010%2F07%2Fintroducing-the-new-eyephone%2F' data-shr_title='Introducing+the+new+eyePhone'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->

<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2011/02/introducing-danny-macaskill-the-bmx-wizard/' rel='bookmark' title='Introducing Danny MacAskill, the BMX wizard'>Introducing Danny MacAskill, the BMX wizard</a></li>
<li><a href='http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/' rel='bookmark' title='Things i wanted in Apple&#8217;s iPad (tablet)'>Things i wanted in Apple&#8217;s iPad (tablet)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2010/07/introducing-the-new-eyephone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Irony of searches and one iPad visit to my blog</title>
		<link>http://pedroassuncao.com/2010/04/irony-of-searches-and-one-ipad-visit-to-my-blog/</link>
		<comments>http://pedroassuncao.com/2010/04/irony-of-searches-and-one-ipad-visit-to-my-blog/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 10:47:46 +0000</pubDate>
		<dc:creator>Pedro Assunção</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[code snipplets]]></category>
		<category><![CDATA[irony]]></category>
		<category><![CDATA[jokes]]></category>

		<guid isPermaLink="false">http://diffract.me/?p=976</guid>
		<description><![CDATA[Just a couple of pictures this time. The first one is about something i noticed i was doing, while searching for a code fragment. One could call it ironic, trying to find &#8220;find&#8221; The other is proof of my amazement by the fact that there was one person who visited my blog using an iPad [...]


Related posts:<ol><li><a href='http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/' rel='bookmark' title='Things i wanted in Apple&#8217;s iPad (tablet)'>Things i wanted in Apple&#8217;s iPad (tablet)</a></li>
<li><a href='http://pedroassuncao.com/2010/04/ipad-jailbroken-one-day-after-coming-out-that-was-fast/' rel='bookmark' title='iPad jailbroken one day after coming out. That was fast.'>iPad jailbroken one day after coming out. That was fast.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Just a couple of pictures this time.</p>
<p>The first one is about something i noticed i was doing, while searching for a code fragment. One could call it ironic, trying to find &#8220;find&#8221; <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://diffract.me/wp-content/uploads/2010/04/Screen-shot-2010-04-21-at-10.26.11-AM.png"><img class="alignnone size-medium wp-image-978" title="Looking for find" src="http://diffract.me/wp-content/uploads/2010/04/Screen-shot-2010-04-21-at-10.26.11-AM-300x165.png" alt="" width="300" height="165" /></a></p>
<p>The other is proof of my amazement by the fact that there was one person who visited my blog using an iPad <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a href="http://diffract.me/wp-content/uploads/2010/04/Screen-shot-2010-04-21-at-11.41.41-AM.png"><img class="alignnone size-medium wp-image-977" title="One iPad visit, woohooo" src="http://diffract.me/wp-content/uploads/2010/04/Screen-shot-2010-04-21-at-11.41.41-AM-300x144.png" alt="" width="300" height="144" /></a></p>
<p><strong>UPDATE</strong>: Turns out i was looking at a 2 day period only. This month there have been actually 4 iPad visits, hehe <img src='http://pedroassuncao.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://diffract.me/wp-content/uploads/2010/04/Screen-shot-2010-04-21-at-11.50.11-AM.png"><img class="alignnone size-medium wp-image-980" title="4 iPad visits after all" src="http://diffract.me/wp-content/uploads/2010/04/Screen-shot-2010-04-21-at-11.50.11-AM-300x84.png" alt="" width="300" height="84" /></a></p>
<div class="shr-publisher-976"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2010%2F04%2Firony-of-searches-and-one-ipad-visit-to-my-blog%2F' data-shr_title='Irony+of+searches+and+one+iPad+visit+to+my+blog'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2010%2F04%2Firony-of-searches-and-one-ipad-visit-to-my-blog%2F' data-shr_title='Irony+of+searches+and+one+iPad+visit+to+my+blog'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->

<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2010/01/things-i-wanted-in-apples-ipad-tablet/' rel='bookmark' title='Things i wanted in Apple&#8217;s iPad (tablet)'>Things i wanted in Apple&#8217;s iPad (tablet)</a></li>
<li><a href='http://pedroassuncao.com/2010/04/ipad-jailbroken-one-day-after-coming-out-that-was-fast/' rel='bookmark' title='iPad jailbroken one day after coming out. That was fast.'>iPad jailbroken one day after coming out. That was fast.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2010/04/irony-of-searches-and-one-ipad-visit-to-my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bomb This Country</title>
		<link>http://pedroassuncao.com/2010/02/bomb-this-country/</link>
		<comments>http://pedroassuncao.com/2010/02/bomb-this-country/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 08:08:15 +0000</pubDate>
		<dc:creator>Pedro Assunção</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[experiments]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://diffract.me/2010/02/bomb-this-country/</guid>
		<description><![CDATA[ After an awesome Japanese dinner with my good friend  Luizzz , we came to the conclusion that the website that was missing was one where you could bomb any country in the world. ...  So over the course of about 8 hours - the next day - we came up with  bombthiscountry.com , a meaningless website where you can bomb any country in the world (yes, China, Tibet is a country). 


Related posts:<ol><li><a href='http://pedroassuncao.com/2010/02/twitter-weekly-updates-for-2010-02-19/' rel='bookmark' title='Twitter Weekly Updates for 2010-02-19'>Twitter Weekly Updates for 2010-02-19</a></li>
<li><a href='http://pedroassuncao.com/2010/02/twitter-weekly-updates-for-2010-02-26/' rel='bookmark' title='Twitter Weekly Updates for 2010-02-26'>Twitter Weekly Updates for 2010-02-26</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>After an awesome Japanese dinner with my good friend <a href="http://twitter.com/luizsoarez">Luizzz</a>, we came to the conclusion that the website that was missing was one where you could bomb any country in the world. The motivation for this was part statistical curiosity and part plain bastardness (did i just make up another word?).</p>
<p>So over the course of about 8 hours &#8211; the next day &#8211; we came up with <a href="http://bombthiscountry.com">bombthiscountry.com</a>, a meaningless website where you can bomb any country in the world (yes, China, Tibet is a country). If you <a href="http://twitter.com/bombthiscountry">follow it on twitter</a> you get daily statistics on the most bombed countries in the world.</p>
<div class="shr-publisher-734"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2010%2F02%2Fbomb-this-country%2F' data-shr_title='Bomb+This+Country'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2010%2F02%2Fbomb-this-country%2F' data-shr_title='Bomb+This+Country'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->

<p>Related posts:<ol><li><a href='http://pedroassuncao.com/2010/02/twitter-weekly-updates-for-2010-02-19/' rel='bookmark' title='Twitter Weekly Updates for 2010-02-19'>Twitter Weekly Updates for 2010-02-19</a></li>
<li><a href='http://pedroassuncao.com/2010/02/twitter-weekly-updates-for-2010-02-26/' rel='bookmark' title='Twitter Weekly Updates for 2010-02-26'>Twitter Weekly Updates for 2010-02-26</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2010/02/bomb-this-country/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mars produces Methane, and so do I</title>
		<link>http://pedroassuncao.com/2009/12/mars-produces-methane-and-so-do-i/</link>
		<comments>http://pedroassuncao.com/2009/12/mars-produces-methane-and-so-do-i/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 15:00:58 +0000</pubDate>
		<dc:creator>Pedro Assunção</dc:creator>
				<category><![CDATA[environment]]></category>
		<category><![CDATA[exploration]]></category>
		<category><![CDATA[jokes]]></category>

		<guid isPermaLink="false">http://diffract.me/?p=620</guid>
		<description><![CDATA[Turns out that the methane that was found on Mars is not a product of meteor strikes, scientists have found, which means Mars actually produces methane. My question is: Where are the green aliens that fart all day to produce it? NOTE: After careful investigation, I found the following: &#8220;According to Dr. James L. A. [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Turns out that the methane that was found on Mars is not a product of meteor strikes, scientists have found, which means <a href="http://news.bbc.co.uk/2/hi/science/nature/8402741.stm">Mars actually produces methane</a>.</p>
<p>My question is: Where are the green aliens that fart all day to produce it?</p>
<p>NOTE: After careful investigation, I found the following: &#8220;According to Dr. James L. A. Roth, the author of Gastrointestinal Gas (Ch. 17 in Gastroenterology, v. 4, 1976) <a href="http://www.heptune.com/farts.html"><strong>most people (2/3 of adults) pass farts that contain no methane</strong></a>. If both parents are methane producers, their children have a 95% chance of being producers as well.&#8221;. Go figure.</p>
<div class="shr-publisher-620"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2009%2F12%2Fmars-produces-methane-and-so-do-i%2F' data-shr_title='Mars+produces+Methane%2C+and+so+do+I'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2009%2F12%2Fmars-produces-methane-and-so-do-i%2F' data-shr_title='Mars+produces+Methane%2C+and+so+do+I'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2009/12/mars-produces-methane-and-so-do-i/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Medieval TRON</title>
		<link>http://pedroassuncao.com/2009/11/medieval-tron/</link>
		<comments>http://pedroassuncao.com/2009/11/medieval-tron/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 14:16:08 +0000</pubDate>
		<dc:creator>Pedro Assunção</dc:creator>
				<category><![CDATA[cartoons]]></category>
		<category><![CDATA[jokes]]></category>

		<guid isPermaLink="false">http://diffract.me/?p=603</guid>
		<description><![CDATA[With the recent buzz about the remake of the classic TRON (in the works) I could not resist to post this gem: No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>With the recent buzz about the remake of the classic TRON (in the works) I could not resist to post this gem:</p>
<p><img class="alignnone size-full wp-image-604" title="brevity-medieval-tron" src="http://diffract.me/wp-content/uploads/2009/11/brevity-medieval-tron.jpg" alt="brevity-medieval-tron" width="500" height="594" /></p>
<div class="shr-publisher-603"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2009%2F11%2Fmedieval-tron%2F' data-shr_title='Medieval+TRON'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fpedroassuncao.com%2F2009%2F11%2Fmedieval-tron%2F' data-shr_title='Medieval+TRON'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://pedroassuncao.com/2009/11/medieval-tron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

