<?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>fforw.de &#187; Blog</title>
	<atom:link href="http://fforw.de/tag/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://fforw.de</link>
	<description>skip the boring parts</description>
	<lastBuildDate>Sat, 12 Nov 2011 11:54:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>fforw.de on WordPress</title>
		<link>http://fforw.de/post/fforw-de-on-wordpress/</link>
		<comments>http://fforw.de/post/fforw-de-on-wordpress/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 12:55:25 +0000</pubDate>
		<dc:creator>fforw</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[jcouchdb]]></category>
		<category><![CDATA[notice]]></category>
		<category><![CDATA[turbogears]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://fforw.de/?p=31</guid>
		<description><![CDATA[This blog has been relatively stale for a while now &#8212; mostly due to increasing work pressure and the limited amount of time I had left for it. What little time I had was mostly wasted on coding on it. The previous version was written in turbogears which seemd like a good idea back in [...]]]></description>
			<content:encoded><![CDATA[<p>This blog has been relatively stale for a while now &#8212; mostly due to increasing work pressure and the limited amount of time I had left for it. What little time I had was mostly wasted on coding on it. The previous version was written in turbogears which seemd like a good idea back in 2006. Over time I kind of regretted that decision, which was not really Turbogears fault, but just caused by my laziness to really update it etc.</p>
<p>I&#8217;ve been frustrated with the old blog code and the old design for some time now and wanted to redo everything and already started multiple attempts in various technological reincarnations &#8212; the latest being an implementation in java/spring using my jcouchdb library. The design got more and more ambitious over time; so ambitious that it would basically require me to work full-time on it.<span id="more-31"></span></p>
<p>The solution was to seriously cut back on my ambitions with this blog and just use one of the available blog engines. This turned out to be wordpress in the end because it seemed like a good fit. The import from my Turbogears blog could be done with a hacky one-liner from the turbogears shell:</p>
<pre class="prettyprint lang_python">"".join(
    map(lambda post : """
        &lt;item&gt;
            &lt;pubDate&gt;%s&lt;/pubDate&gt;
            %s
            &lt;title&gt;%s&lt;/title&gt;
            &lt;content:encoded&gt;%s&lt;/content:encoded&gt;
        &lt;/item&gt;\n""" % (
            post.created,
            "".join( map(lambda s: "&lt;category&gt;%s&lt;/category&gt;\n" % s,
                             post.tagNames.split(" "))),
            post.name,
            post.text.replace("\n"," ")), posts))
</pre>
<p>I hope all this will lead to me actually writing stuff in this blog instead of perpetually coding on it.</p>
]]></content:encoded>
			<wfw:commentRss>http://fforw.de/post/fforw-de-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

