<?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>retro.log &#187; Island</title>
	<atom:link href="http://www.retro-coding.de/category/island/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.retro-coding.de</link>
	<description>[We're Gonna Need A Bigger Code]</description>
	<lastBuildDate>Fri, 03 Feb 2012 21:30:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>How to re-build a gosmore .pak file on Amazon EC2</title>
		<link>http://www.retro-coding.de/2012/02/03/how-to-re-build-a-gosmore-pak-file-on-amazon-ec2/</link>
		<comments>http://www.retro-coding.de/2012/02/03/how-to-re-build-a-gosmore-pak-file-on-amazon-ec2/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 21:18:17 +0000</pubDate>
		<dc:creator>lgw</dc:creator>
				<category><![CDATA[!bloated]]></category>
		<category><![CDATA[Island]]></category>
		<category><![CDATA[OSM]]></category>
		<category><![CDATA[Southwest USA]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=5348</guid>
		<description><![CDATA[(in English because this will mostly be interesting to an international readership 8)) A while ago, I decided that I needed an up-to-date gosmore routing description file for my own little routing server. As it takes some time to build, and needs a lot of memory and processing power, I decided to just let &#8220;the [...]]]></description>
			<content:encoded><![CDATA[<p><em>(in English because this will mostly be interesting to an international readership 8))</em></p>
<p>A while ago, I decided that I needed an up-to-date <a href="http://wiki.openstreetmap.org/wiki/Gosmore">gosmore</a> routing description file for my own little routing server. As it takes some time to build, and needs a lot of memory and processing power, I decided to just let &#8220;the cloud&#8221; do the dirty work for me.</p>
<p>As I&#8217;m confronted with Amazons cloud services daily at work, I chose Amazons EC2/S3 services. They can be quite cost-efficient if you know what to do, but have a tendency to get uber-expensive if you don&#8217;t. From my experiences, it should be possible to rebuild a worldwide .pak file for well under $5.</p>
<p>I&#8217;m not going to explain all details on how EC2 and S3 work and will use several terms that might be &#8220;puzzling&#8221; if you never used Amazons services before &#8211; take care to dig them up in the Amazon FAQs or documentation. I&#8217;ve taken care to put the real crazy stuff in <em>italic</em>.</p>
<p>Continue below for the named crazy stuff <img src='http://www.retro-coding.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><span id="more-5348"></span></p>
<p><strong>Choosing the right machine type</strong><br />
This was the most difficult thing to do. First of all, you need 64bit and high memory support, so the so-called &#8220;small&#8221; computing instances are ruled out &#8211; they are 32-bit only. Going for a micro-instance (which strangely enough is 64 bit as opposed to the bigger &#8220;small&#8221; ones!) is not a good idea, as they only run on <em>EBS block devices</em> (expensive and slow), and only sport 600MB memory. You can create a swapfile, but recreating the .pak file takes several days on these machines and I/O is more expensive than what you save on money (micro instances are close to being for free).</p>
<p>As gosmore only makes use of one single core, it does not make sense to use a very big machine to save on computing time; in a nutshell, <strong>what I discovered to be perfect is a &#8220;<em>m1.large</em>&#8221; instance</strong>, which sports 7.5GB of main memory and four ECU units in two cores. If you hunt down a <em>spot instance</em> in a cheap <em>region</em>, you might get it for something as low as $0.14 per hour.</p>
<p><strong>AMI/operating system</strong><br />
I needed the machines <em>volatile instance storage</em> mounted properly, and for some reason the official Amazon unix AMIs did not do that correctly, and they all NEED a <em>EBS block storage</em> as a boot volume, which would have been a waste in my case. I looked around for something that is purely S3-backed, and found this one: <strong>ami-a33b06d7</strong> to be quite usable; it originates from Amazon, so I considered it to be quite safe.</p>
<p><strong>Storage</strong><br />
As I expected from the beginning that I&#8217;d have to try out different setups, images and machines, I decided to create a 50GB block storage (EBS volume, which is non-volatile and can be mounted into and unmounted from a virtual computing instance) to store the original Open Streetmap planet file, the gosmore compiled source code and so on. I&#8217;ve deleted it by now, and pushed all necessary files into S3. If you follow this guide, it should not be necessary to use any block storage at all, which saves money. Downloading a 10GB OSM planet file takes some time though, so if you want to be safer, store it on a mounted EBS volume that you can re-use until you are &#8220;done&#8221; with everything. S3 is an option, but copying from S3 takes a lot longer than mounting an EBS volume.</p>
<p><strong>Gosmore</strong><br />
Use the latest version from the code repository, as opposed to the latest release. Nic Roets of Gosmore applied some minor fixes to the code/settings during my try+error phase that have been important to make building and running gosmore for rebuilding big .pak files work correctly.</p>
<p><strong>Setting up the EC2 instance</strong><br />
First of all, create a EC2 instance in your preferred region, possibly a spot instance to save some money; use the AMI named above. After you gained shell access, you need to install the following packages to make gosmore happy:</p>
<p><em># prepare the instance (missing packages)<br />
sudo yum install screen libxml2-devel gtk2-devel gcc-c++ make subversion libcurl-devel gpsd-devel<br />
</em></p>
<p>Next, you need to grab gosmore from SVN. Install it on the <em>ephemermal block device</em> &#8211; it has enough space to store all temp files! </p>
<p><em><br />
cd /media/ephemeral0/<br />
svn checkout http://svn.openstreetmap.org/applications/rendering/gosmore/<br />
cd gosmore<br />
./configure</p>
<p>#build gosmore for ONLY routing and headless usage:<br />
make CFLAGS=&#8217;-O2 -DRES_DIR=\&#8221;/usr/share/gosmore/\&#8221; -DHEADLESS -DONLY_ROUTING&#8217;<br />
</em></p>
<p>Download the .planet file you want to build into a .pak file, for example from any <a href="http://wiki.openstreetmap.org/wiki/Planet.osm">OSM mirror</a>. I used a file covering whole Europe, but the world should also work out fine.</p>
<p><strong>The following commands expect the file europe.osm.bz2 to exist in the same directory as gosmore.</strong></p>
<p><em>#rebuild gosmore .pak file<br />
screen<br />
bzcat europe.osm.bz2 | ./gosmore rebuild<br />
</em></p>
<p>After 4-5 hours, the instance should be done with building the files; for Europe, 7.5GB of memory would be sufficient without creating a swapfile. I ended up only using a Micro instance, which took roughly 5 days due to the fact that they have dramatic CPU and bandwith limitations, and it needed to swap heavily.</p>
<p>In the end, I used this tool to push the final file (and my gosmore build directory for later reference) into S3:</p>
<p>http://www.beaconhill.com/solutions/opensource/s3cp.html</p>
<p><strong>Using EC2 as a routing backend</strong><br />
Of course you can also run gosmore on EC2; considering the costs, it might be cheaper to go for any other web hosting service, but if you would need dramatic load balancing and high-load scaling, Amazon has what you need.</p>
<p>Straightforward setup guide for an <em>m1.large instance</em>:</p>
<p># install additional packages<br />
sudo yum install screen libxml2-devel gtk2-devel gcc-c++ make subversion libcurl-devel gpsd-devel</p>
<p># install gosmore<br />
cd /media/ephemeral0/<br />
svn checkout http://svn.openstreetmap.org/applications/rendering/gosmore/<br />
cd gosmore<br />
./configure</p>
<p>#build gosmore for ONLY routing and headless usage:<br />
make CFLAGS=&#8217;-O2 -DRES_DIR=\&#8221;/usr/share/gosmore/\&#8221; -DHEADLESS -DONLY_ROUTING&#8217;</p>
<p>Now place a .pak file in the gosmore directory, and it should be usable fine. Note that this setup will also work to build a new file.</p>
<p><strong>Some additional hints</strong></p>
<p>Easy setup for your fstab to mount the volume:<br />
<em>sudo bash<br />
echo &#8220;&#8221; >> /etc/fstab<br />
echo &#8220;/dev/sdf            /mnt/data   ext3    defaults        0   0&#8243; >> /etc/fstab<br />
mount /mnt/data<br />
exit<br />
</em></p>
<p>In case you need a block storage, create and mount it, and prepare it like this:<br />
<em>sudo mkfs.ext3 /dev/sdf<br />
</em></p>
<p>In case you want to gamble around with micro instances, you need a swapfile. It can be created as follows (8GB example) <em>(/mnt/data would be the volume to store it)</em>:<br />
<em>sudo dd if=/dev/zero of=/mnt/data/swapfile bs=1M count=8048<br />
sudo chmod 600 /mnt/data/swapfile<br />
sudo mkswap /mnt/data/swapfile<br />
sudo swapon /mnt/data/swapfile<br />
</em></p>
<p>I hope this works out for you, questions can be asked in the comments anytime.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2012/02/03/how-to-re-build-a-gosmore-pak-file-on-amazon-ec2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>7m hohe wellen</title>
		<link>http://www.retro-coding.de/2010/09/08/7m-hohe-wellen/</link>
		<comments>http://www.retro-coding.de/2010/09/08/7m-hohe-wellen/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 10:14:35 +0000</pubDate>
		<dc:creator>rennbert</dc:creator>
				<category><![CDATA[Island]]></category>
		<category><![CDATA[Kaboom!]]></category>
		<category><![CDATA[Untergang der Zivilisation]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=4430</guid>
		<description><![CDATA[und schon halten die die Tische nicht mehr&#8230; ich dachte immer, die dübbeln die fest. tzz tzz. zum glück habe ich keine flugangst und kann mir die beschwerliche reise mit der königin mary der zwoten schenken.]]></description>
			<content:encoded><![CDATA[<p>und schon halten die die Tische nicht mehr&#8230;</p>
<p>ich dachte immer, die dübbeln die fest. tzz tzz.</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/x9q676TkKxo?fs=1&amp;hl=de_DE"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/x9q676TkKxo?fs=1&amp;hl=de_DE" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>zum glück habe ich keine flugangst und kann mir die beschwerliche reise mit der königin mary der zwoten schenken. <img src='http://www.retro-coding.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2010/09/08/7m-hohe-wellen/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>4 8 15 16 23 42 = 02022010</title>
		<link>http://www.retro-coding.de/2010/01/14/4-8-15-16-23-42/</link>
		<comments>http://www.retro-coding.de/2010/01/14/4-8-15-16-23-42/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 22:38:53 +0000</pubDate>
		<dc:creator>vegaz</dc:creator>
				<category><![CDATA[2010]]></category>
		<category><![CDATA[42]]></category>
		<category><![CDATA[Island]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=3964</guid>
		<description><![CDATA[Decoding the ‘Lost’ Supper]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="320" height="168" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.lost4815162342.com/flash/countdown.swf" /><embed type="application/x-shockwave-flash" width="320" height="168" src="http://www.lost4815162342.com/flash/countdown.swf" wmode="transparent"></embed></object></p>
<p><img class="alignnone size-full wp-image-3973" title="suppercrop" src="http://www.retro-coding.de/wp-content/uploads/suppercrop.jpg" alt="suppercrop" width="463" height="245" /><br />
<strong><a href="http://artsbeat.blogs.nytimes.com/2010/01/05/decoding-the-lost-supper/">Decoding the ‘Lost’ Supper</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2010/01/14/4-8-15-16-23-42/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Monkey Island SE</title>
		<link>http://www.retro-coding.de/2009/07/29/monkey-island-se/</link>
		<comments>http://www.retro-coding.de/2009/07/29/monkey-island-se/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 09:58:58 +0000</pubDate>
		<dc:creator>rennbert</dc:creator>
				<category><![CDATA[Island]]></category>
		<category><![CDATA[Kaboom!]]></category>
		<category><![CDATA[Kültür]]></category>
		<category><![CDATA[Pirates]]></category>
		<category><![CDATA[retro]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/2009/07/29/monkey-island-se/</guid>
		<description><![CDATA[Da habe ich es doch glatt durchgespielt. Schade. Einige Rätsel habe ich immernoch nicht auf Anhieb durchstanden und musste Hilfe heranziehen. Wie soll man auch wissen, dass man die Planke betreten muss, die lose ist, obgleich es nicht beim mouseover steht. Woher soll man wissen, das es auf Monkey Island(tm) ein Fort gibt, wenn man [...]]]></description>
			<content:encoded><![CDATA[<p>Da habe ich es doch glatt durchgespielt. Schade. <img src='http://www.retro-coding.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Einige Rätsel habe ich immernoch nicht auf Anhieb durchstanden und <a href="http://www.majusarts.de/film/monkey/GER/monkey_ger.html">musste Hilfe heranziehen</a>. </p>
<p> <img src='http://www.retro-coding.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Wie soll man auch wissen, dass man die Planke betreten muss, die lose ist, obgleich es nicht beim mouseover steht. Woher soll man wissen, das es auf Monkey Island(tm) ein Fort gibt, wenn man es doch nicht von oben sieht. Wie soll man wissen, dass man dem Affen mindestens 4Bananen geben muss. <img src='http://www.retro-coding.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p>Trotzdem herrlich. </p>
<p>Und das Fazit kommt von Guybrush Threepwood himself:</p>
<p><a href="http://www.retro-coding.de/wp-content/uploads/p_480_320_059D2BA7-57D8-442D-9352-0E02B445BAEE.jpg" rel="prettyPhoto[3387]" rel="lightbox"><img src="http://www.retro-coding.de/wp-content/uploads/p_480_320_059D2BA7-57D8-442D-9352-0E02B445BAEE.jpg" alt="" width="300" height="200" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2009/07/29/monkey-island-se/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Friesland, Kinder am Deich</title>
		<link>http://www.retro-coding.de/2009/06/04/3087/</link>
		<comments>http://www.retro-coding.de/2009/06/04/3087/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 11:31:10 +0000</pubDate>
		<dc:creator>rennbert</dc:creator>
				<category><![CDATA[!Bielefeld]]></category>
		<category><![CDATA[Island]]></category>
		<category><![CDATA[Kaboom!]]></category>
		<category><![CDATA[Musique]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=3087</guid>
		<description><![CDATA[Wer kommt mit zu Omas Teich? Wird garantiert großartig. Selbst einen Deich mit Kindern gibbet hier.]]></description>
			<content:encoded><![CDATA[<p>Wer kommt mit zu <a href="http://www.omasteich.de/">Omas Teich</a>? Wird garantiert großartig. Selbst einen Deich mit Kindern gibbet hier.</p>
<p><a href="http://www.omasteich.de/shop_1.php"><img src="http://bm.lake-entertainment.de/img/_shop/ot09_ticket.jpg" alt="OmasTeich" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2009/06/04/3087/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jetzt muss nur noch ein Rucksack her&#8230;</title>
		<link>http://www.retro-coding.de/2009/05/15/jetzt-muss-nur-noch-ein-rucksack-her/</link>
		<comments>http://www.retro-coding.de/2009/05/15/jetzt-muss-nur-noch-ein-rucksack-her/#comments</comments>
		<pubDate>Thu, 14 May 2009 23:00:38 +0000</pubDate>
		<dc:creator>lgw</dc:creator>
				<category><![CDATA[Island]]></category>
		<category><![CDATA[Religion]]></category>
		<category><![CDATA[Space]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=3027</guid>
		<description><![CDATA[Zelt, Isomatte und Schlafsack &#8211; ich find das geht kompakt ab:]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ipernity.com/doc/largegreenwood/4850647"><img src="http://u1.ipernity.com/11/06/47/4850647.65a069d1.500.jpg" width="400" height="266" alt="Resting Stuff" border="0"/></a></p>
<p>Zelt, Isomatte und Schlafsack &#8211; ich find das geht kompakt ab:</p>
<p><a href="http://www.ipernity.com/doc/largegreenwood/4850648"><img src="http://u1.ipernity.com/11/06/48/4850648.20a701c3.500.jpg" width="400" height="266" alt="Resting Stuff" border="0"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2009/05/15/jetzt-muss-nur-noch-ein-rucksack-her/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Lucas Arts Adventure Poster</title>
		<link>http://www.retro-coding.de/2009/02/11/lucas-arts-adventure-poster/</link>
		<comments>http://www.retro-coding.de/2009/02/11/lucas-arts-adventure-poster/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 23:10:58 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[Cute & Cuddly]]></category>
		<category><![CDATA[Geschenke]]></category>
		<category><![CDATA[Island]]></category>
		<category><![CDATA[Pirates]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=2656</guid>
		<description><![CDATA[Ein gewisser Herr Laserschwert hat einen Haufen Verpackungen, Anleitungen etc. von klassischen Lucas Arts Adventures gescannt, aufgearbeitet und in postertauglicher Auflösung bei lucasforums.com reingestellt. Ich bin beeindruckt, begeistert und absolut dankbar für solche Leute. [via nerdcore]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.retro-coding.de/wp-content/uploads/mi2300pl2.jpg" width="300" height="400"/><br />
Ein gewisser Herr Laserschwert hat einen Haufen Verpackungen, Anleitungen etc. von klassischen Lucas Arts Adventures gescannt, aufgearbeitet und in postertauglicher Auflösung bei <a href="http://www.lucasforums.com/showthread.php?s=&#038;threadid=195492">lucasforums.com</a> reingestellt. Ich bin beeindruckt, begeistert und absolut dankbar für solche Leute. [via <a href="http://www.nerdcore.de/wp/2009/02/08/lucasart-game-artworks-als-filmposter/">nerdcore</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2009/02/11/lucas-arts-adventure-poster/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ulmen.tv&#8230;</title>
		<link>http://www.retro-coding.de/2008/12/23/ulmentv/</link>
		<comments>http://www.retro-coding.de/2008/12/23/ulmentv/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 17:23:02 +0000</pubDate>
		<dc:creator>lgw</dc:creator>
				<category><![CDATA[Ähwas]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[haha]]></category>
		<category><![CDATA[Island]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=2415</guid>
		<description><![CDATA[sehr lustig. Wer 9 Minuten Durchhaltevermögen hat, kann mit dem armen, offenbar gemieteten Kamerateam das &#8220;Knut Hansen&#8221; durch Bayern begleitet, mitleiden. Merke: geh nie zum Film oder Fernsehen. Leider nix zu embedden: http://www.myspass.de/de/ulmentv/knut/bonustracks/index.html?id=10062 Zeitungsberichten zufolge soll die arme Dame später sogar geweint haben. Dass sie das nur einmal hat, überrascht mich, wenn man sich das [...]]]></description>
			<content:encoded><![CDATA[<p>sehr lustig. Wer 9 Minuten Durchhaltevermögen hat, kann mit dem armen, offenbar gemieteten Kamerateam das &#8220;Knut Hansen&#8221; durch Bayern begleitet, mitleiden.</p>
<p>Merke: geh nie zum Film oder Fernsehen. Leider nix zu embedden:</p>
<p><a href="http://www.myspass.de/de/ulmentv/knut/bonustracks/index.html?id=10062">http://www.myspass.de/de/ulmentv/knut/bonustracks/index.html?id=10062</a></p>
<p>Zeitungsberichten zufolge soll die arme Dame später sogar <a href="http://www.mittelbayerische.de/_misc/print/article_print.cfm?pk=107291&#038;pid=3076&#038;title=Regensburg">geweint</a> haben. Dass sie das nur einmal hat, überrascht mich, wenn man sich das Bonusmaterial anschaut *hüstl*</p>
<p>Update: aber das Fußvolk hat die besten <a href="http://www.myspass.de/de/ulmentv/knut/presseschau/index.html?id=7741">Witze</a> am Start. &#8220;Das darf i net sogn, das is antisemistisch [sic]&#8220;. </p>
<p>Update 2: interessant. <a href="http://www.myspass.de/de/ulmentv/maurice/hanfmuseum/index.html?id=17942">Hier</a> ist Ulmen in einer ganz anderen Rolle unterwegs (nicht als Hansen, sondern als Kiffer Maurice), aber trotzdem läuft in Minute 2:57 die gute Plöhn (Redakteurin des Teams, oben auch genannt &#8220;Dame&#8221;) ins Bild. Doch alles nur Schauspieler? Zweimal von einem Ulmen veralbern wird sie sich ja nicht lassen. Aber das Team ist definitiv &#8216;wirklich&#8217; genervt, und die Kameraleute sind ja auch keine Schauspieler (weil sie wirklich super Bilder zustande bringen). Mysteriös, mysteriös!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2008/12/23/ulmentv/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>AAAAAAAAAAAAAAAAAAAAAAhhhhhhh!!!!111!!!!!</title>
		<link>http://www.retro-coding.de/2008/12/16/aaaaaaaaaaaaaaaaaaaaaahhhhhhh111/</link>
		<comments>http://www.retro-coding.de/2008/12/16/aaaaaaaaaaaaaaaaaaaaaahhhhhhh111/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 10:58:06 +0000</pubDate>
		<dc:creator>lgw</dc:creator>
				<category><![CDATA[Ähwas]]></category>
		<category><![CDATA[Cute & Cuddly]]></category>
		<category><![CDATA[defectiveByDesign]]></category>
		<category><![CDATA[Diplom]]></category>
		<category><![CDATA[Earth]]></category>
		<category><![CDATA[Faschismus]]></category>
		<category><![CDATA[Freedom is irrelevant!]]></category>
		<category><![CDATA[geht nicht]]></category>
		<category><![CDATA[Island]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=2382</guid>
		<description><![CDATA[Sind unsere Politiker eigentlich völlig unfähig, oder verstellen die sich nur? Nach Meinung von Niedersachsens Innenminister Uwe Schünemann (CDU) sollen Internet-Provider künftig ihre Kunden vertraglich dazu verpflichten, eine Filter-Software zu installieren, die den Zugang zu kinderpornografischen Inhalten blockiert. Er werde die rund 75 Provider in Niedersachsen, die Endkunden versorgen, schriftlich dazu auffordern, die Filterpflicht in [...]]]></description>
			<content:encoded><![CDATA[<p>Sind unsere Politiker eigentlich völlig unfähig, oder verstellen die sich nur?</p>
<p><em>Nach <a href="http://www.heise.de/newsticker/Niedersachsens-Innenminister-fordert-Filterprogramme-gegen-Kinderpornos--/meldung/120467">Meinung</a> von Niedersachsens Innenminister Uwe Schünemann (CDU) sollen Internet-Provider künftig ihre Kunden vertraglich dazu verpflichten, eine Filter-Software zu installieren, die den Zugang zu kinderpornografischen Inhalten blockiert. Er werde die rund 75 Provider in Niedersachsen, die Endkunden versorgen, schriftlich dazu auffordern, die Filterpflicht in neue Verträge aufzunehmen und bestehende entsprechend zu ändern. Die Provider sollen dann erkennen können, ob die Filtersoftware beim Kunden aktiv ist, und diesem andernfalls den Zugang zum Internet verwehren.</em></p>
<p>Das ist ja völlig bescheuert. Das ist wie&#8230; wie&#8230; ich hab keine Ahnung wie das ist. Ich bin sprachlos. Ich geh&#8217; frühstücken. Ich&#8230; oh man.</p>
<p>Nein, ich hab doch weiter gelesen:</p>
<p><em>Mit der Filterpflicht würde aber zumindest die Mehrzahl der deutschen Nutzer an einem Zugriff auf kinderpornografische Internet-Seiten gehindert. </em></p>
<p>Verflucht noch mal, ihr ******** da oben, die Mehrzahl der deutschen Nutzer wird durch <strong>Verstand</strong>, <strong>ethische Grundeinstellung</strong>, und letztlich <strong>Geschmack</strong> daran gehindert, kinderpornografische Internetseiten &#8220;anzusurfen&#8221;. Ich geh&#8217; kotzen.</p>
<p>Verbietet doch einfach das Denken. Ach so, ist ja schon.</p>
<p>Wenn irgendwer ein Katzenfoto hat zur Beruhigung&#8230;</p>
<p>PS: das dürfte dem Grundgesetz widersprechen. Aber das interessiert ja keine Sau mehr.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2008/12/16/aaaaaaaaaaaaaaaaaaaaaahhhhhhh111/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>La Gomera &#8211; there and back again</title>
		<link>http://www.retro-coding.de/2008/12/15/la-gomera-there-and-back-again/</link>
		<comments>http://www.retro-coding.de/2008/12/15/la-gomera-there-and-back-again/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 18:48:08 +0000</pubDate>
		<dc:creator>rennbert</dc:creator>
				<category><![CDATA[Earth]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[Island]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=2377</guid>
		<description><![CDATA[&#8230; oder wie der renn bei 23°C sich gar eine Woche prächtig am Pool erholt hatte. La Gomera ist mal wirklich eine entspannende Insel, mit fünf Klimazonen, wovon wir hauptsächlich in der südlichen Sonnen-SanMiguel-Zone waren. Kann Nachahmen empfehlen]]></description>
			<content:encoded><![CDATA[<p>&#8230; oder wie der renn bei 23°C sich gar eine Woche prächtig am Pool erholt hatte.<br />
<a href="http://picasaweb.google.de/lh/photo/8CNVhF3-urmaeapn3wmS7A"><img src="http://lh6.ggpht.com/_OZU_i-ulb6s/SUagTCCjYoI/AAAAAAAAI08/UFIxGKDVubk/s400/DSC_7187.JPG" /></a></p>
<p><a href="http://de.wikipedia.org/wiki/La_Gomera">La Gomera</a> ist mal wirklich eine entspannende Insel, mit fünf Klimazonen, wovon wir hauptsächlich in der südlichen Sonnen-SanMiguel-Zone waren. <img src='http://www.retro-coding.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Kann Nachahmen empfehlen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2008/12/15/la-gomera-there-and-back-again/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

