<?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; !bloated</title>
	<atom:link href="http://www.retro-coding.de/category/bloated/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>Possenspiel</title>
		<link>http://www.retro-coding.de/2011/09/13/possenspiel/</link>
		<comments>http://www.retro-coding.de/2011/09/13/possenspiel/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 23:27:07 +0000</pubDate>
		<dc:creator>lgw</dc:creator>
				<category><![CDATA[!bloated]]></category>
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=5195</guid>
		<description><![CDATA[Und J. Wolfskin kriegt auch sein Fett weg]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="345"><param name="movie" value="http://www.youtube.com/v/rYFwIjsT-2A?version=3&amp;hl=de_DE"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/rYFwIjsT-2A?version=3&amp;hl=de_DE" type="application/x-shockwave-flash" width="560" height="345" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Und J. Wolfskin kriegt auch sein Fett weg <img src='http://www.retro-coding.de/wp-includes/images/smilies/icon_cool.gif' alt='8-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2011/09/13/possenspiel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nachdem die Sache mit der Map länger dauert&#8230;</title>
		<link>http://www.retro-coding.de/2011/03/27/nachdem-die-sache-mit-der-map-langer-dauert/</link>
		<comments>http://www.retro-coding.de/2011/03/27/nachdem-die-sache-mit-der-map-langer-dauert/#comments</comments>
		<pubDate>Sun, 27 Mar 2011 12:51:57 +0000</pubDate>
		<dc:creator>lgw</dc:creator>
				<category><![CDATA[!Bielefeld]]></category>
		<category><![CDATA[!bloated]]></category>
		<category><![CDATA[Weltliches]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=5013</guid>
		<description><![CDATA[(ich muss erst Source kaufen und blaaaa&#8230;) hab&#8217; ich heute mal mit unserer neuen Küche angefangen. Und siehe da, der Ikea Küchenplaner ist ein wirklich schönes Stück Software, braucht für 3D natürlich noch ein PlugIn, aber sonst&#8230; stabil, hat keinen Mist gemacht, und ist eigentlich einfach zu bedienen. Ich hatte irgendwie mit schlimmerem gerechnet. Ob [...]]]></description>
			<content:encoded><![CDATA[<p>(ich muss erst Source kaufen und blaaaa&#8230;) hab&#8217; ich heute mal mit unserer neuen Küche angefangen.</p>
<p>Und siehe da, der Ikea Küchenplaner ist ein wirklich schönes Stück Software, braucht für 3D natürlich noch ein PlugIn, aber sonst&#8230; stabil, hat keinen Mist gemacht, und ist eigentlich einfach zu bedienen. Ich hatte irgendwie mit schlimmerem gerechnet.</p>
<p>Ob wir die Küche da kaufen sei mal dahin gestellt, aber es hilft ja nun beim visualisieren und bis ich das in Blender gebaut habe&#8230; <img src='http://www.retro-coding.de/wp-includes/images/smilies/icon_cool.gif' alt='8-)' class='wp-smiley' /> </p>
<p><a href="http://www.retro-coding.de/wp-content/uploads/Screen-shot-2011-03-27-at-14.28.53.png" rel="prettyPhoto[5013]" rel="lightbox"><img src="http://www.retro-coding.de/wp-content/uploads/Screen-shot-2011-03-27-at-14.28.53-480x317.png" alt="" title="Screen shot 2011-03-27 at 14.28.53" width="480" height="317" class="alignleft size-medium wp-image-5014" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2011/03/27/nachdem-die-sache-mit-der-map-langer-dauert/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Fraz wurde &#8220;überfallen&#8221;</title>
		<link>http://www.retro-coding.de/2011/03/03/fraz-wurde-uberfallen/</link>
		<comments>http://www.retro-coding.de/2011/03/03/fraz-wurde-uberfallen/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 13:37:38 +0000</pubDate>
		<dc:creator>rennbert</dc:creator>
				<category><![CDATA[!bloated]]></category>
		<category><![CDATA[von Oben]]></category>
		<category><![CDATA[ZENSUR!]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=4947</guid>
		<description><![CDATA[&#8230; von 30 Polizisten in voller Kampfmontur, die nur mal ne Zeitschrift ausleihen wollten. War ja eigentlich auch nix passiert&#8230; Video von der NOZ&#8230;. und dazu die Stellungnahme vom Fraz.]]></description>
			<content:encoded><![CDATA[<p>&#8230; von 30 Polizisten in voller Kampfmontur, die nur mal ne Zeitschrift ausleihen wollten. War ja eigentlich auch nix passiert&#8230;</p>
<p><a href="http://bcove.me/vlw5uauo">Video</a> von der NOZ&#8230;.</p>
<p>und dazu die <a href="https://mensch.coop/index.php?p[0]=showSingle&#038;p[1]=ID&#038;p[2]=921&#038;p[3]=ThreadMessageBC::Blog&#038;p[]=showSingle&#038;p[]=ID&#038;p[]=3237&#038;lang=deu">Stellungnahme</a> vom Fraz.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2011/03/03/fraz-wurde-uberfallen/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Happy Birthaday</title>
		<link>http://www.retro-coding.de/2010/11/29/happy-birthaday/</link>
		<comments>http://www.retro-coding.de/2010/11/29/happy-birthaday/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 09:42:10 +0000</pubDate>
		<dc:creator>rennbert</dc:creator>
				<category><![CDATA[!bloated]]></category>
		<category><![CDATA[Advertisement]]></category>
		<category><![CDATA[Cute & Cuddly]]></category>
		<category><![CDATA[Geschenke]]></category>
		<category><![CDATA[von Oben]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=4760</guid>
		<description><![CDATA[Happy Birthday &#8230;.. Happy Birthday Ket! &#038;&#038; Happy Birthday Lars!]]></description>
			<content:encoded><![CDATA[<p>Happy Birthday &#8230;..<br />
<span id="more-4760"></span><br />
Happy Birthday Ket!<br />
<img src="http://foxhugh.files.wordpress.com/2008/11/chinchillabirthday.jpg" alt="Happy Birthday" /></p>
<p>&#038;&#038;</p>
<p>Happy Birthday Lars!<br />
<img src="http://farm4.static.flickr.com/3441/3371350637_a26db395fe.jpg" alt="Happy Blauforst" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2010/11/29/happy-birthaday/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Eigentlich ist das zu privat&#8230;</title>
		<link>http://www.retro-coding.de/2010/11/04/eigentlich-ist-das-zu-privat/</link>
		<comments>http://www.retro-coding.de/2010/11/04/eigentlich-ist-das-zu-privat/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 15:38:41 +0000</pubDate>
		<dc:creator>lgw</dc:creator>
				<category><![CDATA[!bloated]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=4554</guid>
		<description><![CDATA[&#8230; is mir aber auch egal. W000000t &#8211; ne grüne Zahl hab&#8217; ich da schon ziemlich lange nicht mehr gesehen.]]></description>
			<content:encoded><![CDATA[<p>&#8230; is mir aber auch egal.</p>
<p>W000000t &#8211; ne grüne Zahl hab&#8217; ich da schon ziemlich lange nicht mehr gesehen.</p>
<p><a href="http://www.retro-coding.de/wp-content/uploads/Bildschirmfoto-2010-11-04-um-16.21.37.png" rel="prettyPhoto[4554]" rel="lightbox"><img src="http://www.retro-coding.de/wp-content/uploads/Bildschirmfoto-2010-11-04-um-16.21.37-480x29.png" alt="" title="Bildschirmfoto 2010-11-04 um 16.21.37" width="480" height="29" class="alignleft size-medium wp-image-4555" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2010/11/04/eigentlich-ist-das-zu-privat/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>White is the new brown is the new black</title>
		<link>http://www.retro-coding.de/2010/09/17/white-is-the-new-brown-is-the-new-black/</link>
		<comments>http://www.retro-coding.de/2010/09/17/white-is-the-new-brown-is-the-new-black/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 08:18:06 +0000</pubDate>
		<dc:creator>rennbert</dc:creator>
				<category><![CDATA[!bloated]]></category>
		<category><![CDATA[Äpfel]]></category>
		<category><![CDATA[defectiveByDesign]]></category>
		<category><![CDATA[Mofa]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/2010/09/17/white-is-the-new-brown-is-the-new-black/</guid>
		<description><![CDATA[Top gepflegt. Da geht man doch mit geschwollener Brust drauf zu.]]></description>
			<content:encoded><![CDATA[<p>Top gepflegt. Da geht man doch mit geschwollener Brust drauf zu. </p>
<p><a href="http://www.retro-coding.de/wp-content/uploads/p_1984_1472_30D441BC-5134-4DF5-AAD5-C9DF9C2290DB.jpeg" rel="prettyPhoto[4477]" rel="lightbox"><img src="http://www.retro-coding.de/wp-content/uploads/p_1984_1472_30D441BC-5134-4DF5-AAD5-C9DF9C2290DB.jpeg" alt="" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2010/09/17/white-is-the-new-brown-is-the-new-black/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Tiltsshift is a wild gift</title>
		<link>http://www.retro-coding.de/2010/03/22/tiltsshift-is-a-wild-gift/</link>
		<comments>http://www.retro-coding.de/2010/03/22/tiltsshift-is-a-wild-gift/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 20:59:52 +0000</pubDate>
		<dc:creator>rennbert</dc:creator>
				<category><![CDATA[!bloated]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/2010/03/22/tiltsshift-is-a-wild-gift/</guid>
		<description><![CDATA[Ich liebe TiltShift gerade, bevor ich mich bald satt geschaut habe. Hier zum selbrigem sattgucken.]]></description>
			<content:encoded><![CDATA[<p>Ich liebe TiltShift gerade, bevor ich mich bald satt geschaut habe. <img src='http://www.retro-coding.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Hier zum selbrigem sattgucken. </p>
<p><a href="http://www.retro-coding.de/wp-content/uploads/l_2048_1536_8BFCE76E-ACF2-4428-A0A3-4CCAA7DA15D7.jpeg" rel="prettyPhoto[4204]" rel="lightbox"><img width="200" src="http://www.retro-coding.de/wp-content/uploads/l_2048_1536_8BFCE76E-ACF2-4428-A0A3-4CCAA7DA15D7.jpeg" alt="" class="alignnone size-full" /></a><a href="http://www.retro-coding.de/wp-content/uploads/l_480_322_22FF6D07-FAF3-43ED-9F0D-171D27719397.jpeg" rel="prettyPhoto[4204]" rel="lightbox"><img width="200" src="http://www.retro-coding.de/wp-content/uploads/l_480_322_22FF6D07-FAF3-43ED-9F0D-171D27719397.jpeg" alt="" class="alignnone size-full" /></a><a href="http://www.retro-coding.de/wp-content/uploads/p_2048_1536_74B81F94-9254-435F-9B46-799010BADAE9.jpeg" rel="prettyPhoto[4204]" rel="lightbox"><img width="200" src="http://www.retro-coding.de/wp-content/uploads/p_2048_1536_74B81F94-9254-435F-9B46-799010BADAE9.jpeg" alt="" class="alignnone size-full" /><a href="http://www.retro-coding.de/wp-content/uploads/p_480_321_9AE33BAD-2C3C-41A8-8382-A752FA6BB867.jpeg" rel="lightbox"><img width="200" src="http://www.retro-coding.de/wp-content/uploads/p_480_321_9AE33BAD-2C3C-41A8-8382-A752FA6BB867.jpeg" alt="" class="alignnone size-full" /></a><a href="http://www.retro-coding.de/wp-content/uploads/l_480_321_291FB192-BEB5-4E45-8515-647A754FFE90.jpeg" rel="prettyPhoto[4204]" rel="lightbox"><img width="200" src="http://www.retro-coding.de/wp-content/uploads/l_480_321_291FB192-BEB5-4E45-8515-647A754FFE90.jpeg" alt="" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2010/03/22/tiltsshift-is-a-wild-gift/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Sooo, Party&#8230;</title>
		<link>http://www.retro-coding.de/2010/02/25/sooo-party/</link>
		<comments>http://www.retro-coding.de/2010/02/25/sooo-party/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 21:45:13 +0000</pubDate>
		<dc:creator>lgw</dc:creator>
				<category><![CDATA[!bloated]]></category>
		<category><![CDATA[Advertisement]]></category>
		<category><![CDATA[Biersport]]></category>
		<category><![CDATA[Diplom]]></category>
		<category><![CDATA[Osnabrooklyn]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=4104</guid>
		<description><![CDATA[Eintritt: 3€ Gästeliste: keine, es ist für ne gute Sache Bier: extremst bezahlbar Musik: lecker Falls irgend jemand beispielsweise aus dem Süden Deutschlands anreisen möchte, und einen Schlafplatz braucht, lässt sich da sicher einiges regeln. Oder aus dem Norden, Osten, Westen&#8230; wer nicht kommt, ist definitiv kein Fonzie! (ich hab&#8217; den mal &#8220;gestickt&#8221; damits keiner [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dark-reality.de/stuff/NerdAttack.jpg" alt="" width="460" height="650"/></p>
<p>Eintritt: 3€<br />
Gästeliste: keine, es ist für ne gute Sache <img src='http://www.retro-coding.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Bier: extremst bezahlbar<br />
Musik: lecker</p>
<p>Falls irgend jemand beispielsweise aus dem Süden Deutschlands anreisen möchte, und einen Schlafplatz braucht, lässt sich da sicher einiges regeln. Oder aus dem Norden, Osten, Westen&#8230; wer nicht kommt, ist definitiv <strong>kein</strong> Fonzie!</p>
<p>(ich hab&#8217; den mal &#8220;gestickt&#8221; damits keiner aus versehen vergisst, gell <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/02/25/sooo-party/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Look upward, and share the wonders I&#8217;ve seen</title>
		<link>http://www.retro-coding.de/2010/01/21/look-upward-and-share-the-wonders-ive-seen/</link>
		<comments>http://www.retro-coding.de/2010/01/21/look-upward-and-share-the-wonders-ive-seen/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 01:29:18 +0000</pubDate>
		<dc:creator>lgw</dc:creator>
				<category><![CDATA[!bloated]]></category>
		<category><![CDATA[autschn]]></category>
		<category><![CDATA[Earth]]></category>
		<category><![CDATA[Religion]]></category>
		<category><![CDATA[Space]]></category>

		<guid isPermaLink="false">http://www.retro-coding.de/?p=3989</guid>
		<description><![CDATA[Die complete series (ohne Peacekeeper Wars) zur Zeit bei amazon.com für ausgesprochen günstige $59,99 zu haben. So viel bezahlt man sonst für ne einzelne Staffel Star Trek&#8230; Update: Tja, so ist das, Servicewüste Deutschland&#8230; amazon.com hat das Ding tatsächlich (vermutlich) so um den 28.1. herum geliefert, also binnen etwa einer Woche! Mir soll&#8217;s recht sein. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.retro-coding.de/wp-content/uploads/Bild-63.png" alt="Bild 63" title="Bild 63" width="418" height="118" class="alignleft size-full wp-image-3990" /></p>
<p>Die complete series (ohne Peacekeeper Wars) zur Zeit bei amazon.com für ausgesprochen günstige $59,99 zu haben. So viel bezahlt man sonst für ne einzelne Staffel Star Trek&#8230; </p>
<p><strong>Update:</strong> Tja, so ist das, Servicewüste Deutschland&#8230; amazon.com hat das Ding tatsächlich (vermutlich) so um den 28.1. herum geliefert, also binnen etwa einer Woche! Mir soll&#8217;s recht sein. Die erste DVD (eigentlich hätte es nur eine Folge sein sollen, aber nun, man kann halt nicht immer wie man sollte) habe ich mal überflogen.</p>
<p>Quintessenz: ganz hervorragende Bildqualität, ausgesprochen gut. Zum Ton kann ich leider nicht viel sagen, weil just vor ein paar Tagen mein DTS-Receiver (natürlich) seinen Geist aufgegeben hat, daher im Moment nur Stereo über den Fernseher. Aber ich glaub&#8217; da geht was. Ausstattung ist super, es gibt so ca. 22 Folgen mit Audio-Kommentar, eine zusätzliche DVDs mit Extras (keine Ahnung was da drauf ist), und sämtliche Folgen verfügen über DD5.1 und Stereo (beides natürlich englisch). Staffel 1-3 sind 4:3 (so wurden sie auch gedreht), Staffel 4 dann ebenfalls korrekt in 16:9.</p>
<p>Also falls das Angebot bei Amazon noch besteht, kann ich jedem, der Spaß dran hatte, nur raten die Serie für die ca. 40€ eben einzutüten, so billig wird&#8217;s nimmer. Wenn ich überlege was das BSG complete gekostet hat <img src='http://www.retro-coding.de/wp-includes/images/smilies/icon_cool.gif' alt='8-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.retro-coding.de/2010/01/21/look-upward-and-share-the-wonders-ive-seen/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

