<?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>Dear Diary</title>
	<atom:link href="http://www.van-porten.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.van-porten.de</link>
	<description>A Developer's Weblog</description>
	<lastBuildDate>Sun, 29 Aug 2010 05:46:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Making Bugzilla run on Windows with XAMPP</title>
		<link>http://www.van-porten.de/2010/07/making-bugzilla-run-on-windows-with-xampp/</link>
		<comments>http://www.van-porten.de/2010/07/making-bugzilla-run-on-windows-with-xampp/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 07:41:09 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/?p=892</guid>
		<description><![CDATA[I was struggling a bit with making Bugzilla 2.2 work on my Windows XAMPP. I kept getting error about child processes not being able to start. The logs said this: [Mon Jul 05 09:04:38 2010] [error] [client 127.0.0.1] (OS 3)The system cannot find the path specified. : couldn&#8217;t create child process: 720003: index.cgi [Mon Jul [...]]]></description>
			<content:encoded><![CDATA[<p>I was struggling a bit with making Bugzilla 2.2 work on my Windows XAMPP. I kept getting error about child processes not being able to start. The logs said this:</p>
<blockquote><p>
[Mon Jul 05 09:04:38 2010] [error] [client 127.0.0.1] (OS 3)The system cannot find the path specified.  : couldn&#8217;t create child process: 720003: index.cgi<br />
[Mon Jul 05 09:04:38 2010] [error] [client 127.0.0.1] (OS 3)The system cannot find the path specified.  : couldn&#8217;t spawn child process: C:/xampp/htdocs/bugzilla/index.cgi
</p></blockquote>
<p>Ths solution is actually pretty straigt-forward, once you know it. First, add a registry key</p>

<div class="wp_syntax"><div class="code"><pre class="reg" style="font-family:monospace;"><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\.cgi\Shell\ExecCGI\Command</pre></div></div>

<p>and change it&#8217;s default value to:</p>

<div class="wp_syntax"><div class="code"><pre class="reg" style="font-family:monospace;">C:\xampp\perl\bin\perl.exe -T</pre></div></div>

<p>Adjust to your system&#8217;s paths, of course. You can use <a href='http://www.van-porten.de/wp-content/uploads/2010/07/apache_cgi.zip'>this .reg file</a> if you have installed into <em>c:\xampp</em> or you can copy and paste from here:</p>

<div class="wp_syntax"><div class="code"><pre class="reg" style="font-family:monospace;"><span style="color: #0000FF;">Windows Registry Editor Version 5.00</span>
&nbsp;
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_CLASSES_ROOT</span>\.cgi\Shell\ExecCGI\Command<span style="color: #000000;">&#93;</span>
<span style="">@</span><span style="color: #000000;">=</span><span style="">&quot;C:\\xampp\\perl\\bin\\perl.exe -T&quot;</span></pre></div></div>

<p>Then, edit your httpd.conf (e.g. c:\xampp\apache\conf\httpd.conf) and add these lines:</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;">&lt;<span style="color: #000000; font-weight:bold;">directory</span> <span style="color: #7f007f;">&quot;C:/xampp/htdocs/bugzilla&quot;</span>&gt;
  <span style="color: #00007f;">AddHandler</span> cgi-<span style="color: #00007f;">script</span> .cgi
  <span style="color: #00007f;">Options</span> +<span style="color: #0000ff;">Indexes</span> +ExecCGI
  <span style="color: #00007f;">DirectoryIndex</span> index.cgi
  <span style="color: #00007f;">AllowOverride</span> <span style="color: #00007f;">Limit</span>
&nbsp;
  <span style="color: #adadad; font-style: italic;"># To enable the this Windows specific behavior (and therefore -disable- the</span>
  <span style="color: #adadad; font-style: italic;"># equivilant Unix behavior), uncomment the following directive:</span>
  <span style="color: #adadad; font-style: italic;">#</span>
  <span style="color: #00007f;">ScriptInterpreterSource</span> registry
&lt;/<span style="color: #000000; font-weight:bold;">directory</span>&gt;</pre></div></div>

<p>The important part here is <strong>ScriptInterpreterSource registry</strong>. It will make Apache pick up the interpreter from the registry rather then from the Shebang in the bugzilla cgi scripts. (see also <a href="http://httpd.apache.org/docs/2.0/mod/core.html#scriptinterpretersource">http://httpd.apache.org/docs/2.0/mod/core.html#scriptinterpretersource</a>). </p>
<p>This is necessary since there is no</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/usr/bin/perl -wT</span></pre></div></div>

<p>on your windows system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2010/07/making-bugzilla-run-on-windows-with-xampp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Ubuntu 10.04 Server 64bit via USB Pendrive</title>
		<link>http://www.van-porten.de/2010/06/installing-ubuntu-10-04-server-64bit-via-usb-pendrive/</link>
		<comments>http://www.van-porten.de/2010/06/installing-ubuntu-10-04-server-64bit-via-usb-pendrive/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 20:24:20 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/?p=873</guid>
		<description><![CDATA[After struggling with installing Ubuntu Server 10.04 from a bootable usb stick, here are some hints in case anyone else ever wants to do this. My problem was that the Server Installer kept trying to load files from the CD and could not find them, which made the installation fail. I actually wonder why it [...]]]></description>
			<content:encoded><![CDATA[<p>After struggling with installing <a href="http://www.ubuntu.com/server">Ubuntu Server 10.04</a> from a bootable usb stick, here are some hints in case anyone else ever wants to do this. My problem was that the Server Installer kept trying to load files from the CD and could not find them, which made the installation fail. I actually wonder why it could not find anything because it was apparently looking in the right places (i.e. the USB stick mounted under /cdrom). Feel free to enlighten me.</p>
<p>Anyway, first, you&#8217;ll of course need the <a href="http://www.ubuntu.com/server/get-ubuntu/download">Ubuntu Server Iso Image</a> and the <a href="http://www.pendrivelinux.com/downloads/Universal-USB-Installer/Universal-USB-Installer.exe">Universal USB Install</a> in case you&#8217;re on Windows or the &#8216;Startup Disc Creator&#8217; in case you&#8217;re already running Ubuntu.</p>
<p>Then, you&#8217;ll need to follow the guide to creating a usb stick as posted on the<a href="http://www.ubuntu.com/server/get-ubuntu/download"> download page</a> when you click &#8216;Show me how&#8217;. That is, run the Disc Create / USB Installer and follow the instructions. It&#8217;s actually pretty straight forward so I&#8217;m not going to post it again. <img src='http://www.van-porten.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Next, and this is important, copy the iso you downloaded onto the USB stick, as we will need it later when we booted into the installation.</strong></p>
<p>Now, boot the system from the USB stick you just created. This will start the installation where you can first choose a language and the like. After a while, as I already wrote, the installer failed for me with &#8220;missing data from cdrom&#8221;, bringing me to the installation menu. From there, you can choose to open a shell. Do so.</p>
<p>Once the shell is there, execute:<br />
<code><br />
mount<br />
</code><br />
and note the device that is mounted as /cdrom. This is your usb stick.</p>
<p>Next, execute the following commands:<br />
<code><br />
umount /cdrom<br />
mkdir /usb<br />
#device_name is the one from mount<br />
mount /dev/device_name /usb<br />
mount -t iso9660 -o loop /usb/ubuntu-10.04-server-amd64.iso /cdrom<br />
</code><br />
The iso name of course depends on the version of the server you downloaded. for me, it was the 64 bit version.</p>
<p>Next, you can exit the shell:<br />
<code><br />
exit<br />
</code><br />
This will take you back to the installation menu.</p>
<p>Select &#8220;Load preseed&#8221; (or similiarly named &#8211; can&#8217;t quite remember right now). The installation should now continue normally.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2010/06/installing-ubuntu-10-04-server-64bit-via-usb-pendrive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flashing PR 1.2 to the N900 from Ubuntu 10.04 64bit</title>
		<link>http://www.van-porten.de/2010/06/flashing-pr-1-2-to-the-n900-from-ubuntu-10-04-64bit/</link>
		<comments>http://www.van-porten.de/2010/06/flashing-pr-1-2-to-the-n900-from-ubuntu-10-04-64bit/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 13:47:04 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/?p=858</guid>
		<description><![CDATA[To install flasher, do sudo dpkg -i --force-architecture maemo_flasher-3.5_2.5.2.2_i386.deb afterwards, install ia32-libs from multiverse: sudo apt-get install ia32-libs Before installing ia32-libs flasher kept telling me this: ubuntu@ubuntu:~/Desktop$ flasher-3.5 bash: /usr/bin/flasher-3.5: No such file or directory Now, to flash PR1.2 and the vanilla eMMC content, issue the following two commands: sudo flasher-3.5 -F RX-51_2009SE_10.2010.19-1_PR_COMBINED_MR0_ARM.bin -f sudo [...]]]></description>
			<content:encoded><![CDATA[<p>To install flasher, do<br />
<code><br />
sudo dpkg -i --force-architecture maemo_flasher-3.5_2.5.2.2_i386.deb<br />
</code><br />
afterwards, install ia32-libs from multiverse:<br />
<code><br />
sudo apt-get install ia32-libs<br />
</code></p>
<p>Before installing ia32-libs flasher kept telling me this:<br />
<code><br />
ubuntu@ubuntu:~/Desktop$ flasher-3.5<br />
bash: /usr/bin/flasher-3.5: No such file or directory<br />
</code></p>
<p>Now, to flash PR1.2 and the vanilla eMMC content, issue the following two commands:<br />
<code><br />
sudo flasher-3.5 -F RX-51_2009SE_10.2010.19-1_PR_COMBINED_MR0_ARM.bin -f<br />
sudo flasher-3.5 -F RX-51_2009SE_10.2010.13-2.VANILLA_PR_EMMC_MR0_ARM.bin -f -R<br />
</code></p>
<p>This will flash and reboot after flashing the eMMC contents.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2010/06/flashing-pr-1-2-to-the-n900-from-ubuntu-10-04-64bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brainbench Master Python 2.4</title>
		<link>http://www.van-porten.de/2010/05/brainbench-master-python-2-4/</link>
		<comments>http://www.van-porten.de/2010/05/brainbench-master-python-2-4/#comments</comments>
		<pubDate>Mon, 03 May 2010 21:38:26 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[brainbench learning]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/?p=829</guid>
		<description><![CDATA[For what it&#8217;s worth, this is what the Brainbench exam said about me in the results: Score 4.01 Scored higher than 78% of all previous exam takers. Demonstrates a clear understanding of many advanced concepts within this topic. Appears capable of mentoring others on most projects in this area. Strengths Classes Standard Library Language Built-in [...]]]></description>
			<content:encoded><![CDATA[<p>For what it&#8217;s worth, this is what the Brainbench exam said about me in the results:</p>
<blockquote><p>
Score 4.01<br />
Scored higher than 78% of all previous exam takers.</p>
<p>Demonstrates a clear understanding of many advanced concepts within this topic. Appears capable of mentoring others on most projects in this area.</p>
<p>Strengths<br />
  Classes<br />
  Standard Library<br />
  Language<br />
  Built-in Features</p>
<p>Weak Areas<br />
  None Noted
</p></blockquote>
<p>Isn&#8217;t that nice? <img src='http://www.van-porten.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2010/05/brainbench-master-python-2-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Neues Auto</title>
		<link>http://www.van-porten.de/2010/03/neues-auto/</link>
		<comments>http://www.van-porten.de/2010/03/neues-auto/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 19:55:27 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/?p=792</guid>
		<description><![CDATA[Das hier wird&#8217;s, ein Golf 1.4 TSI Highline mit ein bisschen Schnick-Schnack: *schmacht*]]></description>
			<content:encoded><![CDATA[<p>Das hier wird&#8217;s, ein <a href="http://www.volkswagen.de/vwcms/master_public/virtualmaster/de3/modelle/golf/golf/ausstattungslinien/highline.html">Golf 1.4 TSI Highline</a> mit ein bisschen Schnick-Schnack:<br />
<a href="http://www.van-porten.de/wp-content/uploads/2010/03/auto_außen.jpg"><img src="http://www.van-porten.de/wp-content/uploads/2010/03/auto_außen-300x123.jpg" alt="" title="auto_außen" width="300" height="123" class="aligncenter size-medium wp-image-790" /></a><br />
<a href="http://www.van-porten.de/wp-content/uploads/2010/03/auto_innen.jpg"><img src="http://www.van-porten.de/wp-content/uploads/2010/03/auto_innen-300x248.jpg" alt="" title="auto_innen" width="300" height="248" class="aligncenter size-medium wp-image-791" /></a><br />
*schmacht* <img src='http://www.van-porten.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2010/03/neues-auto/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quote of the Month</title>
		<link>http://www.van-porten.de/2010/03/quote-of-the-month/</link>
		<comments>http://www.van-porten.de/2010/03/quote-of-the-month/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 13:27:02 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cites]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/?p=779</guid>
		<description><![CDATA[On the Kite, the situation was being &#8216;workshopped&#8217;. This is the means by which people who don&#8217;t know anything get together to pool their ignorance. from: Terry Pratchett &#8211; The Last Hero &#8211; A Discworld Fable. &#8230; and so true]]></description>
			<content:encoded><![CDATA[<blockquote><p>On the Kite, the situation was being &#8216;workshopped&#8217;. This is the means by which people who don&#8217;t know anything get together to pool their ignorance.</p></blockquote>
<p>from: Terry Pratchett &#8211; The Last Hero &#8211; A Discworld Fable.</p>
<p>&#8230; and so true <img src='http://www.van-porten.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2010/03/quote-of-the-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now reading &#8230;</title>
		<link>http://www.van-porten.de/2010/01/now-reading-5/</link>
		<comments>http://www.van-porten.de/2010/01/now-reading-5/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 20:26:46 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/?p=746</guid>
		<description><![CDATA[Soul Music: A Discworld Novel by Terry Pratchett]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.de/gp/product/0552140295?ie=UTF8&#038;tag=deadia-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=0552140295"><img src="http://www.van-porten.de/wp-content/uploads/2010/01/31A4VMQGMJL._SL160_1.jpg" alt="" title="Soul Music" width="95" height="160" class="aligncenter size-full wp-image-761" /></a><img src="http://www.assoc-amazon.de/e/ir?t=deadia-21&#038;l=as2&#038;o=3&#038;a=0552140295" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
<p><a href="http://www.amazon.de/gp/product/0552140295?ie=UTF8&#038;tag=deadia-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=0552140295">Soul Music: A Discworld Novel</a><img src="http://www.assoc-amazon.de/e/ir?t=deadia-21&#038;l=as2&#038;o=3&#038;a=0552140295" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> by <a href="http://www.amazon.de/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.de%2Fs%3Fie%3DUTF8%26redirect%3Dtrue%26search-type%3Dss%26index%3Dbooks-de-intl-us%26field-author%3DTerry%2520Pratchett&#038;site-redirect=de&#038;tag=deadia-21&#038;linkCode=ur2&#038;camp=1638&#038;creative=19454">Terry Pratchett</a><img src="https://www.assoc-amazon.de/e/ir?t=deadia-21&#038;l=ur2&#038;o=3" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2010/01/now-reading-5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Now reading &#8230;</title>
		<link>http://www.van-porten.de/2010/01/now-reading-4/</link>
		<comments>http://www.van-porten.de/2010/01/now-reading-4/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 14:17:58 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Books]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/?p=733</guid>
		<description><![CDATA[Small Gods: A Discworld Novel by Terry Pratchett]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.de/gp/product/0552138908?ie=UTF8&#038;tag=deadia-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=0552138908"><img src="http://www.van-porten.de/wp-content/uploads/2010/01/514N9MA34WL._SL160_1.jpg" alt="" title="Small Gods" width="94" height="160" class="aligncenter size-full wp-image-734" /></a><img src="http://www.assoc-amazon.de/e/ir?t=deadia-21&#038;l=as2&#038;o=3&#038;a=0552138908" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
<p><a href="http://www.amazon.de/gp/product/0552138908?ie=UTF8&#038;tag=deadia-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=0552138908">Small Gods: A Discworld Novel</a><img src="http://www.assoc-amazon.de/e/ir?t=deadia-21&#038;l=as2&#038;o=3&#038;a=0552138908" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> by <a href="http://www.amazon.de/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.de%2Fs%3Fie%3DUTF8%26redirect%3Dtrue%26search-type%3Dss%26index%3Dbooks-de-intl-us%26field-author%3DTerry%2520Pratchett&#038;site-redirect=de&#038;tag=deadia-21&#038;linkCode=ur2&#038;camp=1638&#038;creative=19454">Terry Pratchett</a><img src="https://www.assoc-amazon.de/e/ir?t=deadia-21&#038;l=ur2&#038;o=3" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2010/01/now-reading-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now reading &#8230;</title>
		<link>http://www.van-porten.de/2010/01/now-reading-3/</link>
		<comments>http://www.van-porten.de/2010/01/now-reading-3/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 21:21:13 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[leisure]]></category>
		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/2010/01/now-reading-3/</guid>
		<description><![CDATA[Monstrous Regiment: A Discworld Novel (Discworld Novels) by Terry Pratchett]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.de/gp/product/0552149411?ie=UTF8&amp;tag=deadia-21&amp;linkCode=as2&amp;camp=1638&amp;creative=19454&amp;creativeASIN=0552149411"><img src="http://www.van-porten.de/wp-content/uploads/2010/01/51MRPWYNVNL._SL160_1.jpg" alt="" title="Monstrous Regiment: A Discworld Novel (Discworld Novels)" width="95" height="160" class="aligncenter size-full wp-image-723" /></a></p>
<p><a href="http://www.amazon.de/gp/product/0552149411?ie=UTF8&#038;tag=deadia-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=0552149411">Monstrous Regiment: A Discworld Novel (Discworld Novels)</a><img src="http://www.assoc-amazon.de/e/ir?t=deadia-21&#038;l=as2&#038;o=3&#038;a=0552149411" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> by <a href="http://www.amazon.de/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.de%2Fs%3Fie%3DUTF8%26redirect%3Dtrue%26search-type%3Dss%26index%3Dbooks-de-intl-us%26field-author%3DTerry%2520Pratchett&#038;site-redirect=de&#038;tag=deadia-21&#038;linkCode=ur2&#038;camp=1638&#038;creative=19454">Terry Pratchett</a><img src="https://www.assoc-amazon.de/e/ir?t=deadia-21&#038;l=ur2&#038;o=3" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2010/01/now-reading-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now reading &#8230;</title>
		<link>http://www.van-porten.de/2009/12/now-reading-2/</link>
		<comments>http://www.van-porten.de/2009/12/now-reading-2/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 22:42:25 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/2009/12/now-reading-2/</guid>
		<description><![CDATA[My current technical book: Speech and Language Processing by Dan Jurafsky and James H. Martin.]]></description>
			<content:encoded><![CDATA[<p>My current technical book:<br />
<a href="http://www.amazon.de/gp/product/0135041961?ie=UTF8&amp;tag=deadia-21&amp;linkCode=as2&amp;camp=1638&amp;creative=19454&amp;creativeASIN=0135041961"><img src="http://www.van-porten.de/wp-content/uploads/2009/12/51KDxLZyd5L._SL160_.jpg" alt="" title="Speech and Language Processing" width="124" height="160" class="aligncenter size-full wp-image-691" /></a></p>
<p><a href="http://www.amazon.de/gp/product/0135041961?ie=UTF8&#038;tag=deadia-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=0135041961">Speech and Language Processing</a><img src="http://www.assoc-amazon.de/e/ir?t=deadia-21&#038;l=as2&#038;o=3&#038;a=0135041961" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> by Dan Jurafsky and James H. Martin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2009/12/now-reading-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
