<?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>spielwiese.</title>
	<atom:link href="http://spielwiese.fontein.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://spielwiese.fontein.de</link>
	<description>my playground. without sand though.</description>
	<lastBuildDate>Mon, 01 Mar 2010 00:50:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>encrypting partitions with luks.</title>
		<link>http://spielwiese.fontein.de/2010/02/24/encrypting-partitions-with-luks/</link>
		<comments>http://spielwiese.fontein.de/2010/02/24/encrypting-partitions-with-luks/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 01:05:59 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[external hard disk]]></category>
		<category><![CDATA[hard disk encryption]]></category>
		<category><![CDATA[luks]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2093</guid>
		<description><![CDATA[since i&#8217;m always forgetting what to do to encrypt a harddisk, and have to rely on other sites (which might go offline once), i decided to sum everything up in a post. parts can already be found here in this blog.
note that the disk device name can differ from computer to computer, so i used [...]]]></description>
			<content:encoded><![CDATA[<p>since i&#8217;m always forgetting what to do to encrypt a harddisk, and have to rely on other sites (which might go offline once), i decided to sum everything up in a post. parts can already be found <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2009/08/28/backups-again/">here</a> in this blog.<br />
note that the disk device name can differ from computer to computer, so i used <code>/dev/sdx</code> in this description which you have to change to the right name.</p>
<h3>creation.</h3>
<p>first, connect the disk and unmount it. then, delete all existing partitions and create a linux primary partition (or do whatever else you want):</p>
<blockquote><p><code>$ sudo fdisk /dev/sdx</code></p></blockquote>
<p>then it is recommended to clear the partition with random data:</p>
<blockquote><p><code>$ sudo dd if=/dev/urandom of=/dev/sdx1</code></p></blockquote>
<p>note that this step takes a lot of time.<br />
then, make <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/LUKS">luks</a> aware of the drive, open it with luks and format it:</p>
<blockquote><p><code>$ sudo cryptsetup --verbose --cipher "aes-cbc-essiv:sha256" --key-size 256 --verify-passphrase luksFormat /dev/sdx1<br />
$ sudo cryptsetup luksOpen /dev/sdx1 encrdisk<br />
$ sudo mke2fs -v /dev/mapper/encrdisk<br />
$ sudo cryptsetup luksClose encrdisk</code></p></blockquote>
<p>this creates an <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Ext2">ext2 file system</a>. now you should be able to unplug the drive and reconnect it, and ubuntu should ask you for a passphrase to unlock the disk. feel free to add <code>-L "label"</code> (at most 16 characters; see the man page for more details); ubuntu will try to mount the disk as /media/label then.</p>
<h3>mounting and unmounting.</h3>
<p>to mount:</p>
<blockquote><p><code>$ sudo cryptsetup luksOpen /dev/sdx1 encrdisk<br />
$ sudo mount /dev/mapper/encrdisk /mnt</code></p></blockquote>
<p>to unmount:</p>
<blockquote><p><code>$ sudo unmount /mnt<br />
$ sudo cryptsetup luksClose encrdisk</code></p></blockquote>
<p>note that for example newer ubuntu versions automatically ask for a passphrase and performs luksOpen / mount / unmount / luksClose for you.</p>
<h3>checking.</h3>
<p>basically, you just have to open the partition, run the usual file system check, and close it:</p>
<blockquote><p><code>$ sudo cryptsetup luksOpen /dev/sdx1 encrdisk<br />
$ sudo fsck -v -C -n /dev/mapper/encrdisk<br />
$ sudo cryptsetup luksClose encrdisk</code></p></blockquote>
<h3>passphrase management.</h3>
<p>note that luks has a storage of several passphrases, which can all be used to open the partition. one can add and remove phrases to/from this list.<br />
to add a passphrase:</p>
<blockquote><p><code>$ cryptsetup luksAddKey /dev/sdx1</code></p></blockquote>
<p>to remove a passphrase (you have to enter the passphrase to be removed):</p>
<blockquote><p><code>$ cryptsetup luksRemoveKey /dev/sdx1</code></p></blockquote>
<p>to remove the passphrase from a slot (useful if you forgot one of the passphrases and want to remove it):</p>
<blockquote><p><code>$ cryptsetup luksKillSlot /dev/sdx1 0</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2010/02/24/encrypting-partitions-with-luks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sapari by orphaned land.</title>
		<link>http://spielwiese.fontein.de/2010/02/15/sapari-by-orphaned-land/</link>
		<comments>http://spielwiese.fontein.de/2010/02/15/sapari-by-orphaned-land/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 13:05:31 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[albums]]></category>
		<category><![CDATA[orphaned land]]></category>
		<category><![CDATA[orwarrior]]></category>
		<category><![CDATA[progdeath metal]]></category>
		<category><![CDATA[sapari]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2087</guid>
		<description><![CDATA[i just got orphaned land&#8217;s new album, the never ending way of orwarrior, after long years of waiting. it&#8217;s amazing! the first track, sapari, is really catchy. i&#8217;m pretty much addicted to it. i might write more about the album later, but for now, here&#8217;s the official video for sapari:
in case you can&#8217;t see a [...]]]></description>
			<content:encoded><![CDATA[i just got <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Orphaned_land">orphaned land</a>&#8217;s new album, <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/The_Never_Ending_Way_of_ORWarriOR">the never ending way of orwarrior</a>, after long years of waiting. it&#8217;s amazing! the first track, <i>sapari</i>, is really catchy. i&#8217;m pretty much addicted to it. i might write more about the album later, but for now, here&#8217;s the official video for <i>sapari</i>:
<p class="center"><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/LsFZVSSav9Y&amp;rel=1&amp;border=0" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/LsFZVSSav9Y&amp;rel=1&amp;border=0" /><blockquote><p>in case you can&#8217;t see a video here, you probably don&#8217;t have the right plugin. the video&#8217;s on <a href="http://spielwiese.fontein.de/forward.php?r=http://www.youtube.com/watch%3Fv=LsFZVSSav9Y">youtube</a>, maybe you can watch it there, or at least get hints what you have to do to enable playing it.</p></blockquote></object></p>

edit: apparently, century media requested to delete that video and replaced it by another version of the same thing, with a more &ldquo;hip&rdquo; title. great. whatever. here&#8217;s the new version:
<p class="center"><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/M1WJyAwo3SA&amp;rel=1&amp;border=0" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/M1WJyAwo3SA&amp;rel=1&amp;border=0" /><blockquote><p>in case you can&#8217;t see a video here, you probably don&#8217;t have the right plugin. the video&#8217;s on <a href="http://spielwiese.fontein.de/forward.php?r=http://www.youtube.com/watch%3Fv=M1WJyAwo3SA">youtube</a>, maybe you can watch it there, or at least get hints what you have to do to enable playing it.</p></blockquote></object></p>
for some reason, they screwed it up that a lot of hyphens appear in the title&#8230; whatever&#8230;
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2010/02/15/sapari-by-orphaned-land/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>valkaama.</title>
		<link>http://spielwiese.fontein.de/2010/01/28/valkaama/</link>
		<comments>http://spielwiese.fontein.de/2010/01/28/valkaama/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 05:23:52 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[movies]]></category>
		<category><![CDATA[inari]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[valkaama]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2069</guid>
		<description><![CDATA[today, i heard about, downloaded and watched valkaama, a movie released under one of the creative commons licenses. (this means that you can actually download the sources of the movie and make your own version. and, probably more important to most people, you can just copy and watch it without restrictions.) technically speaking, the movie [...]]]></description>
			<content:encoded><![CDATA[<p>today, i heard about, downloaded and watched <a href="http://spielwiese.fontein.de/forward.php?r=http://www.valkaama.com/">valkaama</a>, a movie released under one of the <a href="http://spielwiese.fontein.de/forward.php?r=http://creativecommons.org/licenses/by-sa/3.0/deed.en">creative commons</a> licenses. (this means that you can actually download the sources of the movie and make your own version. and, probably more important to most people, you can just copy and watch it without restrictions.) technically speaking, the movie is of good quality, except the audio, maybe. i&#8217;ve listened to the movie with headphones, which was a bit annoying since voices were often only audible on the left or the right channel, but almost never somewhere inbetween. on speakers, this is fine, but with headphones it sucks. but besides that, everything&#8217;s great. so go and watch it, but maybe not with headphones <code>:-)</code> the movie also features <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Lake_Inari">inarijärvi</a>, one of the largest european lakes, located in <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Lapland_(Finland)">northern lapland</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2010/01/28/valkaama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to not organize a conference.</title>
		<link>http://spielwiese.fontein.de/2010/01/21/how-to-not-organize-a-conference/</link>
		<comments>http://spielwiese.fontein.de/2010/01/21/how-to-not-organize-a-conference/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 01:34:57 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[daily life]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[joint mathematics meetings]]></category>
		<category><![CDATA[san francisco]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2063</guid>
		<description><![CDATA[after attending the joint mathematics meetings in san francisco, i want to share two points you should not try to copy when you&#8217;re organizing a conference.

in case you have a lot of parallel sessions, try to schedule sessions with similar topics in parallel. this minimizes the number of days people from these areas have to [...]]]></description>
			<content:encoded><![CDATA[<p>after attending the <a href="http://spielwiese.fontein.de/forward.php?r=http://www.ams.org/amsmtgs/">joint mathematics meetings</a> in san francisco, i want to share two points you should <i>not</i> try to copy when you&#8217;re organizing a conference.</p>
<ul>
<li>in case you have a lot of parallel sessions, try to schedule sessions with similar topics in parallel. this minimizes the number of days people from these areas have to attend the conference.</li>
<li>promise wireless internet, but do not provide a backbone which can handle this. after noticing it is too slow, simply turn it off for the rest of the conference.</li>
<li>this applies more to conference center owners. do not install power plugs anywhere near to areas where tables and seats are placed. and by any means, never install power plugs in rooms where talks are held.</li>
</ul>
<p>people will really appreciate this and regard your conference as one of the best ever.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2010/01/21/how-to-not-organize-a-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>travelling, and new year&#8217;s eve.</title>
		<link>http://spielwiese.fontein.de/2010/01/07/travelling-and-new-years-eve/</link>
		<comments>http://spielwiese.fontein.de/2010/01/07/travelling-and-new-years-eve/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 17:36:17 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[daily life]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[historic train]]></category>
		<category><![CDATA[leipzig]]></category>
		<category><![CDATA[new year's eve]]></category>
		<category><![CDATA[oldenburg]]></category>
		<category><![CDATA[osnabrück]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[snow]]></category>
		<category><![CDATA[train]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2053</guid>
		<description><![CDATA[for new year&#8217;s eve, we traveled to oldenburg. on the way back and forth, we saw some interesting things in osnabrück. finally, on the way to dresden, we saw a historic train of the deutsche reichsbahn in leipzig. here are some impressions.
osnabrück, covered in snow.

new year&#8217;s eve.

osnabrück, outside the train station.

a historic train in leipzig.

]]></description>
			<content:encoded><![CDATA[<p>for new year&#8217;s eve, we traveled to <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Oldenburg">oldenburg</a>. on the way back and forth, we saw some interesting things in <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Osnabrück">osnabrück</a>. finally, on the way to <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Dresden">dresden</a>, we saw a historic train of the <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Deutsche_Reichsbahn">deutsche reichsbahn</a> in <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Leipzig">leipzig</a>. here are some impressions.</p>
<h3>osnabrück, covered in snow.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-01-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-02-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-03-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-04-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-05-bw.jpeg" width="220" height="147" alt="" /></a></p>
<h3>new year&#8217;s eve.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-06-bw.jpeg" width="147" height="220" alt="" /></a></p>
<h3>osnabrück, outside the train station.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-07-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-09-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-08-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-10-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-11-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-12-bw.jpeg" width="147" height="220" alt="" /></a></p>
<h3>a historic train in leipzig.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-13-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-14.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ol-14-bw.jpeg" width="220" height="147" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2010/01/07/travelling-and-new-years-eve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lüdinghausen.</title>
		<link>http://spielwiese.fontein.de/2010/01/07/ludinghausen/</link>
		<comments>http://spielwiese.fontein.de/2010/01/07/ludinghausen/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 16:55:07 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[photos]]></category>
		<category><![CDATA[burg lüdinghausen]]></category>
		<category><![CDATA[burg vischering]]></category>
		<category><![CDATA[castle]]></category>
		<category><![CDATA[lüdinghausen]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[st. antonius gymnasium]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2043</guid>
		<description><![CDATA[on christmas, my girlfriend and i visited lüdinghausen, my home town. we visited two castles, burg lüdinghausen and burg vischering, and my old school, the st. antonius gymnasium. here are some impressions.
location.
they are all located relatively near to each other:

the first castle: burg lüdinghausen.

my old school: the st. antonius gymnasium.

the second castle: burg vischering.

in case [...]]]></description>
			<content:encoded><![CDATA[<p>on christmas, my girlfriend and i visited <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Lüdinghausen">lüdinghausen</a>, my home town. we visited two castles, <a href="http://spielwiese.fontein.de/forward.php?r=http://de.wikipedia.org/wiki/Burg_Lüdinghausen">burg lüdinghausen</a> and <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Burg_Vischering">burg vischering</a>, and my old school, the <a href="http://spielwiese.fontein.de/forward.php?r=http://www.antonius-gymnasium.de/">st. antonius gymnasium</a>. here are some impressions.</p>
<h3>location.</h3>
<p>they are all located relatively near to each other:<br />
<iframe src="http://wikimapia.org/#lat=51.7742931&#038;lon=7.4418426&#038;z=16&#038;l=5&#038;ifr=1&#038;m=b" width="444" height="657" frameborder="0"></iframe></p>
<h3>the first castle: burg lüdinghausen.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-01-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-02-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-03-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-04-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-05-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-06-bw.jpeg" width="147" height="220" alt="" /></a></p>
<h3>my old school: the st. antonius gymnasium.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-07-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-08-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-09-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-10-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-11-bw.jpeg" width="220" height="147" alt="" /></a></p>
<h3>the second castle: burg vischering.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-12-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-13-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-14.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-14-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-15.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-15-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-16.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-16-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-17.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-17-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-18.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-18-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-19.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-19-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-20.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-20-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-21.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-21-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-22.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-22-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-23.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-23-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-24.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/lh-24-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>in case you wonder: the right photo in the second row depicts a <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Pranger">pranger</a>. one can actually try out this one :)</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2010/01/07/ludinghausen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>swallow the sun, insomnium and omnium gatherum in leipzig.</title>
		<link>http://spielwiese.fontein.de/2010/01/07/swallow-the-sun-insomnium-and-omnium-gatherum-in-leipzig/</link>
		<comments>http://spielwiese.fontein.de/2010/01/07/swallow-the-sun-insomnium-and-omnium-gatherum-in-leipzig/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 15:08:17 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[concerts]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[concert]]></category>
		<category><![CDATA[death metal]]></category>
		<category><![CDATA[doom metal]]></category>
		<category><![CDATA[insomnium]]></category>
		<category><![CDATA[leipzig]]></category>
		<category><![CDATA[omnium gatherum]]></category>
		<category><![CDATA[progressive metal]]></category>
		<category><![CDATA[swallow the sun]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2032</guid>
		<description><![CDATA[last year, some days before christmas, we attended a concert by swallow the sun in leipzig, germany, with support by insomnium and omnium gatherum. it was the last concert of the new moon tour. (no vampire shit, though ;-) ) you might know that swallow the sun is one of my favourite bands. they played [...]]]></description>
			<content:encoded><![CDATA[<p>last year, some days before christmas, we attended a concert by <a href="http://spielwiese.fontein.de/forward.php?r=http://www.swallowthesun.net/">swallow the sun</a> in leipzig, germany, with support by <a href="http://spielwiese.fontein.de/forward.php?r=http://www.insomnium.net/">insomnium</a> and <a href="http://spielwiese.fontein.de/forward.php?r=http://www.omniumgatherum.org/">omnium gatherum</a>. it was the last concert of the <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/New_Moon_(Swallow_the_Sun_album)">new moon</a> tour. (no vampire shit, though ;-) ) you might know that <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/tag/swallow-the-sun/">swallow the sun</a> is one of my favourite bands. they played in a small youth club, <a href="http://spielwiese.fontein.de/forward.php?r=http://www.conne-island.de/">conne island</a>, which wasn&#8217;t the easiest to find. but eventually, we found it. fortunately, nobody complained that i took my <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2008/01/15/me-and-my-new-toy/">favourite toy</a> with me; so this time, i managed to make some good photos.<br />
i think that this concert was the best one i attended in 2009. ok, i have to admit there haven&#8217;t been many concerts in 2009 anyway. but nonetheless, this one was very good. the bands played great music and obviously had fun. (and: they played <i>the giant</i>, one of my favourite songs, in the encore!) unfortunately, the audience didn&#8217;t manage to sing &ldquo;we want more&rdquo; in finnish, so most sang a few times &ldquo;zugabe&rdquo; and then stopped doing anything at all, resulting in an awkward half-silence. but the band fortunately still came back.<br />
now have fun watching some of the photos. if you want to know more about the concert, read someone else&#8217;s <a href="http://spielwiese.fontein.de/forward.php?r=http://www.bloodchamber.de/konzert/2009/593/">report</a> ;-)</p>
<h3>omnium gatherum.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-01-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-02-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-03-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-04-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-05-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-06-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-01-07-bw.jpeg" width="220" height="147" alt="" /></a></p>
<h3>insomnium.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-01-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-02-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-03-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-04-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-05-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-06-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-07-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-08-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-09-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-10-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-11-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>during the concert of <i>insomnium</i>, members of the other bands showed up on the stage, and equiped <i>insomnium</i>&#8217;s singer <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Niilo_Sevänen">niilo</a> with a funny hat and a sign saying &ldquo;<a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Korpiklaani">korpiklaani</a>&rdquo;. he eventually removed the hat by banging his head:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-12-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-13-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-14.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-14-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-15.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-15-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-16.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-02-16-bw.jpeg" width="147" height="220" alt="" /></a></p>
<h3>swallow the sun.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-01-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-02-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-03-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-04-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-05-bw.jpeg" width="147" height="220" alt="" /></a></p>
<p>during <i>swallow the sun</i>&#8217;s performance, members of the other bands had fun installing a pink <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Dildo">dildo</a> first at the keyboard and then, later, at the singer&#8217;s microphone:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-06-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-07-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-08-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-09-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-10-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-11-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-12-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>as opposed to the <i>korpiklaani</i> &ldquo;hat&rdquo;, the dildo stayed there for the rest of the concert.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-13-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-14.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-14-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-15.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-15-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-16.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-16-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-17.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-17-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-18.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-18-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-19.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-19-bw.jpeg" width="220" height="147" alt="" /></a><br />
<a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-20.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-20-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-21.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-21-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-22.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-22-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-23.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-23-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-24.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-24-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-25.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-25-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-26.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-26-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-27.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-27-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-28.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-28-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-29.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-29-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-30.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-30-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-31.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-31-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-32.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-32-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-33.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-33-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-34.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/sts-03-34-bw.jpeg" width="220" height="147" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2010/01/07/swallow-the-sun-insomnium-and-omnium-gatherum-in-leipzig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>squash soup.</title>
		<link>http://spielwiese.fontein.de/2010/01/07/squash-soup/</link>
		<comments>http://spielwiese.fontein.de/2010/01/07/squash-soup/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 11:32:09 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[cooking]]></category>
		<category><![CDATA[soupl]]></category>
		<category><![CDATA[squash]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2027</guid>
		<description><![CDATA[well, in december i didn&#8217;t managed to post some of the things i wanted to, for example something on a squash soup. i got the recipe from a friend and mixed it with some i found online. it consists of squash, cut into small pieces. note that it is a good idea to take squashs [...]]]></description>
			<content:encoded><![CDATA[<p>well, in december i didn&#8217;t managed to post some of the things i wanted to, for example something on a squash soup. i got the recipe from a friend and mixed it with some i found online. it consists of <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Squash_(plant)">squash</a>, cut into small pieces. note that it is a good idea to take squashs whose hull is edible, like <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Red_kuri_squash">hokkaido squash</a>, <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Butternut_squash">butternut squash</a> and <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Buttercup_squash">buttercup squash</a>).</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ss-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ss-01-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ss-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ss-02-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>the pieces are cooked a bit with onions, garlic and spices such as <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Cayenne_pepper">cayenne pepper</a> and <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Curry_powder">curry</a>, until water with stock is added:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ss-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ss-03-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ss-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ss-04-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>after cooking it for 30-40 minutes, one can add <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Crème_fraiche">crème fraiche</a> (or sour cream if you live in a country where you can&#8217;t easily get crème fraiche).</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ss-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2010/01/ss-05-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2010/01/07/squash-soup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nose hill park, covered in snow.</title>
		<link>http://spielwiese.fontein.de/2009/12/11/nose-hill-park-covered-in-snow/</link>
		<comments>http://spielwiese.fontein.de/2009/12/11/nose-hill-park-covered-in-snow/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 08:21:33 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[panoramas]]></category>
		<category><![CDATA[calgary]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[nose hill park]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[snow]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2022</guid>
		<description><![CDATA[last weekend, it was rather cold outside, and pretty white. i did a walk to the nose hill park, enjoying the beautiful snowscape as well as the icy wind. here are some impressions.

]]></description>
			<content:encoded><![CDATA[<p>last weekend, it was rather cold outside, and pretty white. i did a walk to the <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-calgarys-nose-hill-park/">nose hill park</a>, enjoying the beautiful snowscape as well as the icy wind. here are some impressions.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-01-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-02-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-03-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-04-bw.jpeg" width="444" height="57" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-05-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-06-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-07-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-08-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-09-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-10-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-11-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-12-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-13-bw.jpeg" width="444" height="130" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-14.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-14-bw.jpeg" width="220" height="182" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-15.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/12/nhp-15-bw.jpeg" width="220" height="147" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/12/11/nose-hill-park-covered-in-snow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the winter has arrived.</title>
		<link>http://spielwiese.fontein.de/2009/12/01/the-winter-has-arrived/</link>
		<comments>http://spielwiese.fontein.de/2009/12/01/the-winter-has-arrived/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 05:20:34 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[daily life]]></category>
		<category><![CDATA[calgary]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[snow]]></category>
		<category><![CDATA[winter]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2018</guid>
		<description><![CDATA[it&#8217;s white outside. for a couple of days now. after a few white days during october, and rather warm temperaturs during most of november, the coldness finally returned, and with it the whiteness. an unfortunate companion of snow is ice, and by now, there&#8217;s plenty of it. mostly on sidewalks, sometimes on the roads. let&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>it&#8217;s white outside. for a couple of days now. after a few white days during october, and rather warm temperaturs during most of november, the coldness finally returned, and with it the whiteness. an unfortunate companion of snow is ice, and by now, there&#8217;s plenty of it. mostly on sidewalks, sometimes on the roads. let&#8217;s see when the next <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Chinook_wind">chinook</a> is coming.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/12/01/the-winter-has-arrived/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>spinach pancakes.</title>
		<link>http://spielwiese.fontein.de/2009/10/19/spinach-pancakes/</link>
		<comments>http://spielwiese.fontein.de/2009/10/19/spinach-pancakes/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 04:32:19 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[cooking]]></category>
		<category><![CDATA[pancakes]]></category>
		<category><![CDATA[spinach]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2011</guid>
		<description><![CDATA[after sharing one pancake recipe more than ten days ago, i thought i&#8217;d write about another one which i tried more often. it&#8217;s the result of preparing enough spinach sauce for a few days, and trying to combine that with pancakes.
i again made a lot of spinach sauce today, so i can eat a few [...]]]></description>
			<content:encoded><![CDATA[<p>after sharing one <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2009/10/08/creative-cooking-zucchini-mozzarella-pancakes/">pancake recipe</a> more than ten days ago, i thought i&#8217;d write about another one which i tried more often. it&#8217;s the result of preparing enough spinach sauce for a few days, and trying to combine that with pancakes.<br />
i again made a lot of spinach sauce today, so i can eat a few days from it. i took one onion, one garlic bulp and one red chilli and chopped them. then, i put them in a pan and roasted them gently, adding &ldquo;some&rdquo; cayenne pepper.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-01-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-02-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>after that, i added the frozen spinach, and let it defrost. during the process, i added some hot water, some more water with corn starch, and some whipping cream.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-03-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-04-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>as usual, i prepared pancakes and added some of the spinach sauce on one half.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-05-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-06-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>finally, i flipped the other half over, and obtained a small stack of spinach pancakes.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-07-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/spk-08-bw.jpeg" width="220" height="147" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/19/spinach-pancakes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>creative cooking: zucchini-mozzarella pancakes.</title>
		<link>http://spielwiese.fontein.de/2009/10/08/creative-cooking-zucchini-mozzarella-pancakes/</link>
		<comments>http://spielwiese.fontein.de/2009/10/08/creative-cooking-zucchini-mozzarella-pancakes/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 04:45:17 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[cooking]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[mozzarella]]></category>
		<category><![CDATA[pancakes]]></category>
		<category><![CDATA[zucchini]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1978</guid>
		<description><![CDATA[often, i experiment when cooking. adding or removing or exchanging ingredients, changing the result a little every time; i guess this is not that uncommon for anyone used to cooking. sometimes, i do some more experiments, like today. two days ago, when shopping, i got a spontaneous idea, namely to try a omlette with zucchini [...]]]></description>
			<content:encoded><![CDATA[<p>often, i experiment when cooking. adding or removing or exchanging ingredients, changing the result a little every time; i guess this is not that uncommon for anyone used to cooking. sometimes, i do some more experiments, like today. two days ago, when shopping, i got a spontaneous idea, namely to try a omlette with zucchini and cheese. well, i bought everything i needed, but on the way home, i continued to think and planned to replace the omlette by pancakes. well, and today, i finally tried it out. first, i cut the zucchini into small slices:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-01-bw.jpeg" width="147" height="220" alt="" /></a></p>
<p>then, i prepared pancake dough &ndash; flour, a few eggs, salt, milk, and mixing it together. then, i started baking pancakes.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-02-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-03-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>for the first try, i took the done pancake out of the pan and placed it on a plate. i added grinded mozzarella on one half, put on some of the zucchini slices, and flipped the other half over:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-04-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-05-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-06-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-07-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>it tastes good, but i thought i can do better. so i tried to add some spices, in particular cayenne pepper, after putting the cheese on. i also put on the cheese while the pancake was still in the pan, as otherwise the cheese doesn&#8217;t really melt. it then looks like this:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-08-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-09-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-10-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-11-bw.jpeg" width="220" height="147" alt="" /></a></p>
<p>finally, i had a small stack of pancakes, part of whom i enjoyed eating, while putting the rest in the fridge to enjoy it at tomorrow&#8217;s lunch.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/pzc-12-bw.jpeg" width="220" height="147" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/08/creative-cooking-zucchini-mozzarella-pancakes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>a western canadian vacation: calgary&#8217;s nose hill park.</title>
		<link>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-calgarys-nose-hill-park/</link>
		<comments>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-calgarys-nose-hill-park/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 16:00:08 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[panoramas]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[calgary]]></category>
		<category><![CDATA[nose hill park]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[vanada]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1866</guid>
		<description><![CDATA[on one of the last days, we did a small trip to calgary&#8217;s nose hill park, where i have been before as well. here are a few impressions:

]]></description>
			<content:encoded><![CDATA[<p>on one of the last days, we did a small trip to calgary&#8217;s <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Nose_Hill_Park">nose hill park</a>, where i have been <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2009/05/06/forgotton-trips-nose-hill-park/">before</a> as well. here are a few impressions:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/10-nhp-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/10-nhp-01-bw.jpeg" width="444" height="53" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/10-nhp-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/10-nhp-02-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/10-nhp-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/10-nhp-03-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/10-nhp-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/10-nhp-04-bw.jpeg" width="444" height="63" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-calgarys-nose-hill-park/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>a western canadian vacation: the icefields parkway.</title>
		<link>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-the-icefields-parkway/</link>
		<comments>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-the-icefields-parkway/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 10:00:26 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[panoramas]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[astonia river]]></category>
		<category><![CDATA[athabasca falls]]></category>
		<category><![CDATA[athabasca river]]></category>
		<category><![CDATA[bow lake]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[columbia icefield]]></category>
		<category><![CDATA[crowfoot glacier]]></category>
		<category><![CDATA[driving]]></category>
		<category><![CDATA[icefields parkway]]></category>
		<category><![CDATA[lake loise]]></category>
		<category><![CDATA[mount brussels]]></category>
		<category><![CDATA[sumwapta falls]]></category>
		<category><![CDATA[upper waterfowl lake]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1865</guid>
		<description><![CDATA[one of the most beautiful parts of our trip was the drive south the icefields parkway, connecting jasper to lake louise. here are a few impressions from our stops. we wanted to drive up mount edith cavell as well, but the road was closed.
astoria river bridge and athabasca river.

a beautiful lake and the athabasca falls.

mountains, [...]]]></description>
			<content:encoded><![CDATA[<p>one of the most beautiful parts of our trip was the drive south the <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Icefields_Parkway">icefields parkway</a>, connecting jasper to <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Lake_Louise,_Alberta">lake louise</a>. here are a few impressions from our stops. we wanted to drive up <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Mount_Edith_Cavell">mount edith cavell</a> as well, but the road was closed.</p>
<h3>astoria river bridge and athabasca river.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-01-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-02-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-03-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-04-bw.jpeg" width="444" height="78" alt="" /></a></p>
<h3>a beautiful lake and the athabasca falls.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-05-bw.jpeg" width="444" height="69" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-06-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-07-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-08-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-09-bw.jpeg" width="444" height="90" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-10-bw.jpeg" width="444" height="309" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-11-bw.jpeg" width="444" height="111" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-12-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-13-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-14.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-14-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-15.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-15-bw.jpeg" width="444" height="195" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-16.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-16-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-17.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-17-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-18.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-18-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-19.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-19-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-20.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-20-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-21.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-21-bw.jpeg" width="444" height="146" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-22.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-22-bw.jpeg" width="444" height="146" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-23.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-23-bw.jpeg" width="444" height="133" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-24.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-24-bw.jpeg" width="85" height="220" alt="" /></a></p>
<h3>mountains, and the columbia icefield.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-25.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-25-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-26.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-26-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-27.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-27-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-28.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-28-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-29.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-29-bw.jpeg" width="444" height="193" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-30.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-30-bw.jpeg" width="444" height="145" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-31.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-31-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-32.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-32-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-33.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-33-bw.jpeg" width="220" height="147" alt="" /></a></p>
<h3>our car, and the upper waterfowl lake.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-34.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-34-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-35.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-35-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-36.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-36-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-37.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-37-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-38.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-38-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-39.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-39-bw.jpeg" width="444" height="145" alt="" /></a></p>
<h3>the bow lake and the crowfoot glacier.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-40.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-40-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-41.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-41-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-42.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-42-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-43.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-43-bw.jpeg" width="444" height="83" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-44.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-44-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-45.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-45-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-46.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-46-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-47.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-47-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-48.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-48-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-49.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-49-bw.jpeg" width="444" height="113" alt="" /></a></p>
<h3>lake louise.</h3>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-50.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-50-bw.jpeg" width="444" height="184" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-51.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-51-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-52.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-52-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-53.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-53-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-54.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/09-ifpw-54-bw.jpeg" width="444" height="82" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-the-icefields-parkway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a western canadian vacation: traveling through the rocky mountains.</title>
		<link>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-traveling-through-the-rocky-mountains/</link>
		<comments>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-traveling-through-the-rocky-mountains/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 04:00:47 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[panoramas]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[driving]]></category>
		<category><![CDATA[jasper]]></category>
		<category><![CDATA[kamloops]]></category>
		<category><![CDATA[maligne lake]]></category>
		<category><![CDATA[pyramid lake]]></category>
		<category><![CDATA[rocky mountains]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1864</guid>
		<description><![CDATA[after two days in vancouver, we rented a car and drove up to the beautiful town of jasper. from there, we visited, among others, patricia lake, pyramid lake and maligne lake, whose photos can be found below as well as a photo taken at a rest stop somewhere north of kamloops.

]]></description>
			<content:encoded><![CDATA[<p>after two days in vancouver, we rented a car and drove up to the beautiful town of <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Jasper,_Alberta">jasper</a>. from there, we visited, among others, patricia lake, <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Pyramid_Lake_(Alberta)">pyramid lake</a> and <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Maligne_lake">maligne lake</a>, whose photos can be found below as well as a photo taken at a rest stop somewhere north of <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Kamloops">kamloops</a>.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-01-bw.jpeg" width="444" height="72" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-02-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-03-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-04-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-05-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-06-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/08-rm-07-bw.jpeg" width="444" height="96" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-traveling-through-the-rocky-mountains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a western canadian vacation: vancouver.</title>
		<link>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-vancouver/</link>
		<comments>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-vancouver/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 22:00:11 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[panoramas]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[capilano bridge]]></category>
		<category><![CDATA[coast]]></category>
		<category><![CDATA[steam clock]]></category>
		<category><![CDATA[sunset]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[vancouver]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1863</guid>
		<description><![CDATA[after yellowknife, we flew to vancouver. things you can see in the photos are the steam clock, vancouver city, stanley park, a spider, views from the capilano bridge and its park, and a sunset at the pacific ocean&#8217;s beach.

]]></description>
			<content:encoded><![CDATA[<p>after yellowknife, we flew to <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Vancouver">vancouver</a>. things you can see in the photos are the <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Steam_clock">steam clock</a>, vancouver city, <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Stanley_Park">stanley park</a>, a spider, views from the <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Capilano_Suspension_Bridge">capilano bridge</a> and its park, and a sunset at the pacific ocean&#8217;s beach.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-01-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-02-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-03-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-04-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-05-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-06-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-07-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-08-bw.jpeg" width="444" height="170" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-09-bw.jpeg" width="444" height="107" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-10-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-11-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-12-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-13-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-14.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-14-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-15.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-15-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-16.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-16-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-17.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-17-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-18.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-18-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-19.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-19-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-20.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-20-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-21.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-21-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-22.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-22-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-23.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-23-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-24.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-24-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-25.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-25-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-26.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-26-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-27.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-27-bw.jpeg" width="444" height="80" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-28.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-28-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-29.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-29-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-30.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/07-vc-30-bw.jpeg" width="220" height="147" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/06/a-western-canadian-vacation-vancouver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a western canadian vacation: aurora borealis watching in yellowknife.</title>
		<link>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-aurora-borealis-watching-in-yellowknife/</link>
		<comments>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-aurora-borealis-watching-in-yellowknife/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 19:00:48 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[photos]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[aurora borealis]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[northern lights]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[yellowknife]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1862</guid>
		<description><![CDATA[on our last night in yellowknife, we had the luck to see an aurora borealis. experiencing an aurora is something hard to describe. the following photos and videos just give a small glimpse of its wafting beauty.


for the more technically interested people, the camera settings i used for most photos are a shutter speed of [...]]]></description>
			<content:encoded><![CDATA[on our last night in yellowknife, we had the luck to see an <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Aurora_borealis">aurora borealis</a>. experiencing an aurora is something hard to describe. the following photos and videos just give a small glimpse of its wafting beauty.
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-01-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-02-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-03-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-04-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-05-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-06-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-07-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-08-bw.jpeg" width="220" height="147" alt="" /></a></p>

for the more technically interested people, the camera settings i used for most photos are a shutter speed of 8 seconds, aperture of f/4.0 and iso sensitivity of 800. this was the first time where i was really happy that i have a remote for my camera&#8217;s shutter and a tripod. below you can view some videos, taken with these settings (hence, between two frames there are around 8 seconds delay). there are six frames per second, whence the videos are around 48 times faster as the real aurora was. each video comes as a flash player together with an avi download (the avi files contain essentially a sequence of jpeg files, so no fancy codec is required).

[See post to watch Flash video]
<a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-01.avi">download this movie.</a>

[See post to watch Flash video]
<a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-02.avi">download this movie.</a>

[See post to watch Flash video]
<a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-03.avi">download this movie.</a>

[See post to watch Flash video]
<a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-04.avi">download this movie.</a>

[See post to watch Flash video]
<a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-05.avi">download this movie.</a>

[See post to watch Flash video]
<a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-06.avi">download this movie.</a>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-aurora-borealis-watching-in-yellowknife/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-01.avi" length="3781044" type="video/x-msvideo" />
<enclosure url="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-02.avi" length="2724004" type="video/x-msvideo" />
<enclosure url="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-03.avi" length="1882178" type="video/x-msvideo" />
<enclosure url="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-04.avi" length="3687984" type="video/x-msvideo" />
<enclosure url="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-05.avi" length="7118654" type="video/x-msvideo" />
<enclosure url="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/06-ykau-mov-06.avi" length="4348026" type="video/x-msvideo" />
		</item>
		<item>
		<title>a western canadian vacation: yellowknife&#8217;s great slave lake.</title>
		<link>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-yellowknifes-great-slave-lake/</link>
		<comments>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-yellowknifes-great-slave-lake/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 17:00:17 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[panoramas]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[great slave lake]]></category>
		<category><![CDATA[yellowknife]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1861</guid>
		<description><![CDATA[another day, we did a trip to the great slave lake, a huge lake (its area takes 7% of germany&#8217;s area, or two thirds of switzerland&#8217;s area).

]]></description>
			<content:encoded><![CDATA[<p>another day, we did a trip to the <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Great_Slave_Lake">great slave lake</a>, a <i>huge</i> lake (its area takes 7% of germany&#8217;s area, or two thirds of switzerland&#8217;s area).</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/05-yksl-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/05-yksl-01-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/05-yksl-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/05-yksl-02-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/05-yksl-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/05-yksl-03-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/05-yksl-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/05-yksl-04-bw.jpeg" width="444" height="78" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/05-yksl-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/05-yksl-05-bw.jpeg" width="220" height="147" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-yellowknifes-great-slave-lake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a western canadian vacation: yellowknife&#8217;s frame lake.</title>
		<link>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-yellowknifes-frame-lake/</link>
		<comments>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-yellowknifes-frame-lake/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 11:00:04 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[panoramas]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[frame lake]]></category>
		<category><![CDATA[hiking]]></category>
		<category><![CDATA[telephoto lens]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[yellowknife]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1860</guid>
		<description><![CDATA[we started our canada tour by flying up to yellowknife, the capital of canadas northwest territories. it&#8217;s a town having around 20.000 inhabitants, but it is probably the most touristic place in the northwest of canada, and there are a lot of (non-expensive) flights going there. and, one reason why we went there, it&#8217;s quite [...]]]></description>
			<content:encoded><![CDATA[<p>we started our canada tour by flying up to <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Yellowknife">yellowknife</a>, the capital of canadas <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Northwest_Territories">northwest territories</a>. it&#8217;s a town having around 20.000 inhabitants, but it is probably the most touristic place in the northwest of canada, and there are a lot of (non-expensive) flights going there. and, one reason why we went there, it&#8217;s quite likely that you can see <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Aurora_borealis">northern lights</a>. besides that, the area is also very different from southern canada.<br />
on our first day there, it was sunny and we did a hike on the trail around <a href="http://spielwiese.fontein.de/forward.php?r=http://www.discovernorth.ca/08_Thingstodo/walking.html">frame lake</a>. this resulted in many beautiful views and photos, some of whose can be seen here:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-01-bw.jpeg" width="444" height="65" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-02-bw.jpeg" width="444" height="153" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-03-bw.jpeg" width="444" height="126" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-04-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-05-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-06-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-07-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-08-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-09-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-10-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-11-bw.jpeg" width="444" height="120" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-12-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-13-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-14.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-14-bw.jpeg" width="444" height="118" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-15.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-15-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-16.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-16-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-17.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-17-bw.jpeg" width="444" height="158" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-18.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-18-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-19.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-19-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-20.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-20-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-21.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-21-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-22.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-22-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-23.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-23-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-24.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-24-bw.jpeg" width="444" height="211" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-25.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-25-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-26.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/04-ykfl-26-bw.jpeg" width="147" height="220" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-yellowknifes-frame-lake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a western canadian vacation: calgary&#8217;s zoo.</title>
		<link>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-calgarys-zoo/</link>
		<comments>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-calgarys-zoo/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 05:00:35 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[photos]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[calgary]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[dinosaurs]]></category>
		<category><![CDATA[telephoto lens]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[zoo]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1859</guid>
		<description><![CDATA[next, we did a trip to calgary&#8217;s zoo.

the zoo contains a dinosaur part, which i didn&#8217;t really commented on last time. it features a landscape which is supposed to look like back then, and a few dinosaur models. some of these models look really unrealistic, or more funny. the following photos also feature some of [...]]]></description>
			<content:encoded><![CDATA[<p>next, we did a trip to <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2008/05/13/visiting-calgary-part-two-the-zoo/">calgary&#8217;s zoo</a>.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-01-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-02-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-03-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-04-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-05-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-06-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-07-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-08-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-09-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-10-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-11-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-12-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-13-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-14.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-14-bw.jpeg" width="147" height="220" alt="" /></a></p>
<p>the zoo contains a dinosaur part, which i didn&#8217;t really commented on last time. it features a landscape which is supposed to look like back then, and a few dinosaur models. some of these models look really unrealistic, or more funny. the following photos also feature some of those:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-15.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-15-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-16.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-16-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-17.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-17-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-18.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/03-zoo-18-bw.jpeg" width="147" height="220" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-calgarys-zoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a western canadian vacation: calgary&#8217;s prince&#8217;s island park.</title>
		<link>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-calgarys-princes-island-park/</link>
		<comments>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-calgarys-princes-island-park/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 23:00:12 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[photos]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[calgary]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[prince's island park]]></category>
		<category><![CDATA[telephoto lens]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1858</guid>
		<description><![CDATA[after the ha link peak, we explored calgary&#8217;s prince&#8217;s island park, where i have been before several times.

]]></description>
			<content:encoded><![CDATA[<p>after the ha link peak, we explored calgary&#8217;s <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/tag/princes-island-park/">prince&#8217;s island park</a>, where i have been before several times.</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-01-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-02-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-03-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-04-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-05-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/02-pp-06-bw.jpeg" width="147" height="220" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/05/a-western-canadian-vacation-calgarys-princes-island-park/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a western canadian vacation: the ha ling peak.</title>
		<link>http://spielwiese.fontein.de/2009/10/04/a-western-canadian-vacation-the-ha-ling-peak/</link>
		<comments>http://spielwiese.fontein.de/2009/10/04/a-western-canadian-vacation-the-ha-ling-peak/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 20:10:10 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[panoramas]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[ha ling peak]]></category>
		<category><![CDATA[hiking]]></category>
		<category><![CDATA[rocky mountains]]></category>
		<category><![CDATA[telephoto lens]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1857</guid>
		<description><![CDATA[maybe you, the reader, noticed that i didn&#8217;t really wrote anything here during the last three weeks. well, the reason was that i had a visitor here, namely my girlfriend, and that we did a 10 day tour through western canada. in this and the following posts, i will show some photos from our trip.
the [...]]]></description>
			<content:encoded><![CDATA[<p>maybe you, the reader, noticed that i didn&#8217;t really wrote anything here during the last three weeks. well, the reason was that i had a visitor here, namely my girlfriend, and that we did a 10 day tour through western canada. in this and the following posts, i will show some photos from our trip.<br />
the first thing we did was attend our department&#8217;s excursion, a <a href="http://spielwiese.fontein.de/forward.php?r=http://hikealberta.com/hike/ha-ling-peak">hike</a> on top of <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Ha_Ling_Peak">ha ling peak</a>. here are some impressions from the hike:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-01-bw.jpeg" width="444" height="151" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-02-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-03-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-04-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-05-bw.jpeg" width="444" height="173" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-06-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-07-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-08-bw.jpeg" width="444" height="137" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-09-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-10-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-11-bw.jpeg" width="444" height="170" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-12-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-13-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-14.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-14-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-15.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-15-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-16.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/10/01-hlp-16-bw.jpeg" width="147" height="220" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/04/a-western-canadian-vacation-the-ha-ling-peak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>worst article on operating systems ever (read by me).</title>
		<link>http://spielwiese.fontein.de/2009/10/02/worst-article-on-operating-systems-ever-read-by-me/</link>
		<comments>http://spielwiese.fontein.de/2009/10/02/worst-article-on-operating-systems-ever-read-by-me/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 07:34:00 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1851</guid>
		<description><![CDATA[a friend of mine just send me a link to this article, which compares the operating systems windows 7, osx and the linux distribution kubuntu. i must admit that it&#8217;s the worst article i ever read on such a subject, containing so many mistakes.
this annoys me enough to write a blog post about the article, [...]]]></description>
			<content:encoded><![CDATA[<p>a friend of mine just send me a link to <a href="http://spielwiese.fontein.de/forward.php?r=http://www.focus.de/digital/computer/chip-exklusiv/tid-15712/windows-mac-os-linux-betriebssysteme-im-haertetest_aid_440818.html">this article</a>, which compares the operating systems <i>windows 7</i>, <i>osx</i> and the linux distribution <i>kubuntu</i>. i must admit that it&#8217;s the worst article i ever read on such a subject, containing so many mistakes.<br />
this annoys me enough to write a blog post about the article, trying to point out errors. all quotes are from the version retrieved on october 2nd, 08:55 in the morning (german time).</p>
<blockquote><p>
&ldquo;Microsoft sorgte im Gegensatz zu den Konkurrenten immer für einen schnellen Patch&rdquo;
</p></blockquote>
<p>in the past, there have been critical bugs in windows which have been known for more than half a year before they have been fixed. more precisely, i remember a bug which allowed to remotely shut down windows (presenting a 60 seconds or so countdown which could not be canceled, followed by an automatic shutdown) which could be triggered by sending a bad packet to a windows computer (without a firewall, which was the default configuration at that time for windows). that&#8217;s definitely not fast, and at that time there was nothing one could do against it but installing third party software (like a personal firewall).</p>
<blockquote><p>
&ldquo;Bei Mac OS X prüft – wie bei Windows 7 – ein eingebauter Update-Manager in bestimmten Zeitabschnitten auf Aktualisierungen. Unter Kubuntu muss der User selbst daran denken.&rdquo;
</p></blockquote>
<p>this is not true: ubuntu has an update manager as well, which checks regularly (every day i think?) and allows the user to install the updates. i think it can also be configured to automatically install updates. moreover, kubuntu installes updates for all installed programs (at least the ones supported by the program manager &ndash; which are usually all which a standard user uses.)</p>
<blockquote><p>
&ldquo;Gegenüber Linux haben die großen Anbieter Microsoft und Apple allerdings einen Sicherheitsnachteil: Bevor die Updates an die User gehen, durchlaufen die Bugfixes viele Qualitäts- und Kompatibilitätskontrollen. Der Vorteil der Linux-Community: Oft gibt es schon nach Stunden den ersten Patch – der kann allerdings auch das System instabil machen.&rdquo;
</p></blockquote>
<p>well, in theory. there have been cases where patches from microsoft have been broken; at the moment i&#8217;m too lazy to search for that. and having fast patches for certain (very annoying) problems is a good thing as well. and, no one is forced to install the patches right away. if one waits a few days, possible errors in the patches are usually corrected.</p>
<blockquote><p>
&ldquo;Apple und Linux gehen sogar noch einen fatalen Schritt weiter: Bei OS-XRechnern ist die Firewall von Haus aus deaktiviert, und wer unter Kubuntu geschützt sein will, muss je nach Distribution die Firewall sogar noch extra nachinstallieren.&rdquo;
</p></blockquote>
<p>apparently, the author did not notice that he is looking at a very special distribution of linux, called <i>kubuntu</i>, and not at the family of all linux distrubutions, when he wrote &ldquo;je nach Distribution&rdquo;. but more seriously, i have some doubts that the author knows what a firewall really does, what the difference between a so called <i>personal firewall</i> and a &ldquo;real&rdquo; firewall is, and why one does (not) need one (under linux, all ports are closed by default). for linux, there is usually no need to install a firewall.<br />
the conclusion of the <i>security</i> discussion,</p>
<blockquote><p>
&ldquo;Der Punktsieg geht hier knapp an Windows 7. Denn dieses ist das einzige System, das bereits heute zeigt, dass es sich im Kampf gegen Hacker einigermaßen durchsetzen kann. Wer hingegen mit OS X oder Kubuntu unterwegs ist, hat keine Firewall, keinen Virenscanner und teilweise lange Zeit ein ungepatchtes System.&rdquo;
</p></blockquote>
<p>is therefore worth to be ignored.</p>
<blockquote><p>
&ldquo;Der Nachteil von Kubuntu ist jedoch, dass es je nach Distribution rund zehn Gigabyte auf der Festplatte verbraucht.&rdquo;
</p></blockquote>
<p>first, kubuntu is a distribution, not a family of distributions. dear author, distinguishing between linux and kubuntu is not <i>that</i> hard. moreover, the full installation of kubuntu installes a <i>huge</i> amount of programs, including <i>open office</i>, a cd/dvd burning program, and lots of games, just to name a few. if you install all such programs under windows, it will surely use more than 10 gb. way more than that. so this comparism does not make sense.</p>
<blockquote><p>
&ldquo;Bei seinen Programmierern bestand ein Gigabyte aus 109 Bytes und nicht aus 230 Bytes.&rdquo;
</p></blockquote>
<p>i don&#8217;t know if this is the author&#8217;s fault, but apparently the person who put the article into the focus system did <i>not</i> compare it with the original, to make sure everything is fine. the 109 should be 10<sup>9</sup> and the 230 should be 2<sup>30</sup> &ndash; a <i>huge</i> difference.</p>
<blockquote><p>
&ldquo;Der Grund: Das Dateisystem von Snow Leopard ist optimal auf das System abgestimmt und insgesamt besser als das Windows-7-FAT-Dateisystem.&rdquo;
</p></blockquote>
<p>i seriously doubt that windows 7 is using a fat-based file system per default. standard for the last windows version (and for windows nt for a longer time now) is ntfs. the author should definitely know this.</p>
<blockquote><p>
&ldquo;Windows und OS X nehmen sich beim Kopf-an-Kopf- Rennen nicht viel: 48,22 Frames pro Sekunde (fps) schafft Windows 7, OS X 48,76 fps. Kubuntu hinkt mit nur 43,55 fps hinterher.&rdquo;
</p></blockquote>
<p>here, the author is missing an important detail: what exactly is measured? a benchmark? a game? a custom application?</p>
<blockquote><p>
&ldquo;In der Rubrik „Performance“ heißen die Gewinner damit Windows 7 und Mac OS X. Das Apple-System kann schneller Dateien kopieren, während Windows 7 schneller CSS-Websites anzeigt.&rdquo;
</p></blockquote>
<p>this is not wrong, but i seriously doubt that the file copying really influences the standard users of computers. just think. how many gigabytes you are copying each day? (and besides that, &ldquo;css-websites&rdquo; is a very funny expression&#8230;)</p>
<blockquote><p>
&ldquo;Beim Mac OS X fehlt sogar ein Programm fürs Daten-Backup. Wer hier Files sichern will, muss auf das mächtige Time Machine zurückgreifen. Damit sichert das Mac-OS das komplette System auf eine externe Festplatte.&rdquo;
</p></blockquote>
<p>i don&#8217;t get this: first, the author says that osx has no backup software. then, he says how great the included backup software is. i mean, seriously, wtf?</p>
<blockquote><p>
&ldquo;Kubuntu bietet nur ein einfaches Backup-Tool. Ein komplettes Image des Systems [...] sind damit nicht möglich.&rdquo;
</p></blockquote>
<p>i don&#8217;t know what kind of (gui) backup tools are included with kubuntu, but (almost?) every linux system ships with rsync and tar, two command line programs allowing backups. obviously these are not for the standard user, but they are included. and have been included for a long time.</p>
<blockquote><p>
&ldquo;Bei der Installation von Programmen gewinnt OS X haushoch: Einfach das gewünschte Tool in den Programmordner ziehen, fertig. Für die Deinstallation einfach den Ordner löschen – simpler geht’s nicht. Keine über die Platte verteilten DLLs, keine Registry-Einträge.&rdquo;
</p></blockquote>
<p>for the (relatively) short time i was using osx, i noticed that not all programs fall in this category. there are programs (for example, some from apple) which do install stuff at various places in the system and which cannot be installed that easily.</p>
<blockquote><p>
&ldquo;Kubuntu bietet nur wenige Standardtreiber. Speziell auf die Hardware angepasste Versionen gibt es kaum und wenn, sind sie nur von Informatikstudenten installierbar.&rdquo;
</p></blockquote>
<p>first, apparently, the author has <i>no clue</i> about the difference between computer scientists and computer technicians. this is really embarrasing.<br />
second, linux contains a huge amount of drivers, in particular for older hardware. nowadays one often has linux drivers for older hardware, for which no windows 7 or osx drivers exist. on the other hand, windows has a huge amount of drivers for modern hardware which osx and linux do not have &ndash; but mostly because the manufacturers of the hardware do not produce these drivers. to the end user, this makes no difference, but one could expect that the author mentions this somehow.<br />
well. considering how much information this article contained, a non-trivial amount is wrong or dangerously imprecise. hence, if you need information, do <i>not</i> use this article as a source.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/02/worst-article-on-operating-systems-ever-read-by-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>mar de grises.</title>
		<link>http://spielwiese.fontein.de/2009/09/02/mar-de-grises/</link>
		<comments>http://spielwiese.fontein.de/2009/09/02/mar-de-grises/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 05:58:38 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[albums]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[chile]]></category>
		<category><![CDATA[doom metal]]></category>
		<category><![CDATA[experimental music]]></category>
		<category><![CDATA[mar de grises]]></category>
		<category><![CDATA[progressive metal]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1837</guid>
		<description><![CDATA[in my post on wikipedia, i was complaining that the article about the chilenian doom metal band mar de grises has been deleted because it the band is &#8220;irrelevant&#8221;. hence, i thought it would be a good idea to write a bit about them. when writing the post on wikipedia, i re-started listening to them [...]]]></description>
			<content:encoded><![CDATA[<p>in my post on <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2009/08/11/wikipedia-pro-and-contra-and-some-related-ranting/">wikipedia</a>, i was complaining that the article about the chilenian doom metal band <a href="http://spielwiese.fontein.de/forward.php?r=http://www.myspace.com/mardegrises2">mar de grises</a> has been deleted because it the band is &ldquo;irrelevant&rdquo;. hence, i thought it would be a good idea to write a bit about them. when writing the post on wikipedia, i re-started listening to them more intensely, and in fact have been listening to their two albums <a href="http://spielwiese.fontein.de/forward.php?r=http://www.metal-archives.com/release.php%3Fid=33891">the tatterdemalion express</a> and <a href="http://spielwiese.fontein.de/forward.php?r=http://www.metal-archives.com/release.php%3Fid=186980">draining the waterheart</a> pretty intensively over the last weeks.<br />
their music is a beautiful mixture of dark, gloomy metal, intense doom, beautiful melancholic melodies. progressive elements, sometimes experimental elements, often slow, always dark. it is complex, never boring.<br />
<i>mar de grises</i> is one of the bands you should keep an eye on, as they are rising and they are good.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/09/02/mar-de-grises/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>learning programming.</title>
		<link>http://spielwiese.fontein.de/2009/08/28/learning-programming/</link>
		<comments>http://spielwiese.fontein.de/2009/08/28/learning-programming/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 20:13:03 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1832</guid>
		<description><![CDATA[while talking with a friend about learning programming, i searched for course material for the best programming course i ever had so far, namely dibo&#8217;s &#8220;programmierkurs java&#8221; (which i praised so often when it comes to this topic). while looking, i found a new website by dibo, called programmierkurs java, which features the lectures (both [...]]]></description>
			<content:encoded><![CDATA[<p>while talking with a friend about learning programming, i searched for course material for the best programming course i ever had so far, namely <a href="http://spielwiese.fontein.de/forward.php?r=http://www-is.informatik.uni-oldenburg.de/~dibo/">dibo</a>&#8217;s &ldquo;programmierkurs java&rdquo; (which i praised so often when it comes to this topic). while looking, i found a new website by dibo, called <a href="http://spielwiese.fontein.de/forward.php?r=http://www.programmierkurs-java.de/">programmierkurs java</a>, which features the lectures (both slides and video recordings!) and exercises. in case you want to learn programming and understand german well enough, take a look there!<br />
ok, so much for advertising. when taking to the friend, another topic was &ldquo;what is the right programming language to begin with?&rdquo; in this case, the canidates java and c++ were named. i would definitely go for java, even though i prefer to use c++ myself for most things i program, as java is more allergic to programming errors: if you try to access an array out of the boundaries, it will throw an exception and will not result in unexpected behaviour. moreover, it is widely available (for free!) and easy to set up, there is a huge amount of (good and bad) literature about it, it is not too far off from the real world programming languages which one might use later (in case one wants to learn more than one language, it might also be a good idea to start with something more esoteric, like functional programming). moreover, it can be used both imperatively (which is in particular useful in the beginning) and object oriented (which one shouldn&#8217;t touch too early, in my opinion).</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/08/28/learning-programming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>backups, again.</title>
		<link>http://spielwiese.fontein.de/2009/08/28/backups-again/</link>
		<comments>http://spielwiese.fontein.de/2009/08/28/backups-again/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 03:34:53 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[crypto]]></category>
		<category><![CDATA[external hard disk]]></category>
		<category><![CDATA[hard disk encryption]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1826</guid>
		<description><![CDATA[i got another external hard drive today. the main reason is that i want to encrypt my (current) backup harddisk, which requires reformatting the disk. but if i do so, i&#8217;m left with nothing but the original data on the laptop, and no backup. in case something goes terribly wrong, i&#8217;m screwed. i just created [...]]]></description>
			<content:encoded><![CDATA[<p>i got another external hard drive today. the main reason is that i want to <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Dm-crypt">encrypt</a> my (current) <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2008/09/05/backups/">backup</a> harddisk, which requires reformatting the disk. but if i do so, i&#8217;m left with nothing but the original data on the laptop, and no backup. in case something goes terribly wrong, i&#8217;m screwed. i just created an <a href="http://spielwiese.fontein.de/forward.php?r=http://embraceubuntu.com/2006/01/24/use-an-encrypted-usb-drivepartition/">encrypted partition</a> on the disk; this is really pretty easy and not much command line typing is required, in particular if everything is set up: then linux will ask me for the password as soon as i plug the usb cable in, and automatically mount it using that password. that&#8217;s how it should be. and so far, it works perfect.<br />
currently, <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Rsync">rsync</a> is mirroring my home directory onto the disk. as soon as it is done, i will copy some stuff from the other backup disk over (like my server&#8217;s backups) which i don&#8217;t have on the laptop&#8217;s harddisk (which is 180 gb smaller than each of the backup disks), and after that, my old backup disk will be reformatted as well and also filled.<br />
after that, i will deposit one of the backup drives somewhere outside my appartment: in case something goes wrong (like house burns down, someone decides to break in, &#8230;), i still have a backup somewhere. and, as it is encrypted, nobody but me can read it. (even if someone breaks in here, and steals both laptop and backup, they can&#8217;t access the data without my password. and yes, i am aware of <a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/538/">xkcd</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/08/28/backups-again/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>prince&#8217;s island park, and bow river.</title>
		<link>http://spielwiese.fontein.de/2009/08/27/princes-island-park-and-bow-river/</link>
		<comments>http://spielwiese.fontein.de/2009/08/27/princes-island-park-and-bow-river/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 07:30:19 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[daily life]]></category>
		<category><![CDATA[panoramas]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[bow river]]></category>
		<category><![CDATA[calgary]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[prince's island park]]></category>
		<category><![CDATA[telephoto lens]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1820</guid>
		<description><![CDATA[after watching shakespeare&#8217;s a midsummer night&#8217;s dream, we walked around on prince&#8217;s island park, near to the shore of the bow river. the shore area is really nice, it is green while being mostly deserted from mankind. lots of green corners, where one can hide, even though the surrounding freeways are still audible.
here are some [...]]]></description>
			<content:encoded><![CDATA[<p>after watching shakespeare&#8217;s <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2009/08/27/with-shakespeare-in-the-park/">a midsummer night&#8217;s dream</a>, we walked around on <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Prince's_Island_Park">prince&#8217;s island park</a>, near to the shore of the <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Bow_River">bow river</a>. the shore area is really nice, it is green while being mostly deserted from mankind. lots of green corners, where one can hide, even though the surrounding freeways are still audible.<br />
here are some impressions:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-01-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-02-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-03-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-04-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-05-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-06-bw.jpeg" width="444" height="98" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-07-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-08-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-09-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-10-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-11-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-12-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/p-13-bw.jpeg" width="220" height="147" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/08/27/princes-island-park-and-bow-river/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>with shakespeare in the park.</title>
		<link>http://spielwiese.fontein.de/2009/08/27/with-shakespeare-in-the-park/</link>
		<comments>http://spielwiese.fontein.de/2009/08/27/with-shakespeare-in-the-park/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 07:09:53 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[daily life]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[a midsummer night's dream]]></category>
		<category><![CDATA[calgary]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[prince's island park]]></category>
		<category><![CDATA[romeo and juliet]]></category>
		<category><![CDATA[shakespeare]]></category>
		<category><![CDATA[telephoto lens]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1807</guid>
		<description><![CDATA[on friday evening and saturday afternoon, i witnessed two performances of with shakespeare in the park, namely romeo and juliet and a midsummer night&#8217;s dream. the performances took place in prince&#8217;s island park, which i already displayed twice in this blog. both plays were near to the original text, but in a modernized setting. i [...]]]></description>
			<content:encoded><![CDATA[<p>on friday evening and saturday afternoon, i witnessed two performances of <a href="http://spielwiese.fontein.de/forward.php?r=http://www.mtroyal.ca/AboutMountRoyal/MediaRoom/FeaturedEvents/sitp/index.htm">with shakespeare in the park</a>, namely <i>romeo and juliet</i> and <i>a midsummer night&#8217;s dream</i>. the performances took place in <i>prince&#8217;s island park</i>, which i already <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2009/01/18/first-impressions-of-calgary/">displayed</a> <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2008/05/13/visiting-calgary-part-one-parks/">twice</a> in this blog. both plays were near to the original text, but in a modernized setting. i enjoyed both a lot!<br />
i did not have my camera with me while watching <i>romeo and juliet</i>, but i had it with me for <i>a midsummer night&#8217;s dream</i>. here are some impressions:</p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-01.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-01-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-02.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-02-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-03.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-03-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-04.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-04-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-05.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-05-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-06.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-06-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-07.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-07-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-08.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-08-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-09.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-09-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-10.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-10-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-11.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-11-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-12.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-12-bw.jpeg" width="220" height="147" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-13.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-13-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-14.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-14-bw.jpeg" width="147" height="220" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-15.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-15-bw.jpeg" width="147" height="220" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-16.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-16-bw.jpeg" width="220" height="147" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-17.jpeg"><img src="http://spielwiese.fontein.de/.wp/wp-content/uploads/2009/08/sitp-17-bw.jpeg" width="220" height="147" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/08/27/with-shakespeare-in-the-park/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>eating vegetarian in calgary.</title>
		<link>http://spielwiese.fontein.de/2009/08/27/eating-vegetarian-in-calgary/</link>
		<comments>http://spielwiese.fontein.de/2009/08/27/eating-vegetarian-in-calgary/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 05:47:32 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[daily life]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[calgary]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[cocktail]]></category>
		<category><![CDATA[drink]]></category>
		<category><![CDATA[the coup]]></category>
		<category><![CDATA[vegan]]></category>
		<category><![CDATA[vegetarian]]></category>
		<category><![CDATA[white oak ii]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1804</guid>
		<description><![CDATA[last saturday, i was spending the afternoon and evening with a guy from the netherlands who is vegan. hence, for lunch and dinner, we tried to find vegetarian/vegan restaurants. he brought a list from happy cow, and for lunch we decided to go to a vietnamese place called white oak ii. it features a large [...]]]></description>
			<content:encoded><![CDATA[<p>last saturday, i was spending the afternoon and evening with a guy from the netherlands who is <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Vegan">vegan</a>. hence, for lunch and dinner, we tried to find <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Vegetarianism">vegetarian</a>/vegan restaurants. he brought a list from <a href="http://spielwiese.fontein.de/forward.php?r=http://www.happycow.net/">happy cow</a>, and for lunch we decided to go to a vietnamese place called <i>white oak ii</i>. it features a large variety of vegan vietnamese and chinese food, often things which originally contain meat, but where the meat is replaced. this was really amazing. the restaurant is placed in a small vietnamese mall, not obvious to find. i definitively have to go there again.<br />
for dinner, we went to <a href="http://spielwiese.fontein.de/forward.php?r=http://www.thecoup.ca/">the coup</a>, a vegetarian place at 17th avenue. this was a bit more pricy and stylish, but also very good. a place i also have to go to at least one more time. i had a vegetarian burger there, in fact the first vegetarian burger i ever had: it was really good! as was the spiced (in the sense of chili!) iced chocolate shake (hmmmm) and a cocktail called the &ldquo;malibu barbie colada&rdquo; which, despite its funny name, tasted fantastic. for dessert, i had a piece of organic chocolate torte, which in fact is vegan.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/08/27/eating-vegetarian-in-calgary/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>dream theater, zappa plays zappa, and more.</title>
		<link>http://spielwiese.fontein.de/2009/08/27/dream-theater-zappa-plays-zappa-and-more/</link>
		<comments>http://spielwiese.fontein.de/2009/08/27/dream-theater-zappa-plays-zappa-and-more/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 05:26:08 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[concerts]]></category>
		<category><![CDATA[bigelf]]></category>
		<category><![CDATA[calgary]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[dream theater]]></category>
		<category><![CDATA[pain of salvation]]></category>
		<category><![CDATA[prog]]></category>
		<category><![CDATA[prog metal]]></category>
		<category><![CDATA[scale the summit]]></category>
		<category><![CDATA[zappa plays zappa]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1797</guid>
		<description><![CDATA[last week tuesday, i attended the first non-classic concert this year, namely the calgary instantiation of the progressive nation tour 2009, featuring dream theater, zappa plays zappa, bigelf and scale the summit. originally, pain of salvation and another band should have played instead of bigelf and scale the summit, but unfortunately they had to pull [...]]]></description>
			<content:encoded><![CDATA[<p>last week tuesday, i attended the first non-classic concert this year, namely the calgary instantiation of the <a href="http://spielwiese.fontein.de/forward.php?r=http://dreamtheater.net/tourdates.php#pn09usa">progressive nation tour 2009</a>, featuring <a href="http://spielwiese.fontein.de/forward.php?r=">dream theater</a>, <a href="http://spielwiese.fontein.de/forward.php?r=http://www.zappaplayszappa.com/">zappa plays zappa</a>, <a href="http://spielwiese.fontein.de/forward.php?r=http://www.bigelf.com/">bigelf</a> and <a href="http://spielwiese.fontein.de/forward.php?r=http://www.scalethesummit.com/">scale the summit</a>. originally, <a href="http://spielwiese.fontein.de/forward.php?r=http://www.painofsalvation.com/">pain of salvation</a> and another band should have played instead of <i>bigelf</i> and <i>scale the summit</i>, but unfortunately they had to <a href="http://spielwiese.fontein.de/forward.php?r=http://www.blog.painofsalvation.com/%3Fp=818">pull out</a> due to some side effects of the financial crisis. too bad, i would really have liked to see <i>pain of salvation</i>.<br />
i decided to spare my energy in particular for the last two bands, and hence skipped <i>scale the summit</i>. the announced timing for the conference was perfect, and so i arrived directly when <i>bigelf</i> began to play. they were ok, but i was more waiting for the next band. and the very bad part of the evening started during their gig (maybe even before, but i wasn&#8217;t there), namely some <i>[insert your favourite curse word here]</i> potheads started smoking weed. it was not as bad as <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2008/05/11/opeth-three-dream-theater-and-one-more/">last year</a>, but still very annoying. why can&#8217;t these idiots smoke somewhere where they don&#8217;t annoy anyone? at least there was no moshpit and the crowd&#8217;s density was really pleasant.<br />
after hearing so many good things about them, i was really happy to finally see <i>zappa plays zappa</i>, which is not just another <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Frank_Zappa">frank zappa</a> cover band, but founded and lead by one of zappas sons. (not that this makes a difference to me, as i have no comparism of <i>zappa plays zappa</i> to other frank zappa cover bands.) i really enjoyed their performance &ndash; even though the potheads annoyed the hell out of me.<br />
finally, <i>dream theater</i> entered the stage. they played several songs from their new album, but as usual also a lot older songs, everything including some improvisation and extensions, and several solo performances between the songs.<br />
the concert was really good, even though the potheads repeatedly tried to ruin the whole thing to me. the only way to make it better would be to throw the potheads out and re-add pain of salvation (and maybe reduce to three bands, all of which can play a bit longer in that case).</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/08/27/dream-theater-zappa-plays-zappa-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
