<?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 &#187; Uncategorized</title>
	<atom:link href="http://www.van-porten.de/topics/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.van-porten.de</link>
	<description>A Developer's Weblog</description>
	<lastBuildDate>Sun, 05 Sep 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>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>3</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-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>Des Christkinds liebste Gadgets</title>
		<link>http://www.van-porten.de/2009/12/des-christkinds-liebste-gadgets/</link>
		<comments>http://www.van-porten.de/2009/12/des-christkinds-liebste-gadgets/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 22:46:34 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gifts]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/2009/12/des-christkinds-liebste-gadgets/</guid>
		<description><![CDATA[Da ja bald Weihnachten ist stelle ich an dieser Stelle einfach mal eine Liste der Must-Have-Gadgets für das diesjährige Weihnachtsgeschäft zusammen. Wer also noch passende Geschenke für den technikverliebten Geek sucht, wird hier wohl schon irgendwo fündig werden. Thermaltake DH 202 Thermaltake’s schickes wie nützliches HTPC chassis ist wohl so ziemlich das coolste, was ich [...]]]></description>
			<content:encoded><![CDATA[<p>Da ja bald Weihnachten ist stelle ich an dieser Stelle einfach mal eine Liste der Must-Have-Gadgets für das diesjährige Weihnachtsgeschäft zusammen.    <br />Wer also noch passende Geschenke für den technikverliebten Geek sucht, wird hier wohl schon irgendwo fündig werden.</p>
<p><span id="more-675"></span></p>
<p><strong>Thermaltake DH 202</strong></p>
<p><strong><a href="http://www.van-porten.de/wp-content/uploads/2009/12/200912010251370555.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="200912010251370555" border="0" alt="200912010251370555" align="right" src="http://www.van-porten.de/wp-content/uploads/2009/12/200912010251370555_thumb.jpg" width="240" height="240" /></a> </strong></p>
<p>Thermaltake’s schickes wie nützliches HTPC chassis ist wohl so ziemlich das coolste, was ich bis dato gesehen habe.   <br />Auch die <a href="http://www.thermaltake.com/product_info.aspx?PARENT_CID=C_00001364&amp;id=C_00001367&amp;name=DH202&amp;ovid=" target="_blank">technischen Daten</a> wissen durchaus zu überzeugen. Natürlich nur bei der Version mit 7” Display. Alles andere ist für Mädchen.</p>
<p>THG hat auch einen <a href="http://www.tomshardware.com/de/HTPC-Gehause-Touch-Display,testberichte-240456-5.html" target="_blank">Test</a> zu eben diesem Gehäuse online. Für schlappe €449,- <a href="http://www.amazon.de/gp/product/B002BWWR4W?ie=UTF8&amp;tag=deadia-21&amp;linkCode=as2&amp;camp=1638&amp;creative=19454&amp;creativeASIN=B002BWWR4W" target="_blank">gibt’s das Gerät auch bei Amazon</a>.</p>
<p>&#160;</p>
<p><strong>Data Robotics Drobo</strong></p>
<p><a href="http://www.van-porten.de/wp-content/uploads/2009/12/drobosangle164x1511.gif"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="drobo-s-angle-164x151[1]" border="0" alt="drobo-s-angle-164x151[1]" align="left" src="http://www.van-porten.de/wp-content/uploads/2009/12/drobosangle164x1511_thumb.gif" width="164" height="151" /></a> Für den unermüdlichen Daten-Messy besonders geeignet ist die <a href="http://www.drobo.com/products/drobo-s.php" target="_blank">Drobo S</a> mit zugehörigem <a href="http://www.drobo.com/products/droboshare.php" target="_blank">DroboShare</a>.</p>
<p>Erstere beherbergt bis zu 5 SATA Festplatten und sorgt dank <a href="http://www.drobo.com/resources/beyondraid.php" target="_blank">BeyondRAID™ technologie</a> für Datensicherheit. Anschluss findet diese Schmuckstück wahlweise via eSATA, Firewire 800 oder USB 2.0.<a href="http://www.van-porten.de/wp-content/uploads/2009/12/Bild01030082A35101_1501.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="Bild0-1030082A35-101_150[1]" border="0" alt="Bild0-1030082A35-101_150[1]" align="right" src="http://www.van-porten.de/wp-content/uploads/2009/12/Bild01030082A35101_1501_thumb.jpg" width="150" height="150" /></a> </p>
<p>Ans hauseigene Netzt gebracht werden kann die Drobo durch die kleine Zusatzbox mit Namen “DroboShare”.   <br />Diese erlaubt den Anschluss von bis zu zwei Drobos (wer’s braucht) und lässt sich bequem mit <a href="http://www.drobo.com/droboapps/index.php" target="_blank">DroboApps</a> erweitern. Cool.&#160; </p>
<p>Für ganz hartgesottene gibt es noch die großen Brüder der Drobo S: <a href="http://www.drobo.com/products/drobopro/index.php" target="_blank">DroboPro</a> und <a href="http://www.drobo.com/products/droboelite.php" target="_blank">DroboElite</a> mit Platz für jeweils bis zu acht Festplatten.</p>
<p>Alle Drobos kann man hier in Deutschland zum Beispiel bei Cyberport erwerben. <a href="http://www.cyberport.de/pc-hardware/festplatten-nas/drobo/2A35-149/drobo-s-storage-robot-esata-2xfw800-usb2-0-plus-5x-2tb-barracuda-5900-12.html">Drobo S + 5x 2TB Barracuda 5900.12</a> + DroboShare kommen zusammen auf geschmeidige €1600,-. Also ehr was für den großen Geldbeutel.</p>
</p>
</p>
</p>
<p>&#160;</p>
<p><strong>Silver PAC Evolution 5500</strong></p>
<p>Nachdem wir also jetzt mit ausreichend Platz für unsere Daten als auch einem entsprechend edlem HTPC Gehäuse (das wir hoffentlich auch bestückt haben) ausgestattet sind, braucht es noch die passende Bedienungseinrichtung.   <br />Was läger näher, als dir Silver PAC Evolution 5500. Ihres Zeichens Multifunktionsfernbedienung. Aber was für eine.</p>
<p><a href="http://www.van-porten.de/wp-content/uploads/2009/12/evolution11.jpg"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="evolution1[1]" border="0" alt="evolution1[1]" src="http://www.van-porten.de/wp-content/uploads/2009/12/evolution11_thumb.jpg" width="240" height="150" /></a>Wie <a href="http://www.gizmodo.de/2009/12/15/touch-universalfernbedienung-steuert-auch-apps.html#more-40320" target="_blank">gizmodo.de berichtet</a> wird das gute Stück wohl von einem ARM9 angetrieben und läuft mit Windows Embedded CE. Wie gut oder schlecht das jetzt funktionieren wird sei mal dahin gestellt. Cool aussehen tut sie auf jeden Fall. </p>
<p>&#160;</p>
<p><strong>Dell Inspirion Zino HD</strong></p>
<p><a href="http://www.van-porten.de/wp-content/uploads/2009/12/dell_inspiron_zino_hd_031.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="dell_inspiron_zino_hd_03[1]" border="0" alt="dell_inspiron_zino_hd_03[1]" align="right" src="http://www.van-porten.de/wp-content/uploads/2009/12/dell_inspiron_zino_hd_031_thumb.jpg" width="240" height="200" /></a>Wem das jetzt alles zuviel gebastel ist – vorallem das mit dem eigenen HTPC – der greift vielleicht lieber direkt zu fertigen Lösungen. Da wäre dann zum Beispiel der <a href="http://www1.euro.dell.com/content/products/productdetails.aspx/inspiron-zino-hd?c=de&amp;l=de&amp;s=dhs&amp;cs=dedhs1&amp;~ck=mn" target="_blank">Dell Inspirion Zino HD</a>.</p>
<p>Ausgestattet mit allem was das Multimediaherz begehrt gibt’s den kleinen schon ab €300,- im Dell Online Shop. Wenn das mal nicht mal ein adäquater Ersatz für den angestaubten DVD Player oder gar BlueRay Player ist? (Ja, ein BlueRay Laufwerk gibt’s für €150,- extra).</p>
<p>Und einfacher als selber einen HTPC bauen ist’s auch noch.</p>
<p>&#160;</p>
<p><strong>Motorola Milestone</strong></p>
<p>Ja, was wäre so eine Liste aber ohne ein Handy, mit dem man all’ seinen Freunden dann auch von den tollen Geschenken berichten kann?    <br /><a href="http://ecx.images-amazon.com/images/I/41ATWV22lCL._SL160_.jpg"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="41ATWV22lCL._SL160_[1]" border="0" alt="41ATWV22lCL._SL160_[1]" src="http://www.van-porten.de/wp-content/uploads/2009/12/41ATWV22lCL._SL160_1.jpg" width="160" height="160" /></a>Wie wäre es da mit Motorola’s Milestone? Das gibt es <a href="http://www.amazon.de/gp/product/B002VWK69A?ie=UTF8&amp;tag=deadia-21&amp;linkCode=as2&amp;camp=1638&amp;creative=19454&amp;creativeASIN=B002VWK69A">käuflich zu erwerben bei Amazon.de</a> für schlappe €460,-. Schön mit <a href="http://www.android.com/#utm_campaign=at&amp;utm_source=hussmi&amp;utm_medium=ha&amp;utm_term=android">Google’s Android 2.0</a> und so. Da kann man eigentlich nur noch zugreifen.    </p>
<p>[via <a href="http://www.tomshardware.com/de/HTPC-Gehause-Touch-Display,testberichte-240456-5.html" target="_blank">THG</a>, <a href="http://www.gizmodo.de/2009/12/15/touch-universalfernbedienung-steuert-auch-apps.html#more-40320" target="_blank">Gizmodo</a>, <a href="http://www.gizmodo.de/2009/11/16/dell-inspiron-zino-hd-coole-mini-pcs.html" target="_blank">Gizmodo</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2009/12/des-christkinds-liebste-gadgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stollenbacken: Das erste Mal</title>
		<link>http://www.van-porten.de/2009/11/stollenbacken-das-erste-mal/</link>
		<comments>http://www.van-porten.de/2009/11/stollenbacken-das-erste-mal/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 15:18:34 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/2009/11/stollenbacken-das-erste-mal/</guid>
		<description><![CDATA[Hier die Ergebnisse unseres ersten Males, sozusagen. Für den ersten jemals selbst gebackenen Stollen ist das Ding echt lecker. Leider ein bisschen groß geworden. Und die Verteilung der Fülling ist – naja – nicht ganz optimal. Aber sonst: super]]></description>
			<content:encoded><![CDATA[<p>Hier die Ergebnisse unseres ersten Males, sozusagen. Für den ersten jemals selbst gebackenen Stollen ist das Ding echt lecker. Leider ein bisschen groß geworden. Und die Verteilung der Fülling ist – naja – nicht ganz optimal.</p>
<p><a href="http://www.van-porten.de/wp-content/uploads/2009/11/CIMG0750.jpg"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="CIMG0750" border="0" alt="CIMG0750" src="http://www.van-porten.de/wp-content/uploads/2009/11/CIMG0750_thumb.jpg" width="260" height="200" /></a> </p>
<p>Aber sonst: super <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/2009/11/stollenbacken-das-erste-mal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Popsy Team: V.I.P. 2 &#8211; My all-time favourite Demo</title>
		<link>http://www.van-porten.de/2009/11/popsy-team-v-i-p-2-my-alltime-favourite-demo/</link>
		<comments>http://www.van-porten.de/2009/11/popsy-team-v-i-p-2-my-alltime-favourite-demo/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 13:15:56 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.van-porten.de/2009/11/popsy-team-v-i-p-2-my-alltime-favourite-demo/</guid>
		<description><![CDATA[Watch.]]></description>
			<content:encoded><![CDATA[<p><embed src="http://www.demoscene.tv/mediaplayer.swf?id=2989_13116_14" width="512" height="404" allowfullscreen="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></p>
<p>Watch.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.van-porten.de/2009/11/popsy-team-v-i-p-2-my-alltime-favourite-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
