<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Frederik&#039;s Weblog</title>
	<atom:link href="http://fdietz.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fdietz.wordpress.com</link>
	<description>Ruby, Rails, Billbrooks, Hamburg</description>
	<lastBuildDate>Sun, 27 Sep 2009 14:09:55 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='fdietz.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/597878e36aadcb254567feee2638117a?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Frederik&#039;s Weblog</title>
		<link>http://fdietz.wordpress.com</link>
	</image>
			<item>
		<title>Caffeinated Simpleton  » Blog Archive  » An Introduction to JavaScript’s “this”</title>
		<link>http://fdietz.wordpress.com/2009/09/27/caffeinated-simpleton-%c2%bb-blog-archive-%c2%bb-an-introduction-to-javascript%e2%80%99s-%e2%80%9cthis%e2%80%9d/</link>
		<comments>http://fdietz.wordpress.com/2009/09/27/caffeinated-simpleton-%c2%bb-blog-archive-%c2%bb-an-introduction-to-javascript%e2%80%99s-%e2%80%9cthis%e2%80%9d/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 14:09:55 +0000</pubDate>
		<dc:creator>fdietz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fdietz.wordpress.com/?p=209</guid>
		<description><![CDATA[Caffeinated Simpleton  » Blog Archive  » An Introduction to JavaScript’s “this”.
Nice summary of using apply() and bind() to make functions work in the right context.       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=209&subd=fdietz&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://justin.harmonize.fm/index.php/2009/09/an-introduction-to-javascripts-this/">Caffeinated Simpleton  » Blog Archive  » An Introduction to JavaScript’s “this”</a>.</p>
<p>Nice summary of using apply() and bind() to make functions work in the right context.</p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fdietz.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fdietz.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fdietz.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fdietz.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fdietz.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fdietz.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fdietz.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fdietz.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fdietz.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fdietz.wordpress.com/209/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=209&subd=fdietz&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fdietz.wordpress.com/2009/09/27/caffeinated-simpleton-%c2%bb-blog-archive-%c2%bb-an-introduction-to-javascript%e2%80%99s-%e2%80%9cthis%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2a3fd9a2a7c1109db42718751db5463?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">fdietz</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding Columns to large MySQL Tables Quickly</title>
		<link>http://fdietz.wordpress.com/2009/09/19/adding-columns-to-large-mysql-tables-quickly/</link>
		<comments>http://fdietz.wordpress.com/2009/09/19/adding-columns-to-large-mysql-tables-quickly/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 16:20:38 +0000</pubDate>
		<dc:creator>fdietz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fdietz.wordpress.com/?p=207</guid>
		<description><![CDATA[Onehub • Adding Columns to large MySQL Tables Quickly.
Simple Example Rails migration creates a copy of the original table and then deletes the old table while renaming the new table. Performance impact is frustratingly high &#8211; oh MySQL, *sigh*       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=207&subd=fdietz&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://onehub.com/past/2009/9/15/adding_columns_to_large_mysql_tables/">Onehub • Adding Columns to large MySQL Tables Quickly</a>.</p>
<p>Simple Example Rails migration creates a copy of the original table and then deletes the old table while renaming the new table. Performance impact is frustratingly high &#8211; oh MySQL, *sigh*</p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fdietz.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fdietz.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fdietz.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fdietz.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fdietz.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fdietz.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fdietz.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fdietz.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fdietz.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fdietz.wordpress.com/207/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=207&subd=fdietz&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fdietz.wordpress.com/2009/09/19/adding-columns-to-large-mysql-tables-quickly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2a3fd9a2a7c1109db42718751db5463?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">fdietz</media:title>
		</media:content>
	</item>
		<item>
		<title>State of the Couch</title>
		<link>http://fdietz.wordpress.com/2009/09/08/state-of-the-couch/</link>
		<comments>http://fdietz.wordpress.com/2009/09/08/state-of-the-couch/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 21:39:45 +0000</pubDate>
		<dc:creator>fdietz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[erlang]]></category>

		<guid isPermaLink="false">http://fdietz.wordpress.com/?p=203</guid>
		<description><![CDATA[http://jan.prima.de/plok/archives/180-The-State-of-the-Couch-The-Invited-Talk-at-the-Erlang-Workshop-at-ICFP-in-Edinburgh-in-2009.html

Nice summary of CouchDB&#8217;s status from Jan Lenhardt speaking at the Erlang Workshop at ICFP in Edinburgh. Especially interesting to me are his concerns for Erlang&#8217;s &#8220;Open Source-ness&#8221;. 
Remember how many problems the Java community had with similar problems? Or the benevolent dictatorship problems other projects have? It seems to help initially to get things [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=203&subd=fdietz&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://jan.prima.de/plok/archives/180-The-State-of-the-Couch-The-Invited-Talk-at-the-Erlang-Workshop-at-ICFP-in-Edinburgh-in-2009.html"><a href="http://jan.prima.de/plok/archives/180-The-State-of-the-Couch-The-Invited-Talk-at-the-Erlang-Workshop-at-ICFP-in-Edinburgh-in-2009.html" rel="nofollow">http://jan.prima.de/plok/archives/180-The-State-of-the-Couch-The-Invited-Talk-at-the-Erlang-Workshop-at-ICFP-in-Edinburgh-in-2009.html</a><br />
</a><br />
Nice summary of CouchDB&#8217;s status from Jan Lenhardt speaking at the Erlang Workshop at ICFP in Edinburgh. Especially interesting to me are his concerns for Erlang&#8217;s &#8220;Open Source-ness&#8221;. </p>
<p>Remember how many problems the Java community had with similar problems? Or the benevolent dictatorship problems other projects have? It seems to help initially to get things rollin&#8217; but in later stages it becomes more and more of a problem. Let&#8217;s see what&#8217;s going to happen next!  </p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fdietz.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fdietz.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fdietz.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fdietz.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fdietz.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fdietz.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fdietz.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fdietz.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fdietz.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fdietz.wordpress.com/203/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=203&subd=fdietz&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fdietz.wordpress.com/2009/09/08/state-of-the-couch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2a3fd9a2a7c1109db42718751db5463?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">fdietz</media:title>
		</media:content>
	</item>
		<item>
		<title>Why should I use ruby-config instead of &#8230;</title>
		<link>http://fdietz.wordpress.com/2009/09/07/why-should-i-use-ruby-config-instead-of/</link>
		<comments>http://fdietz.wordpress.com/2009/09/07/why-should-i-use-ruby-config-instead-of/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 17:48:00 +0000</pubDate>
		<dc:creator>fdietz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://fdietz.wordpress.com/2009/09/07/why-should-i-use-ruby-config-instead-of/</guid>
		<description><![CDATA[Why should I use ruby-config instead of rvm? 
From what I can tell after examining their website is that rvm works very similar to ruby-config. It has the same basic feature set and works quite similar by changing symlinks and environment settings. 
It definitely looks more polished to me and has most probably seen more [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=201&subd=fdietz&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Why should I use ruby-config instead of rvm? </p>
<p>From what I can tell after examining their website is that <a href="http://github.com/wayneeseguin/rvm/tree/master">rvm</a> works very similar to <a href="http://github.com/fdietz/ruby-config/tree/master">ruby-config</a>. It has the same basic feature set and works quite similar by changing symlinks and environment settings. </p>
<p>It definitely looks more polished to me and has most probably seen more usage lately due to its recent popularity. BTW, I love their website design.</p>
<p>So, what speaks for ruby-config? It is written in Ruby and has complete test coverage. It will probably attract the more ruby-oriented developer, since it has a low entry barrier for contributing back. Personally, I refrain from maintaining large bash scripts, having them replaced several years ago with Perl scripts, which I replaced later on happily with Ruby. No pun intended <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  And I simply enjoy working with Ruby! </p>
<p>Healthy competition is good in my opinion. I&#8217;ll get in touch with rvm&#8217;s maintainer to see where both projects strengths are and how we can both improve our projects by learning from each other.</p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fdietz.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fdietz.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fdietz.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fdietz.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fdietz.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fdietz.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fdietz.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fdietz.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fdietz.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fdietz.wordpress.com/201/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=201&subd=fdietz&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fdietz.wordpress.com/2009/09/07/why-should-i-use-ruby-config-instead-of/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2a3fd9a2a7c1109db42718751db5463?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">fdietz</media:title>
		</media:content>
	</item>
		<item>
		<title>Very nice vector drawing using javascrip&#8230;</title>
		<link>http://fdietz.wordpress.com/2009/09/07/very-nice-vector-drawing-using-javascrip/</link>
		<comments>http://fdietz.wordpress.com/2009/09/07/very-nice-vector-drawing-using-javascrip/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 15:08:41 +0000</pubDate>
		<dc:creator>fdietz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://fdietz.wordpress.com/2009/09/07/very-nice-vector-drawing-using-javascrip/</guid>
		<description><![CDATA[Very nice vector drawing using javascript and DOM. Meaning you can actually attach javascript events to DOM elements. And on top of that it works with all existing browsers, unlike Canvas. http://ajaxian.com/archives/raphael-10-rc-get-your-graphics-on       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=200&subd=fdietz&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Very nice vector drawing using javascript and DOM. Meaning you can actually attach javascript events to DOM elements. And on top of that it works with all existing browsers, unlike Canvas. <a href="http://ajaxian.com/archives/raphael-10-rc-get-your-graphics-on" rel="nofollow">http://ajaxian.com/archives/raphael-10-rc-get-your-graphics-on</a></p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fdietz.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fdietz.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fdietz.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fdietz.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fdietz.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fdietz.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fdietz.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fdietz.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fdietz.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fdietz.wordpress.com/200/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=200&subd=fdietz&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fdietz.wordpress.com/2009/09/07/very-nice-vector-drawing-using-javascrip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2a3fd9a2a7c1109db42718751db5463?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">fdietz</media:title>
		</media:content>
	</item>
		<item>
		<title>Nice summary on the reasoning of Desktop&#8230;</title>
		<link>http://fdietz.wordpress.com/2009/09/06/nice-summary-on-the-reasoning-of-desktop/</link>
		<comments>http://fdietz.wordpress.com/2009/09/06/nice-summary-on-the-reasoning-of-desktop/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 10:43:31 +0000</pubDate>
		<dc:creator>fdietz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fdietz.wordpress.com/2009/09/06/nice-summary-on-the-reasoning-of-desktop/</guid>
		<description><![CDATA[Nice summary on the reasoning of Desktop vs Web Apps: http://www.kalzumeus.com/2009/09/05/desktop-aps-versus-web-apps/       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=199&subd=fdietz&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Nice summary on the reasoning of Desktop vs Web Apps: <a href="http://www.kalzumeus.com/2009/09/05/desktop-aps-versus-web-apps/" rel="nofollow">http://www.kalzumeus.com/2009/09/05/desktop-aps-versus-web-apps/</a></p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fdietz.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fdietz.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fdietz.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fdietz.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fdietz.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fdietz.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fdietz.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fdietz.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fdietz.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fdietz.wordpress.com/199/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=199&subd=fdietz&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fdietz.wordpress.com/2009/09/06/nice-summary-on-the-reasoning-of-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2a3fd9a2a7c1109db42718751db5463?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">fdietz</media:title>
		</media:content>
	</item>
		<item>
		<title>Gem Packaging Best Practices: http://web&#8230;</title>
		<link>http://fdietz.wordpress.com/2009/09/06/gem-packaging-best-practices-httpweb/</link>
		<comments>http://fdietz.wordpress.com/2009/09/06/gem-packaging-best-practices-httpweb/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 10:39:50 +0000</pubDate>
		<dc:creator>fdietz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://fdietz.wordpress.com/2009/09/06/gem-packaging-best-practices-httpweb/</guid>
		<description><![CDATA[Gem Packaging Best Practices: http://weblog.rubyonrails.org/2009/9/1/gem-packaging-best-practices.       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=198&subd=fdietz&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Gem Packaging Best Practices: <a href="http://weblog.rubyonrails.org/2009/9/1/gem-packaging-best-practices" rel="nofollow">http://weblog.rubyonrails.org/2009/9/1/gem-packaging-best-practices</a>.</p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fdietz.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fdietz.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fdietz.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fdietz.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fdietz.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fdietz.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fdietz.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fdietz.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fdietz.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fdietz.wordpress.com/198/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=198&subd=fdietz&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fdietz.wordpress.com/2009/09/06/gem-packaging-best-practices-httpweb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2a3fd9a2a7c1109db42718751db5463?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">fdietz</media:title>
		</media:content>
	</item>
		<item>
		<title>THE Apple Snow Leopard Review: http://ar&#8230;</title>
		<link>http://fdietz.wordpress.com/2009/09/06/the-apple-snow-leopard-review-httpar/</link>
		<comments>http://fdietz.wordpress.com/2009/09/06/the-apple-snow-leopard-review-httpar/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 10:38:50 +0000</pubDate>
		<dc:creator>fdietz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://fdietz.wordpress.com/2009/09/06/the-apple-snow-leopard-review-httpar/</guid>
		<description><![CDATA[THE Apple Snow Leopard Review: http://arstechnica.com/apple/reviews/2009/08/mac-os-x-10-6.ars. This is 24 pages!       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=197&subd=fdietz&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>THE Apple Snow Leopard Review: <a href="http://arstechnica.com/apple/reviews/2009/08/mac-os-x-10-6.ars" rel="nofollow">http://arstechnica.com/apple/reviews/2009/08/mac-os-x-10-6.ars</a>. This is 24 pages!</p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fdietz.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fdietz.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fdietz.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fdietz.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fdietz.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fdietz.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fdietz.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fdietz.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fdietz.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fdietz.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=197&subd=fdietz&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fdietz.wordpress.com/2009/09/06/the-apple-snow-leopard-review-httpar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2a3fd9a2a7c1109db42718751db5463?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">fdietz</media:title>
		</media:content>
	</item>
		<item>
		<title>How to use Perforce&#8217;s Merge Tool http:/&#8230;</title>
		<link>http://fdietz.wordpress.com/2009/09/06/how-to-use-perforces-merge-tool-http/</link>
		<comments>http://fdietz.wordpress.com/2009/09/06/how-to-use-perforces-merge-tool-http/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 10:37:49 +0000</pubDate>
		<dc:creator>fdietz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://fdietz.wordpress.com/2009/09/06/how-to-use-perforces-merge-tool-http/</guid>
		<description><![CDATA[How to use Perforce&#8217;s Merge Tool http://onestepback.org/index.cgi/Tech/Git/UsingP4MergeWithGit.red       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=196&subd=fdietz&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>How to use Perforce&#8217;s Merge Tool <a href="http://onestepback.org/index.cgi/Tech/Git/UsingP4MergeWithGit.red" rel="nofollow">http://onestepback.org/index.cgi/Tech/Git/UsingP4MergeWithGit.red</a></p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fdietz.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fdietz.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fdietz.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fdietz.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fdietz.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fdietz.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fdietz.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fdietz.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fdietz.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fdietz.wordpress.com/196/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=196&subd=fdietz&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fdietz.wordpress.com/2009/09/06/how-to-use-perforces-merge-tool-http/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2a3fd9a2a7c1109db42718751db5463?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">fdietz</media:title>
		</media:content>
	</item>
		<item>
		<title>Just released ruby-config 0.7. Most inte&#8230;</title>
		<link>http://fdietz.wordpress.com/2009/09/05/just-released-ruby-config-0-7-most-inte/</link>
		<comments>http://fdietz.wordpress.com/2009/09/05/just-released-ruby-config-0-7-most-inte/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 15:39:17 +0000</pubDate>
		<dc:creator>fdietz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://fdietz.wordpress.com/2009/09/05/just-released-ruby-config-0-7-most-inte/</guid>
		<description><![CDATA[Just released ruby-config 0.7. Most interestingly I changed the user interface to be command based instead of using option switches. 
So, instead of:
ruby-config --list-installed 
you can do a simple:
ruby-config list
In case you missed the 0.6 release. Most noteworthy I fixed the chicken-egg problem where a newly installed Ruby runtime doesn&#8217;t have the ruby-config gem installed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=189&subd=fdietz&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Just released ruby-config 0.7. Most interestingly I changed the user interface to be command based instead of using option switches. </p>
<p>So, instead of:<br />
<code>ruby-config --list-installed</code> </p>
<p>you can do a simple:<br />
<code>ruby-config list</code></p>
<p>In case you missed the 0.6 release. Most noteworthy I fixed the chicken-egg problem where a newly installed Ruby runtime doesn&#8217;t have the ruby-config gem installed yet. I&#8217;ve started maintaining <a href="http://github.com/fdietz/ruby-config/blob/5a1a79284b24f63ef0fc07fb966eb07eab43f25e/ReleaseNotes.md">Release Notes</a> to make it more convenient to follow changes in the future.</p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fdietz.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fdietz.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fdietz.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fdietz.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fdietz.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fdietz.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fdietz.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fdietz.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fdietz.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fdietz.wordpress.com/189/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fdietz.wordpress.com&blog=1504528&post=189&subd=fdietz&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fdietz.wordpress.com/2009/09/05/just-released-ruby-config-0-7-most-inte/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c2a3fd9a2a7c1109db42718751db5463?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">fdietz</media:title>
		</media:content>
	</item>
	</channel>
</rss>