<?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; notice</title>
	<atom:link href="http://fforw.de/tag/notice/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.1</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>
		<item>
		<title>Comments, again</title>
		<link>http://fforw.de/post/comments-again/</link>
		<comments>http://fforw.de/post/comments-again/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 10:15:34 +0000</pubDate>
		<dc:creator>fforw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[fforw.de]]></category>
		<category><![CDATA[notice]]></category>

		<guid isPermaLink="false">http://blog.willie/?p=10</guid>
		<description><![CDATA[Seems like I fucked up the anonymous reply function somehow which always led to an (invisible) form validation error. My apology to all the people who tried to comment and couldn&#8217;t. I would restore the comments but my logs only show that people tried to comment and not what they wote.]]></description>
			<content:encoded><![CDATA[<p>Seems like I fucked up the anonymous reply function somehow which always led to an (invisible) form validation error. My apology to all the people who tried to comment and couldn&#8217;t. I would restore the comments but my logs only show that people tried to comment and not what they wote.</p>
]]></content:encoded>
			<wfw:commentRss>http://fforw.de/post/comments-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comments and SPAM</title>
		<link>http://fforw.de/post/comments-and-spam/</link>
		<comments>http://fforw.de/post/comments-and-spam/#comments</comments>
		<pubDate>Sun, 18 Mar 2007 18:00:33 +0000</pubDate>
		<dc:creator>fforw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[notice]]></category>

		<guid isPermaLink="false">http://blog.willie/?p=15</guid>
		<description><![CDATA[I did some work on the blog code so that you can now comment on posts without registering a user before. At first I tried allowing comments with only a user name and an email address, but faced SPAM comments very soon. Since I&#8217;m not really convinced that you are interested in ring tones, I [...]]]></description>
			<content:encoded><![CDATA[<p>I did some work on the blog code so that you can now comment on posts without registering a user before. </p>
<p>At first I tried allowing comments with only a user name and an email address, but faced SPAM comments very soon. Since I&#8217;m not really convinced that you are interested in ring tones, I also added some calculatory CAPTCHA test which will hopefully solve that issue ( You are allowed to cheat and use a calculator <img src='http://fforw.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </p>
]]></content:encoded>
			<wfw:commentRss>http://fforw.de/post/comments-and-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

