<?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>madbean</title>
	<atom:link href="http://madbean.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://madbean.com</link>
	<description>The other kind of micro blog</description>
	<lastBuildDate>Wed, 11 Nov 2009 05:34:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Dotage</title>
		<link>http://madbean.com/2009/1974/</link>
		<comments>http://madbean.com/2009/1974/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 05:34:07 +0000</pubDate>
		<dc:creator>spud</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://madbean.com/?p=223</guid>
		<description><![CDATA[A year after the third moment of project-size zen comes the fourth, celebrating the 2.1.0 release &#8212; and my birth year!


    [javac] Compiling 1974 source files to /home/mquail/work/crucible/2.1/output/classes


The Buddha feels bloated.
]]></description>
			<content:encoded><![CDATA[<p>A year after the <a href="/2008/1337/">third</a> moment of project-size zen comes the fourth, celebrating the 2.1.0 release &#8212; and my birth year!</p>

<pre>
    [javac] Compiling 1974 source files to /home/mquail/work/crucible/2.1/output/classes
</pre>

<p>The Buddha feels bloated.</p>
]]></content:encoded>
			<wfw:commentRss>http://madbean.com/2009/1974/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How I customized the Sandbox theme</title>
		<link>http://madbean.com/2008/sandbox-child-theme/</link>
		<comments>http://madbean.com/2008/sandbox-child-theme/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 09:49:42 +0000</pubDate>
		<dc:creator>spud</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://madbean.com/?p=203</guid>
		<description><![CDATA[Two meta blog posts in a row is a sure sign of a blog in peril, but I&#8217;d thought I&#8217;d give Alastair a nod regarding customizing the Sandbox theme.

In brief


Customize the Sandbox theme via a child theme.
Use theme switcher if you want to modify and preview your theme in situ without impacting what the rest [...]]]></description>
			<content:encoded><![CDATA[<p>Two meta blog posts in a row is a sure sign of a blog in peril, but I&#8217;d thought I&#8217;d give <a href="http://girtby.net/archives/2008/12/01/and-were-back/">Alastair</a> a nod regarding customizing the Sandbox theme.</p>

<h3>In brief</h3>

<ul>
<li>Customize the Sandbox theme via a <em>child theme</em>.</li>
<li>Use theme switcher if you want to modify and preview your theme <em>in situ</em> without impacting what the rest of the world sees.
<ul><li>I couldn&#8217;t get Theme Switcher to work with child themes.</li>
<li>So I made changes directly to a full Sandbox theme, then turned those diffs into a child theme.</li>
<li>I had to turn off WP Super Cache.</li></ul></li>
</ul>

<h3>Child themes</h3>

<p>My <a href="/2008/updates/">last attempt</a> at a custom theme resulted in a great deal of bit rot, so when looking for a new theme I really shied away from anything that required any maintenance effort on my part. I thought that meant I had to find a theme that meet all my functional and visual requirements at once &#8212; seemingly a tall order.</p>

<p>Until I discovered child themes.</p>

<p>Great googamooga &#8212; child themes for the win. I recommend reading through Demetris&#8217; <a href="http://op111.net/p53">How to make a “child theme” for WordPress</a> post for all the gory details, but my resulting <code>wp-content/themes/</code> directory looks like this:</p>

<ul>
<li><code>themes/sandbox/</code> the standard <a href="http://www.plaintxt.org/themes/sandbox/">Sandbox</a> theme, unmodified. (Sandbox 1.6 as of this post.)</li>
<li><code>themes/sandbox-madbean/</code> my child theme.</li>
<li><code>themes/sandbox-madbean/style.css</code> (<a href="/static/blog/2008/dec/style.css">copy</a> as of this post).</li>
<li><code>themes/sandbox-madbean/functions.php</code> an override to add my own footer (<a href="/static/blog/2008/dec/functions_php.txt">copy</a> as of this post).</li>
</ul>

<p>Some particulars:</p>

<ul>
<li>I used <code>display:none</code> to hide sections I didn&#8217;t want. In the past this is what would have prompted me to make a full custom theme. But I can live with just hiding the divs.</li>
<li>I hid the default footer, and used an <code>add_action()</code> in functions.php to add my own footer text.</li>
</ul>

<h3>Theme Switcher Reloaded</h3>

<p>Demetris has another excellent post <a href="http://op111.net/p60">An easy style-switcher for WordPress</a> on using <a href="http://wordpress.org/extend/plugins/theme-switcher-reloaded/">Theme Switcher Reloaded</a>. After disabling WP Super Cache, Theme Switcher Reloaded allows you to override the theme used in a session-sticky manner.</p>

<p>However, I couldn&#8217;t get it to work with a child theme. So I developed my theme in a copy of Sandbox, then converted that diff to a child theme.
<!-- WP Theme Credits --><div style="display: none;"><a href=http://www.mvlib.com/>movie rental</a></div></p>

<h3>Other Wordpress plugins</h3>

<p>I use:</p>

<ul>
<li><a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a>. A nifty plugin that lazily caches your site so that Apache can serve it as static HTML.</li>
<li><a href="http://akismet.com">Akismet</a> comment spam plugin. Just awesome. As it says: Akismet has caught 359,483 spam for you since you first installed it.</li>
<li><a href="http://michelf.com/projects/php-markdown/">Markdown</a> syntax plugin.</li>
<li><a href="http://techie-buzz.com/wordpress-plugins/wordpress-automatic-upgrade-12-release.html">Wordpress Automatic Upgrade</a> makes upgrading to a new version of Wordpress easy. Apparently this will be a built-in function of Wordpress 2.7. This plugin obsoletes my <a href="/2007/hates-step-one/">previous method of easy upgrades</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://madbean.com/2008/sandbox-child-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Updates and Updates</title>
		<link>http://madbean.com/2008/updates/</link>
		<comments>http://madbean.com/2008/updates/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 12:25:03 +0000</pubDate>
		<dc:creator>spud</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://madbean.com/?p=192</guid>
		<description><![CDATA[In the absence of regular blogging, I present to you this series of random updates. We will then return you to your regularly scheduled silence. Do not adjust your TV.

Update: new site theme

madbean.com has dutifully been wearing the same theme I whipped up when I originally installed WordPress
in 2005. It had really started to show [...]]]></description>
			<content:encoded><![CDATA[<p>In the absence of regular blogging, I present to you this series of random updates. We will then return you to your regularly scheduled silence. Do not adjust your TV.</p>

<h3>Update: new site theme</h3>

<p>madbean.com has dutifully been wearing the same theme I whipped up when I originally installed WordPress
<a href="/2005/upgrade-to-madbean3/">in 2005</a>. It had really started to show its age, so I decided it was time for a cleanup.</p>

<p>WordPress themes serve two (related) functions: templates for turning data into HTML, and visual styling (CSS). While I wanted to improve the visual styling, my main pain-point was the HTML generation: my theme was a copy of a very old example theme, and couldn&#8217;t support any of the new fancy WordPress features like Widgets. I went <a href="http://wordpress.org/extend/themes/">shopping</a> for a new theme, but I couldn&#8217;t find anything that really hit my two requirements:</p>

<ul>
<li>Visually clean and simple, and with a CSS structure that allows some <a href="http://twitter.com/spudbean/status/1023619144">simple customization</a>.</li>
<li>That it have a fluid, non-fixed-width layout. <a href="http://wordpress.org/extend/themes/tags/">Fixed width is popular</a>, but it is not what I want. Some of my posts are wide with code-samples, and if readers re-size their browser window, I want that to have an impact on the page.</li>
</ul>

<p>I almost gave up with shopper fatigue, but then I discovered <a href="http://wordpress.org/extend/themes/sandbox">Sandbox</a>. It supports all the fancy WordPress features, outputs richly structured HTML (lots of orthogonal CSS classes), and doesn&#8217;t override any of the Browser&#8217;s default visual style &#8212; that is up to you.</p>

<p>So now we have what you see today (which is not perhaps what you might be seeing in the future). Here are screenshots of the three main themes madbean.com has worn over time:</p>

<p>2008: <a href="/static/blog/2008/nov/mb-2008.png"><img alt="Up to 2008" src="/static/blog/2008/nov/mb-2008t.jpg" title="Up to 2008" /></a></p>

<p>2005: <a href="/static/blog/2008/nov/mb-2005.png"><img alt="Up to 2005" src="/static/blog/2008/nov/mb-2005t.jpg" title="Up to 2005" /></a></p>

<p>2004: <a href="/static/blog/2008/nov/mb-2004.png"><img alt="Up to 2004" src="/static/blog/2008/nov/mb-2004t.jpg" title="Up to 2004" /></a></p>

<p>2003: <a href="/static/blog/2008/nov/mb-2003.png"><img alt="in the beginning" src="/static/blog/2008/nov/mb-2003t.jpg" title="Up to 2003" /></a></p>

<h3>Update: offspring</h3>

<p>Did you know I have a new baby son Benjamin? Now three months old, he joins Joshua (nearly four) as one of my main time sinks (which, truth be told, I don&#8217;t mind so much).</p>

<h3>Update: Wiki4k</h3>

<p>I recently got my nerd game on and wiped up <a href="http://blogs.atlassian.com/developer/2008/11/wiki4k.html">Wiki4k</a>. This is a fully featured Wiki (with embedded HTTP server) delivered in a 4KB jar file.</p>

<h3>Update: new abode</h3>

<p>Having <a href="2007/goodbye-hello/">moved to Sydney</a> then spending 12 months renting, we bought a nice little apartment withing walking distance of the city. The building has some very nice views of the harbour, but we are on the ground floor (sacrificing views for a large outdoor area).</p>
]]></content:encoded>
			<wfw:commentRss>http://madbean.com/2008/updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So very 1337</title>
		<link>http://madbean.com/2008/1337/</link>
		<comments>http://madbean.com/2008/1337/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 22:30:21 +0000</pubDate>
		<dc:creator>spud</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://madbean.com/?p=186</guid>
		<description><![CDATA[Following the previous two, we have yet another moment of project-size zen


    [javac] Compiling 1337 source files to /Users/mquail/work/crucible/trunk/output/classes


That&#8217;s right, we are now officially so very 1337!!1!
]]></description>
			<content:encoded><![CDATA[<p>Following the <a href="/2004/mb2004-25/">previous</a> <a href="/2006/666/">two</a>, we have yet another moment of project-size zen</p>

<pre>
    [javac] Compiling 1337 source files to /Users/mquail/work/crucible/trunk/output/classes
</pre>

<p>That&#8217;s right, we are now officially so very 1337!!1!</p>
]]></content:encoded>
			<wfw:commentRss>http://madbean.com/2008/1337/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Josh In Space</title>
		<link>http://madbean.com/2008/josh-in-space/</link>
		<comments>http://madbean.com/2008/josh-in-space/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 09:55:23 +0000</pubDate>
		<dc:creator>spud</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://madbean.com/?p=172</guid>
		<description><![CDATA[My three year old &#8212; I mean three and a half year old &#8212; son Joshua loves everything spacey. In fact, one of his favorite cardboard boxes is the cardboard box we turned into a rocket ship.

On the weekend we took that rocket out to the local cosmodrome for a test run. The following is [...]]]></description>
			<content:encoded><![CDATA[<p>My three year old &#8212; I mean three and a half year old &#8212; son Joshua loves everything spacey. In fact, one of his favorite cardboard boxes is the cardboard box we turned into a rocket ship.</p>

<p>On the weekend we took that rocket out to the local cosmodrome for a test run. The following is the <a href="http://www.youtube.com/watch?v=HkQ3XBS61Gk">result</a>:</p>

<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/HkQ3XBS61Gk&amp;hl=en&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/HkQ3XBS61Gk&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>

<hr />

<p>If, like Nick, you think I left poor little Joshy in the middle of a big car park, rest assured that the whole shot is a green screen effect. He never left the safety of our kitchen and Final Cut Express&#8217; Chroma Key filter:</p>

<p><img src="/static/blog/2008/nov/greenscreen_sm.jpg"></p>

<p>The green screen setup turned out to be reasonably simple: one king-size green bed sheet and a 500W work-light from the local hardware store. What took the longest (about 3 hours) was the motion tracking &#8212; making sure it looked like the rocket ship was sitting still on the ground while the hand-held camera jumped about. I started out reasonably fussy with the motion tracking, but got quite sloppy at the end (not that you can tell thanks to the soft-focus that is Youtube). Next time I&#8217;ll either try out some of the motion-tracking plugins you can buy, or just use a tripod.</p>
]]></content:encoded>
			<wfw:commentRss>http://madbean.com/2008/josh-in-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaOne, speaking, meetup</title>
		<link>http://madbean.com/2008/javaone-day-minus-one/</link>
		<comments>http://madbean.com/2008/javaone-day-minus-one/#comments</comments>
		<pubDate>Mon, 05 May 2008 00:55:45 +0000</pubDate>
		<dc:creator>spud</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://madbean.com/?p=171</guid>
		<description><![CDATA[It is JavaOne time again, and I arrived in San Francisco this morning. I&#8217;m finally getting used to the 13 hour flight from Sydney to SF. I don&#8217;t know if that is a good thing.

It is going to be a busy year this year. Some highlights below. If you are in San Francisco note that [...]]]></description>
			<content:encoded><![CDATA[<p>It is JavaOne time again, and I arrived in San Francisco this morning. I&#8217;m finally getting used to the 13 hour flight from Sydney to SF. I don&#8217;t know if that is a good thing.</p>

<p>It is going to be a busy year this year. Some highlights below. If you are in San Francisco note that the Lightning Talks and Javabloggers meetup are <em>tomorrow</em>.</p>

<h2>Community One (Monday)</h2>

<p>We are running a <a rel="nofollow" href="http://en.wikipedia.org/wiki/Lightning_Talk">Lightning Talk session</a> at Community One (12noon I think). I&#8217;m one of the speakers, my title is &#8220;You suck at webapps&#8221; (or will be if I can finish it between now and then). It should be fun. Be there, or &#8230; be one of the less square people in SF at the moment.</p>

<h2>Javabloggers meetup (Monday night)</h2>

<p><a rel="nofollow" href="http://www.atlassian.com/">Atlassian</a> is sponsoring the Javabloggers meetup at <a rel="nofollow" href="http://maps.google.com/maps?=1&amp;q=thirsty+bear&amp;near=San+Francisco,+CA&amp;fb=1&amp;cid=0,0,16117366048065422338&amp;sa=X&amp;oi=local_result&amp;resnum=1&amp;ct=image">Thirsty Bear</a> downtown San Francisco after CommunityOne. <b>Free beer</b> from 7:30pm proudly sponsored by Atlassian.</p>

<h2>Pimp Your Build (Thursday TS-5596)</h2>

<p><a rel="nofollow" href="http://codefeed.com/blog/">Conor</a> and I are speaking at JavaOne on Thursday 4:10pm. &#8220;Pimp My Build: 10 Ways to Make Your Build Rock&#8221;. Come along, you&#8217;ll learn a little, cry a little, and come away feeling full of hope.</p>

<h2>Atlassian Booth (Pavillion)</h2>

<p>I&#8217;ll be at the Atlassian booth, come say hello, watch a demo and get an awesome t-shirt.</p>
]]></content:encoded>
			<wfw:commentRss>http://madbean.com/2008/javaone-day-minus-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Escape velocity is cool</title>
		<link>http://madbean.com/2008/escape-velocity-is-cool/</link>
		<comments>http://madbean.com/2008/escape-velocity-is-cool/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 10:44:47 +0000</pubDate>
		<dc:creator>spud</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://madbean.com/2008/escape-velocity-is-cool/</guid>
		<description><![CDATA[Check out this sequence of images 
of a NASA shuttle being prepared for a mission. Space is still cool.
(Via boing boing.)


]]></description>
			<content:encoded><![CDATA[<p>Check out this <a rel="nofollow" href="http://bmwsporttouring.com/ubbthreads/showflat.php?Cat=0&amp;Board=UBB11&amp;Number=1016238&amp;page=0&amp;fpart=all">sequence of images</a> 
of a NASA shuttle being prepared for a mission. Space is still cool.
(Via <a rel="nofollow" href="http://www.boingboing.net/2008/04/03/howto-launchprep-the.html">boing boing</a>.)</p>

<p><img src="/static/blog/2008/apr/shuttle.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://madbean.com/2008/escape-velocity-is-cool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Got a Jolt!</title>
		<link>http://madbean.com/2008/jolt/</link>
		<comments>http://madbean.com/2008/jolt/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 11:11:50 +0000</pubDate>
		<dc:creator>spud</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://madbean.com/2008/jolt/</guid>
		<description><![CDATA[FishEye and Clover won Jolt awards this year! FishEye in the &#8220;Change and Configuration Management&#8221; category and Clover in the &#8220;Testing Tools&#8221; category.

They are &#8220;the Oscars of our industry&#8221; which &#8212; for better or for worse &#8212; is about right. But I still I have a fondness for the Jolt awards. The first time I [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" href="http://www.atlassian.com/software/fisheye/">FishEye</a> and <a rel="nofollow" href="http://www.atlassian.com/software/clover/">Clover</a> won <a rel="nofollow" href="http://www.ddj.com/blog/portal/archives/2008/03/jolt_award_winn.html">Jolt awards</a> this year! FishEye in the &#8220;Change and Configuration Management&#8221; category and Clover in the &#8220;Testing Tools&#8221; category.</p>

<p>They are &#8220;the Oscars of our industry&#8221; which &#8212; for better or for worse &#8212; is about right. But I still I have a fondness for the Jolt awards. The first time I saw the awards in Dr Dobbs Journal, I remember thinking how nice it was that this <a rel="nofollow" href="http://www.joltawards.com/">caffeinated beverage company</a> targets us sleep-deprived code monkeys, and <strong>gets</strong> us enough to award us for our deeds. And fondness for the Jolt awards certainly has something to do with my fondness for Dr Dobbs Journal.</p>

<p>I&#8217;ve poured a lot of code into FishEye over the years. And we are still working quite hard at improving it, so it is sometimes hard to keep at the top of the stack the fact that a lot of people use it and think it is awesome. When non-nerds ask me what I do I give a standard response of &#8220;I develop tools for other software developers&#8221;, which most people seem to grok reasonably easily. This response took me a few years to refine and means such lines of conversation quickly get to the point where a change of subject is needed (to the relief of both parties). Conversations with other nerds run a little different. We can either be rather evasive, or overly detailed &#8212; seeing a fellow nerd&#8217;s face gloss over is a bad sign. It is a balancing act that I don&#8217;t always get right. But now, if someone&#8217;s curiosity matches my current grandiosity, I might just say:</p>

<p>I&#8217;ve won a Jolt.</p>
]]></content:encoded>
			<wfw:commentRss>http://madbean.com/2008/jolt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>From yay to nay in 16 minutes</title>
		<link>http://madbean.com/2008/from-yay-to-nay-in-16-minutes/</link>
		<comments>http://madbean.com/2008/from-yay-to-nay-in-16-minutes/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 12:21:56 +0000</pubDate>
		<dc:creator>spud</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://madbean.com/2008/from-yay-to-nay-in-16-minutes/</guid>
		<description><![CDATA[Via the teaparty:


10:49:42 PM spud: it&#8217;s finally being pooped out http://paulgraham.com/arc0.html
10:52:58 PM michael: @spud: gentlemen, start your parentheses! 
10:59:10 PM spud: &#8220;Arc only supports Ascii. I realize that supporting only Ascii is uninternational to a point that&#8217;s almost offensive &#8230; But the kind of people who would be offended by that wouldn&#8217;t like Arc anyway.&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Via the teaparty:</p>

<blockquote>
10:49:42 PM spud: it&#8217;s finally being pooped out <a rel="nofollow" href="http://paulgraham.com/arc0.html ">http://paulgraham.com/arc0.html</a><br/>
10:52:58 PM michael: @spud: gentlemen, start your parentheses! <br/>
10:59:10 PM spud: &#8220;Arc only supports Ascii. I realize that supporting only Ascii is uninternational to a point that&#8217;s almost offensive &#8230; But the kind of people who would be offended by that wouldn&#8217;t like Arc anyway.&#8221; Well, <b>now</b> I don&#8217;t like it&#8230; shesh!<br/>
11:00:23 PM adrian: Ewwww.<br/>
11:00:37 PM conor: too full of himself<br/>
11:00:49 PM spud: that&#8217;s paul g all over<br/>
11:01:11 PM spud: I like the direction erlang went, it doesn&#8217;t have a char type, just uses lists of ints<br/>
11:01:17 PM conor: probably only 7bit ASCII<br/>
11:01:27 PM * adrian likes the name Erlang.<br/>
11:01:39 PM conor: Having done traffic engineering, I find it difficult to use a language called Erlang<br/>
11:01:48 PM spud: ?<br/>
11:02:10 PM adrian: Erlang is the unit of measurement of telecommunications traffic.<br/>
11:03:28 PM adrian: 1 erlang = 100% occupancy<br/>
11:02:57 PM spud: wow didn&#8217;t know that<br/>
11:03:07 PM michael: so it&#8217;s for stupid mono-lingual programmers writing software for other stupid mono-lingual programmers without funny accents in their names? please!<br/>
11:03:57 PM spud: I&#8217;ll wait for Erlang 2.0 then<br/>
11:04:02 PM peter: Riley (read any 2 yearold) = 2 erlang<br/>
11:04:09 PM conor: I&#8217;m a .5 Erlang developer<br/>
11:04:11 PM spud: @peter lol<br/>
11:05:49 PM spud: meh fuck lisp<br/>
11:06:18 PM spud: that took 16 mins<br/>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://madbean.com/2008/from-yay-to-nay-in-16-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaPolis 07</title>
		<link>http://madbean.com/2007/jp07-hello/</link>
		<comments>http://madbean.com/2007/jp07-hello/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 02:47:40 +0000</pubDate>
		<dc:creator>spud</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://madbean.com/2007/jp07-hello/</guid>
		<description><![CDATA[So I&#8217;m off to JavaPolis 07. If you &#8212; my trusted readers &#8212; are going to be there, drop me a line or pop in to the Atlassian booth and say hello.
]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;m off to <a rel="nofollow" href="http://www.javapolis.com/">JavaPolis 07</a>. If you &#8212; my trusted readers &#8212; are going to be there, drop me a line or pop in to the Atlassian booth and say hello.</p>
]]></content:encoded>
			<wfw:commentRss>http://madbean.com/2007/jp07-hello/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.502 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-17 06:26:15 -->
<!-- Compression = gzip -->