<?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>Running late and out of timetable order</title>
	<atom:link href="http://andrewjgrimm.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewjgrimm.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 12 Jan 2012 08:45:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='andrewjgrimm.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Running late and out of timetable order</title>
		<link>http://andrewjgrimm.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://andrewjgrimm.wordpress.com/osd.xml" title="Running late and out of timetable order" />
	<atom:link rel='hub' href='http://andrewjgrimm.wordpress.com/?pushpress=hub'/>
		<item>
		<title>In Ruby, &amp;method passes you!</title>
		<link>http://andrewjgrimm.wordpress.com/2011/10/03/in-ruby-method-passes-you/</link>
		<comments>http://andrewjgrimm.wordpress.com/2011/10/03/in-ruby-method-passes-you/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 08:38:20 +0000</pubDate>
		<dc:creator>andrewjgrimm</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://andrewjgrimm.wordpress.com/?p=51</guid>
		<description><![CDATA[Most Rubyists would know what the following does. [1, 2, 3].map(&#38;:to_s) It takes the array of numbers, calls to_s on each item, and returns an array of the return values. But what if you want to do the opposite? Rather than calling a method on the object, what if you want to call a method [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=51&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Most Rubyists would know what the following does.</p>
<p><code>[1, 2, 3].map(&amp;:to_s)</code></p>
<p>It takes the array of numbers, calls to_s on each item, and returns an array of the return values.</p>
<p>But what if you want to do the opposite? Rather than calling a method on the object, what if you want to call a method with the object as a parameter? Simple!</p>
<p><code>["1", "2", "3"].map(&amp;method(:Integer))</code></p>
<h2>Wait … what?</h2>
<p>I&#8217;m sure you all understand how it works, because you already use <code>map(&amp;:to_s)</code>, and none of you would use something you don&#8217;t understand, right?</p>
<p>Who am I kidding?</p>
<p>I&#8217;ll explain how <code>map(&amp;:method_name)</code> works, and then how <code>map(&amp;method(:method_name))</code> works.</p>
<p>When you use &amp; (ampersand) in front of the last variable in a method call, you&#8217;re saying that what&#8217;s passed in shouldn&#8217;t be treated as an object, but treated like a piece of code &#8211; a proc.</p>
<p>Symbols aren&#8217;t procs, but they can be converted into them by Ruby. You can see for yourself by running <code>to_proc</code> and <code>call</code> on it with the following:<br />
<code># my_proc will be something like #&lt;Proc:0x00000001014c39c8@(irb):35&gt;<br />
my_proc = :reverse.to_proc<br />
# This causes "abc".reverse to be called, which returns "cba"<br />
my_proc.call("abc")</code></p>
<p>As Ruby calls `<code>to_proc</code>` if an ampersand parameter isn&#8217;t a proc, the following</p>
<p><code>
<pre>def call_me_three_times(parameter_1)
  puts((yield parameter_1).inspect)
  puts((yield parameter_1).inspect)
  puts((yield parameter_1).inspect)
end

call_me_three_times("abc", &amp;:reverse)</pre>
<p></code></p>
<p>will print the string reversed three times.</p>
<p>Now that the <code>&amp;</code> part is understood, let&#8217;s look at the <code>method</code> part.</p>
<p>When you call <code>method(:method_name)</code>, you get back an object of class Method that represents the method.<br />
<code># Integer(string) is a method kind of like String#to_i, but 100% more awesome.<br />
# Look it up if you haven't done so already.<br />
# PS: don't worry about it starting with a capital letter!<br />
# another_proc will look like #&lt;Method: Object(Kernel)#Integer&gt;<br />
another_proc = method(:Integer)<br />
another_proc.call("42") # Returns 42</code></p>
<p>and as `<code>Method#to_proc</code>` exists, the `<code>call_me_three_times</code>` method will convert the method object into a proc and will run it without any complaints.</p>
<p>When you run `<code>call_me_three_times("42", &amp;another_proc)</code>`, it&#8217;ll print 42 (not &#8220;42&#8243;) three times.</p>
<h2>But wait … there&#8217;s more!</h2>
<p>The method doesn&#8217;t even have to be from your own object &#8211; it can be something else&#8217;s. For example, if you wanted to read in a series of files, you could do</p>
<p><code>filenames = ["a.txt", "b.txt", "c.txt"]<br />
texts = filenames.map(&amp;File.method(:read))</code></p>
<p><code>File.method(:read)</code> turns the read singleton method of the File class into an object, and then (with the help of <code>Method#to_proc</code>) that object gets passed to map as something that should be executed on each filename.</p>
<h2>Downsides</h2>
<p>Firstly, you may need to document what &amp;method does. I&#8217;ve been programming in Ruby for over three years, and hadn&#8217;t come across this trick until I noticed it on <a href="http://stackoverflow.com/questions/6962883/how-to-unflatten-a-ruby-array/6963422#6963422">Stack Overflow</a>. However, it is mentioned in the Pickaxe, now that I looked it up.</p>
<p>Second, there may be <a href="http://stackoverflow.com/questions/6976629/is-the-methodmethod-name-idiom-bad-for-perfomance-in-ruby/6978294#6978294">performance penalties</a> for this approach. If hardly anybody has used this approach, it&#8217;s unlikely to have been optimized.</p>
<p>Third, making code shorter isn&#8217;t always a good thing. It may make smelly code seem less smelly. If you&#8217;re doing twenty different things on one line, the answer isn&#8217;t to cram things up to make the line shorter, but to refactor that line into something more logical.</p>
<p>Fourth, I haven&#8217;t worked out how to <a href="http://stackoverflow.com/q/7425294/38765">abuse</a> this trick fully. Under Ruby 1.9, if foo takes two arguments, I don&#8217;t know how to do <code>[["a", "b"], ["c", "d"]].map(&amp;method(:foo))</code> yet. That code works under 1.8, however.</p>
<p>(Apologies for the awful appearance of the code &#8211; I haven&#8217;t worked out how to make wordpress use Github gists without adding a plugin)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewjgrimm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewjgrimm.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewjgrimm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewjgrimm.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewjgrimm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewjgrimm.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewjgrimm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewjgrimm.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewjgrimm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewjgrimm.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewjgrimm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewjgrimm.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewjgrimm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewjgrimm.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=51&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewjgrimm.wordpress.com/2011/10/03/in-ruby-method-passes-you/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01bbb59a1c3ef9960f25a97afe7e920f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewjgrimm</media:title>
		</media:content>
	</item>
		<item>
		<title>RubyKaigi 2011, the Small Eigen Collider, and Bear Impact</title>
		<link>http://andrewjgrimm.wordpress.com/2011/09/18/rubykaigi-2011-the-small-eigen-collider-and-bear-impact/</link>
		<comments>http://andrewjgrimm.wordpress.com/2011/09/18/rubykaigi-2011-the-small-eigen-collider-and-bear-impact/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 13:50:52 +0000</pubDate>
		<dc:creator>andrewjgrimm</dc:creator>
				<category><![CDATA[Japan]]></category>
		<category><![CDATA[RubyKaigi2011]]></category>

		<guid isPermaLink="false">http://andrewjgrimm.wordpress.com/?p=38</guid>
		<description><![CDATA[RubyKaigi 2011 was really great. My talk was well received, the other talks were great, the atmosphere of RubyKaigi was wonderful, and I had a lovely time in Japan. Makoto Inoue translated my talk from English into Japanese. On the day, my talk on the Small Eigen Collider was well-attended, and people asked questions, aided [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=38&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>RubyKaigi 2011 was really great. My talk was well received, the other talks were great, the atmosphere of RubyKaigi was wonderful, and I had a lovely time in Japan.</p>
<p>Makoto Inoue translated my talk from English into Japanese. On the day, my talk on the Small Eigen Collider was well-attended, and people asked questions, aided possibly by my offering t-shirts! People tweeted and IRC&#8217;d about my talk. Some of them even did so in a language I can read!</p>
<h2><span style="color:#000000;">The talks</span></h2>
<p>I really enjoyed the talks at RubyKaigi. Some were about implementations of Ruby, such as JRuby and MacRuby. Others were about upcoming features of Ruby, such as method shelters, or running tests in parallel. Eric Hodel gave advice on how to write good libraries, while other talks were about the community, such as Shota Fukumori&#8217;s talk on school students doing Ruby. There were also talks on concurrency, such as Elise Huard&#8217;s &#8220;Actors on stage&#8221;.</p>
<p>One talk I&#8217;ll remember after everything else is forgotten is the parse.y Famtour. By editing one file, he could redefine the Ruby language. He implemented fuzzy logic, possibly doing an action, but maybe not, based on a boolean. He also created a flexible keyword for de-indenting several layers at once. De-indent two levels? ennnd! Three levels? ennnnnd! Five levels? ennnnnnnnnd! This is what I want in a talk &#8211; something completely new and unknown!</p>
<p>This isn&#8217;t a very complete write-up of the talks, but I&#8217;m hoping that subtitles will be done of the talks so I can watch them again.</p>
<h2><span style="color:#000000;">RubyKaigi itself</span></h2>
<p>The social experience at RubyKaigi was wonderful and unique. You could create an origami Ruby. For the lightning talks, time running out wasn&#8217;t indicated by an iPhone app, but by a lady in traditional clothing gonging you.</p>
<p>For lunch, there was an anti-bocchi board, where you could organize to have lunch with other Rubyists. Some Australia-jin (Aussies) tended to have lunch with other Australia-jin, but I wanted to have lunch with Nihon-jin (Japanese). I was always the last one to finish lunch because I was talking so much. That, and because I&#8217;m bad at chopsticks &#8211; part way through the meal I&#8217;d ask foku o kudasai (fork please)!</p>
<p>The goodies I received were very useful. The fan and sweatband were appreciated considering that RubyKaigi was held during summer and that air conditioning was reduced because of of 3/11-related electricity shortages.</p>
<p>The situation with regards to language varied from talk to talk. Some people talked purely in English, some talked in Japanese but had English slides, while with others you had to rely on live translations. These translations appeared on a screen adjacent to the presentation screen and in IRC.</p>
<p>Sometimes the live translations were excellent, and sometimes they were frustrating. To be honest though, the main time language was an issue was when the subject matter was fairly technical, and I was wanting an excuse to ignore the talk and see what&#8217;s going on in twitter, such as RubyKaigi trending for the whole of Japan. Occasionally, there was a bit of Engrish &#8211; the most notable was &#8220;crap your hands&#8221;, which they joked about afterwards.</p>
<p>With regards to translating English talks into Japanese, I was one of the few people who took advantage of RubyKaigi&#8217;s offer to do so. To not do so is a missed opportunity!</p>
<p>Books were available for sale. I bought a Japanese book on bioinformatics with Ruby which transliterates as &#8220;Ruby de hajimeru baioinfomatikusu&#8221;, and means something like &#8220;beginning Bioinformatics with Ruby&#8221;. One day I&#8217;ll be able to understand it, but so far I&#8217;ve used it as practice for reading kana (Japanese characters that represent syllables). Neither that book, nor any other book on Ruby and bioinformatics, exist in English to my knowledge.</p>
<p>Events were held before and after RubyKaigi. Before the event was JRubyKaigi. At that event, I was talking with someone about the Ikebukuro Earthquake Museum and its simulations, and the next minute, a real earthquake occurred. One person noted &#8220;Demos are always experimental and dangerous!&#8221;.</p>
<p>After RubyKaigi was Asakusa.rb, and a Github drinkup. I met with Matz during the drinkup, and I talked with him about the fate of the flip-flop operator in a hundred years&#8217; time. Apparently, it may not exist then. I also went around Tokyo with two Rubyists who were from outside of Tokyo (Cuzic and one other person).</p>
<h2><span style="color:#000000;">Japan</span></h2>
<div id="attachment_46" class="wp-caption alignright" style="width: 310px"><a href="http://andrewjgrimm.files.wordpress.com/2011/09/img_0152.jpg"><img class="size-medium wp-image-46" title="IMG_0152" src="http://andrewjgrimm.files.wordpress.com/2011/09/img_0152.jpg?w=300&#038;h=224" alt="Manhole from Karuizawa" width="300" height="224" /></a><p class="wp-caption-text">Even the manholes are beautiful (Karuizawa photo)</p></div>
<p>I visited a variety of places before and after RubyKaigi. The first place I visited was the Ikebukuro Earthquake Museum. It took me a while to find the place, even with my iPhone, because all I could find was the fire department, and I was too shy to ask them for directions for a tourist. It wasn&#8217;t until I saw a sign to the museum inside that I realized that the museum was within the fire department!</p>
<p>The museum was very much practical rather than historical. It had an earthquake simulation, where you started off sitting at a table, and when the earthquake started, you had to duck underneath the shelter of the table. To make it a bit scarier, the lights went out a few seconds in, and you could hear a kettle falling to the ground. The next activity was navigating through a smoke-filled series of rooms. You had to remember to be half-crouching, and cover your mouth with a handkerchief. The following activity was CPR. Of course, the Japanese I said to my mannekin wasn&#8217;t that good &#8211; I said &#8220;genki desu?&#8221; when others were asking their dummies something slightly more serious to ask if it was ok. At least it didn&#8217;t say &#8220;mo-ichi do?&#8221; back to me! The final activity involved putting out a fire. I only got to use a fire extinguisher, while others got to use a fire hose!</p>
<p>Some of the information was only in Japanese, but the museum staff were very helpful to me, for example checking that I understood what was going to happen in the smoke-filled rooms exercise. They asked me afterwards why I came, and I explained that I was a scientist. Maybe I&#8217;m a little bit odd like that. To be honest though, the museum had the advantage of being close to the Ryokan (Japanese-style hotel) I was staying at, such that I didn&#8217;t need to take a train.</p>
<p>I visited the Tokyo National Museum . It had a variety of different artefacts, including pottery, calligraphy, weapons, armour, but the thing that I remember the most was the lacquer-work. The amount of work put into a single box made me feel sad. Was it worth the effort?</p>
<p>While I was with the two out-of-town Rubyists, we visited a maid bar in Akihabura, and browsed a few stores there. We saw the palace gardens, and then we visited Tokyo Tower. It described what there is in Tokyo, and had a exhibit where you could look at a map of Tokyo in earlier times compared to now. There was also a gift store where I bought a pair of tea cups. We then went on to Asakusa.rb.</p>
<p>The next day, I wanted to visit somewhere nice outside of Tokyo, and ended up choosing Karuizawa. It is a resort town, and is a bit cooler than Tokyo because of its elevation. It&#8217;s also the only town that&#8217;s hosted both Summer and Winter Olympic events: it hosted the equestrian events for the 1964 Tokyo games, and curling for the 1998 Nagano games. I saw a famous waterfall called Shiraito Waterfalls (literally &#8220;white strings&#8221;), and went shopping, buying some sweets for my Japanese class, and a hand-made doll of a cat wearing a kimono.</p>
<p>Travelling by shinkansen was very nice &#8211; you don&#8217;t have to book a specific time if you don&#8217;t want to, and there&#8217;s no security screening, but it has the cool things about flying. You can order food, and there&#8217;s a shopping catalogue of all things weird and wonderful. My favourite is a device that allows you to set up a desk from the steering wheel of your car. I&#8217;m glad I wasn&#8217;t driving while in Japan! According to my iPhone, the shinkansen was clocking speeds of 230 kilometres per hour!</p>
<p>The flight to and from Japan on JAL was also very nice. On my flight from Sydney to Tokyo, they upgraded me to an emergency row for free, and the hostesses were very friendly. I loved the anime demonstration of flight safety, and thought it was more informative than standard demonstrations as well. The meal on the flight to Tokyo had an Australian element to them &#8211; they had tim tams as a sweet, and meat pie for afternoon tea. However, I have one pro-tip: if you&#8217;re 6 foot 4 inches, and you&#8217;re wanting to sleep during your flight back home, don&#8217;t book a standard seat on lilliput-jin airlines!</p>
<div id="attachment_47" class="wp-caption alignright" style="width: 310px"><a href="http://andrewjgrimm.files.wordpress.com/2011/09/img_0106.jpg"><img class="size-medium wp-image-47" title="IMG_0106" src="http://andrewjgrimm.files.wordpress.com/2011/09/img_0106.jpg?w=300&#038;h=224" alt="Message saying a train's late due to Bear Impact" width="300" height="224" /></a><p class="wp-caption-text">Earthquakes cannot stop Japanese trains. All it can do is delay it for a while.</p></div>
<p>Public transportation in Tokyo was good &#8211; information was available in English. The biggest challenge was just logistics, not language: make sure you use the right exit from the station, as the stations are massive, and that you don&#8217;t choose a train that goes past your station! While you&#8217;re in trains, you can read about reasons for delays with other trains. They were pretty good reasons &#8211; one delay was because of an earthquake, while another was due to &#8220;bear impact&#8221;! I wish Sydney&#8217;s Cityrail was that reliable!</p>
<p>Having studied Japanese for 6 months this year, language wasn&#8217;t that big a issue. It was a barrier only three times. The first was at a love hotel. I wasn&#8217;t able to understand what the receptionist was saying, apart from not being able to get a room. Maybe it&#8217;s mandatory that you&#8217;re undergoing an illicit affair with someone, whereas I was just a dumb solo tourist that had got locked out of my Ryokan. I&#8217;ll never find out. The second was at Mister Donut. I had asked for an interesting-looking drink, but the cashier gave me instructions that I couldn&#8217;t understand, so I had to order koka kola kulashikku instead. The third, ironically enough, was with Google transit. I couldn&#8217;t work out how to display Romaji names for the train stations or train lines, so I had to rely on the suburb names near the train stations, which were in Romaji. Unfortunately, my Japanese was fairly basic, and I didn&#8217;t learn much new Japanese while I was there. Next time I&#8217;m there I&#8217;ll be good at the language, I hope!</p>
<h2>Ennnnnnnnnd!</h2>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewjgrimm.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewjgrimm.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewjgrimm.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewjgrimm.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewjgrimm.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewjgrimm.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewjgrimm.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewjgrimm.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewjgrimm.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewjgrimm.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewjgrimm.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewjgrimm.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewjgrimm.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewjgrimm.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=38&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewjgrimm.wordpress.com/2011/09/18/rubykaigi-2011-the-small-eigen-collider-and-bear-impact/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01bbb59a1c3ef9960f25a97afe7e920f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewjgrimm</media:title>
		</media:content>

		<media:content url="http://andrewjgrimm.files.wordpress.com/2011/09/img_0152.jpg?w=300" medium="image">
			<media:title type="html">IMG_0152</media:title>
		</media:content>

		<media:content url="http://andrewjgrimm.files.wordpress.com/2011/09/img_0106.jpg?w=300" medium="image">
			<media:title type="html">IMG_0106</media:title>
		</media:content>
	</item>
		<item>
		<title>Zombie chaser &#8211; it&#8217;s alive!</title>
		<link>http://andrewjgrimm.wordpress.com/2010/04/12/zombie-chaser-its-alive/</link>
		<comments>http://andrewjgrimm.wordpress.com/2010/04/12/zombie-chaser-its-alive/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 13:05:30 +0000</pubDate>
		<dc:creator>andrewjgrimm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[chaser]]></category>
		<category><![CDATA[mutation testing]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[unit testing]]></category>
		<category><![CDATA[zombie chaser]]></category>

		<guid isPermaLink="false">http://andrewjgrimm.wordpress.com/?p=25</guid>
		<description><![CDATA[Zombie-chaser is a graphic(al) user interface to mutation testing. Mutation testing involves making modifications to code, and seeing if the unit tests detect these changes and indicate a failure. In the zombie-chaser gooey metaphor, mutated code is represented by zombies. Each successful test is represented as the zombies getting one step closer to you, and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=25&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Zombie-chaser is a graphic(al) user interface to mutation testing. Mutation testing involves making modifications to code, and seeing if the unit tests detect these changes and indicate a failure. In the zombie-chaser gooey metaphor, mutated code is represented by zombies. Each successful test is represented as the zombies getting one step closer to you, and a failed unit test kills off the zombie.  If you fail to kill the zombie, it gets to eat your brains.</p>
<p>There are two alternatives for the interface. One is a GUI, while the other is a nethack-style interface within the console itself. Like the chaser project, zombie-chaser aims to be compatible with any flavor of ruby on any platform. If it isn&#8217;t &#8211; if it&#8217;s lukewarm on JRuby, if it&#8217;s rusty on IronRuby, or if it&#8217;s having kittens on LOLRuby, and it&#8217;s possible for me to fix it, let me know!</p>
<p>This program incorporates code from <a href="http://andrewjgrimm.wordpress.com/2009/11/08/declare-war-on-everything-with-chaser/">chaser</a> and <a href="http://blog.zenspider.com/rubysadism/heckle/">heckle</a>, written by Ryan Davis and Kevin Clark, and code from brains, a game written by Chris Lloyd, Dave Newman, Carl Woodward &amp; Daniel Bogan. The idea of ripping out brains code and producing something different was inspired in part by Zombino, written by Ryan Bigg, and psDooM helped inspire the idea of melding work with a game interface.</p>
<div class='embed-vimeo' style='text-align:center;'><iframe src='http://player.vimeo.com/video/10863662' width='400' height='300' frameborder='0'></iframe></div>
<div><span style="font-family:'Lucida Grande', 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:small;"><span style="line-height:normal;white-space:pre-wrap;"><br />
</span></span></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewjgrimm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewjgrimm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewjgrimm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewjgrimm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewjgrimm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewjgrimm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewjgrimm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewjgrimm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewjgrimm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewjgrimm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewjgrimm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewjgrimm.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewjgrimm.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewjgrimm.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=25&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewjgrimm.wordpress.com/2010/04/12/zombie-chaser-its-alive/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01bbb59a1c3ef9960f25a97afe7e920f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewjgrimm</media:title>
		</media:content>
	</item>
		<item>
		<title>Declare War on Everything with Chaser</title>
		<link>http://andrewjgrimm.wordpress.com/2009/11/08/declare-war-on-everything-with-chaser/</link>
		<comments>http://andrewjgrimm.wordpress.com/2009/11/08/declare-war-on-everything-with-chaser/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 12:36:00 +0000</pubDate>
		<dc:creator>andrewjgrimm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://andrewjgrimm.wordpress.com/?p=14</guid>
		<description><![CDATA[Chaser is a new lightweight mutation tester. Mutation testing involves messing up code that&#8217;s being tested, and seeing if the unit tests notice anything&#8217;s wrong. The name is based on The Chaser, an Australian comedy team. They&#8217;re best known internationally for a penetration test gone horribly, horribly right. The main ruby gem that does mutation [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=14&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://github.com/agrimm/chaser">Chaser</a> is a new lightweight mutation tester. Mutation testing involves messing up code that&#8217;s being tested, and seeing if the unit tests notice anything&#8217;s wrong.</p>
<div id="attachment_15" class="wp-caption alignright" style="width: 164px"><a href="http://en.wikipedia.org/wiki/File:Chaser_fake_apec_pass.jpg"><img class="size-medium wp-image-15   " title="Chaser_fake_apec_pass" src="http://andrewjgrimm.files.wordpress.com/2009/11/chaser_fake_apec_pass.jpg?w=154&#038;h=119" alt="Fake APEC passes by the Chaser" width="154" height="119" /></a><p class="wp-caption-text">You need to detect when something&#39;s wrong</p></div>
<p>The name is based on The Chaser, an Australian comedy team. They&#8217;re best known internationally for a penetration test gone <a href="http://en.wikipedia.org/wiki/The_Chaser_APEC_pranks">horribly, horribly right</a>.</p>
<p>The main ruby gem that does mutation testing right now is <a href="http://ruby.sadi.st/Heckle.html">Heckle</a>. The folks from Seattle.rb have done a lot of work on it, but sometimes you&#8217;re <a href="http://blog.zenspider.com/2009/04/parsetree-eol.html">simply out of luck</a>. It doesn&#8217;t work on certain platforms &#8211; <span style="text-decoration:line-through;">Windows</span> (correction below), Ruby 1.9 and the like &#8211; because it currently relies on ParseTree. One day, I decided that I wanted to be able to do mutation testing on Windows. Like, yesterday. And thus Chaser was born.</p>
<p>Chaser uses plain old metaprogramming. If you&#8217;ve got ruby, and you&#8217;ve got test/unit, then you satisfy the requirements for chaser. So far, I&#8217;ve played with it on Windows, 1.9 and JRuby.</p>
<p>Bug reports, feedback, new features, and fake beards are welcome.</p>
<p><strong>Correction 2009-12-17:</strong> Apparently, <a href="http://www.zenspider.com/pipermail/ruby/2009-December/005082.html">it is possible</a> to make Heckle work on Windows, if you have a suitable compiler and make a minor change to Heckle&#8217;s code.</p>
<p><strong>Extra links:</strong> <a href="http://www.slideshare.net/agrimm/declare-war-on-everything-with-chaser">Slideshare</a> notes, and a <a href="http://www.slideshare.net/agrimm/declare-war-on-everything-with-chaser">video presentation</a> thanks to the awesome folk at Ruby On Rails Oceania.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewjgrimm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewjgrimm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewjgrimm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewjgrimm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewjgrimm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewjgrimm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewjgrimm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewjgrimm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewjgrimm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewjgrimm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewjgrimm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewjgrimm.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewjgrimm.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewjgrimm.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=14&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewjgrimm.wordpress.com/2009/11/08/declare-war-on-everything-with-chaser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01bbb59a1c3ef9960f25a97afe7e920f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewjgrimm</media:title>
		</media:content>

		<media:content url="http://andrewjgrimm.files.wordpress.com/2009/11/chaser_fake_apec_pass.jpg?w=300" medium="image">
			<media:title type="html">Chaser_fake_apec_pass</media:title>
		</media:content>
	</item>
		<item>
		<title>The royalty-free road to knowledge</title>
		<link>http://andrewjgrimm.wordpress.com/2009/02/07/the-royalty-free-road-to-knowledge/</link>
		<comments>http://andrewjgrimm.wordpress.com/2009/02/07/the-royalty-free-road-to-knowledge/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 15:32:24 +0000</pubDate>
		<dc:creator>andrewjgrimm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Collective intelligence]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[Wiki]]></category>
		<category><![CDATA[Wikipedia]]></category>

		<guid isPermaLink="false">http://andrewjgrimm.wordpress.com/?p=8</guid>
		<description><![CDATA[If you start on a random Wikipedia article, and click on the first link within the article, and continue the process until you reach a loop, you end up at Philosophy or a similar article. Considering that Wikipedia has been criticized as having too many articles on trivial topics, it&#8217;s surprising. It&#8217;s also freaky &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=8&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you start on a <a href="http://en.wikipedia.org/wiki/Special:Randomhttp://en.wikipedia.org/wiki/Special:Random" target="_self">random</a> Wikipedia article, and click on the first link within the article, and continue the process until you reach a loop, you end up at <a href="http://en.wikipedia.org/wiki/Philosophy" target="_self">Philosophy</a> or a similar article.</p>
<div class="wp-caption alignright" style="width: 245px"><a href="http://commons.wikimedia.org/wiki/File:Size_of_English_Wikipedia_broken_down.png"><img title="The composition of Wikipedia ... or is it? (CC-SA)" src="http://upload.wikimedia.org/wikipedia/commons/9/99/Size_of_English_Wikipedia_broken_down.png" alt="The composition of Wikipedia ... or is it? (CC-SA)" width="235" height="123" /></a><p class="wp-caption-text">The composition of Wikipedia ... or is it? (CC-SA)</p></div>
<p>Considering that Wikipedia has been criticized as having too many articles on trivial topics, it&#8217;s surprising. It&#8217;s also freaky &#8211; how does Wikipedia know that Philosophy is the &#8220;ultimate&#8221; thing?</p>
<p>Nonplus <a href="http://en.wikipedia.org/wiki/Wikipedia:Get_to_Philosophy">describes</a> one possibility, saying &#8220;It&#8217;s nice to think that the articles tend to proceed up to higher and higher levels of generality and abstraction&#8221;, and I&#8217;m <a href="http://github.com/agrimm/philosophy-dump-parser/tree/master">creating a program</a> to analyse how it &#8220;funnels&#8221;.</p>
<p>The <a href="http://gist.github.com/59896">results</a> so far, although not 100% accurate, are plausible enough to be interesting. It&#8217;s claiming that the ultimate page is not Philosophy, but Organism, another abstract concept. Other ultimate pages include Communication, Education and Alphabet.</p>
<p>Analyzing what pages get the most direct links, the top ones include &#8220;Where&#8221;s, such as the United States and Australia, and &#8220;What&#8221;s, such as Gene, Plant and Fictional character.</p>
<p>Pages passed through on the way to Organism and other pages are also calculated. 4.3 million out of 4.8 million pages ending up at Organism go through Philosophy, of which 3.8 million went through Indo-European languages. Philosophy links to the British <a href="http://en.wikipedia.org/wiki/A._C._Grayling">A. C. Grayling</a> via a citation of his work, and United Kingdom links to <a href="http://en.wikipedia.org/wiki/Terminology_of_the_British_Isles">Terminology of the British Isles</a> via an explanatory footnote. (Nothing in the rules against that &#8230; yet) We can see that the British Isles refer to <a href="http://en.wikipedia.org/wiki/Island">islands</a>, and that some islands are <a href="http://en.wikipedia.org/wiki/Atoll">atolls</a>, which are made up of <a href="http://en.wikipedia.org/wiki/Coral">coral</a>, which are marine organisms, studied in <a href="http://en.wikipedia.org/wiki/Marine_biology">marine biology</a>, which study <a href="http://en.wikipedia.org/wiki/Organism">organisms</a>.</p>
<p>The pages that merge together mighty tributaries are also listed. A. C. Grayling, passed by over 4 million pages, only adds half a dozen pages to the total. By contrast, Mathematics and Science, although passed by only a few hundred thousand pages, are noted for merging groups of pages together together.</p>
<p>It&#8217;ll be an interesting investigation into collective intelligence. And if it isn&#8217;t &#8230; well anything that&#8217;s free and wiki is fun, right?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewjgrimm.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewjgrimm.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewjgrimm.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewjgrimm.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewjgrimm.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewjgrimm.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewjgrimm.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewjgrimm.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewjgrimm.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewjgrimm.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewjgrimm.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewjgrimm.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewjgrimm.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewjgrimm.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=8&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewjgrimm.wordpress.com/2009/02/07/the-royalty-free-road-to-knowledge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01bbb59a1c3ef9960f25a97afe7e920f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewjgrimm</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/9/99/Size_of_English_Wikipedia_broken_down.png" medium="image">
			<media:title type="html">The composition of Wikipedia ... or is it? (CC-SA)</media:title>
		</media:content>
	</item>
		<item>
		<title>When your wireless mouse lacks zap</title>
		<link>http://andrewjgrimm.wordpress.com/2009/01/04/when-your-wireless-mouse-lacks-zap/</link>
		<comments>http://andrewjgrimm.wordpress.com/2009/01/04/when-your-wireless-mouse-lacks-zap/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 01:31:13 +0000</pubDate>
		<dc:creator>andrewjgrimm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hardware software troubleshooting]]></category>

		<guid isPermaLink="false">http://andrewjgrimm.wordpress.com/?p=6</guid>
		<description><![CDATA[When the batteries of my wireless mouse gave up, I tried seeing if rechargable batteries would work. I put them in, and the red light produced by the laser was visible. But it wasn&#8217;t talking with my computer. I tried re-connecting many times, under both Windows and Linux, but it didn&#8217;t work. The next day, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=6&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When the batteries of my wireless mouse gave up, I tried seeing if rechargable batteries would work. I put them in, and the red light produced by the laser was visible. But it wasn&#8217;t talking with my computer. I tried re-connecting many times, under both Windows and Linux, but it didn&#8217;t work.</p>
<p>The next day, I noticed that the light from the laser wasn&#8217;t working any more, and therefore the rechargeable batteries had been drained. If the batteries could only last a day, they mustn&#8217;t be suitable for mice. So I put some standard batteries into the mice, and both the laser and the communication with the computer worked.</p>
<p>It isn&#8217;t always a software problem &#8211; sometimes it&#8217;s a lot simpler!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewjgrimm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewjgrimm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewjgrimm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewjgrimm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewjgrimm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewjgrimm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewjgrimm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewjgrimm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewjgrimm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewjgrimm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewjgrimm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewjgrimm.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewjgrimm.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewjgrimm.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=6&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewjgrimm.wordpress.com/2009/01/04/when-your-wireless-mouse-lacks-zap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01bbb59a1c3ef9960f25a97afe7e920f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewjgrimm</media:title>
		</media:content>
	</item>
		<item>
		<title>About me</title>
		<link>http://andrewjgrimm.wordpress.com/2008/09/21/about-me/</link>
		<comments>http://andrewjgrimm.wordpress.com/2008/09/21/about-me/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 03:55:49 +0000</pubDate>
		<dc:creator>andrewjgrimm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;m a bioinformatics ruby programmer by day, and a rails hacker by night, working on The Weather in London. Update: The Weather in London is now an inactive project.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=1&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a bioinformatics ruby programmer by day, and a rails hacker by night, working on <a href="http://www.theweatherinlondon.com">The Weather in London</a>.</p>
<p><strong>Update</strong>: The Weather in London is now an inactive project.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrewjgrimm.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrewjgrimm.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrewjgrimm.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrewjgrimm.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrewjgrimm.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrewjgrimm.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrewjgrimm.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrewjgrimm.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrewjgrimm.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrewjgrimm.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrewjgrimm.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrewjgrimm.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrewjgrimm.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrewjgrimm.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewjgrimm.wordpress.com&amp;blog=4923065&amp;post=1&amp;subd=andrewjgrimm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewjgrimm.wordpress.com/2008/09/21/about-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/01bbb59a1c3ef9960f25a97afe7e920f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andrewjgrimm</media:title>
		</media:content>
	</item>
	</channel>
</rss>
