<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">

<channel>
	<title>Fabian Moser &#187; Freizeit</title>
	<atom:link href="http://fabianmoser.at/kategorie/freizeit/feed/" rel="self" type="application/rss+xml" />
	<link>http://fabianmoser.at</link>
	<description>&#34;as simple as possible, but not simpler&#34;</description>
	<lastBuildDate>Thu, 26 Jan 2012 13:19:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/at/</creativeCommons:license>		<item>
		<title>Ausflug an den &#8220;Fuß der Berge&#8221;</title>
		<link>http://fabianmoser.at/blog/2011/10/10/ausflug-an-den-fus-der-berge/</link>
		<comments>http://fabianmoser.at/blog/2011/10/10/ausflug-an-den-fus-der-berge/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 17:24:53 +0000</pubDate>
		<dc:creator>Fabian Moser</dc:creator>
				<category><![CDATA[Ausflüge]]></category>
		<category><![CDATA[Alba]]></category>
		<category><![CDATA[Italien]]></category>
		<category><![CDATA[Trüffel]]></category>

		<guid isPermaLink="false">http://fabianmoser.at/?p=1138</guid>
		<description><![CDATA[Auch unter dem Namen Piemont bekannt. Genauer gesagt nach Alba, La Morra, Cherusco und Asti (in dieser Reihenfolge). Hier ein Gruß vom 81. Trüffelmarkt in Alba:]]></description>
			<content:encoded><![CDATA[<p>Auch unter dem Namen Piemont bekannt. Genauer gesagt nach Alba, La Morra, Cherusco und Asti (in dieser Reihenfolge). Hier ein Gruß vom 81. Trüffelmarkt in Alba:</p>
<p><a href="http://www.flickr.com/photos/fabiamo/6230913343/" title="img_1319 by fabiamo, on Flickr"><img class="colorbox-1138"  src="http://farm7.static.flickr.com/6033/6230913343_5a5e94d4b0_z.jpg" width="480" height="640" alt="img_1319"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://fabianmoser.at/blog/2011/10/10/ausflug-an-den-fus-der-berge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More parrallel programming</title>
		<link>http://fabianmoser.at/blog/2011/08/19/more-parrallel-programming/</link>
		<comments>http://fabianmoser.at/blog/2011/08/19/more-parrallel-programming/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 20:01:57 +0000</pubDate>
		<dc:creator>Fabian Moser</dc:creator>
				<category><![CDATA[Programmieren]]></category>
		<category><![CDATA[Concurrency]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://fabianmoser.at/?p=1114</guid>
		<description><![CDATA[As a faithful follower of the Fedora Planet, today I stumbled upon a post about parallel programming in Python. Having made similar experiences myself, I would like to add another alternative for parallel programming in Python. I could have posted &#8230; <a href="http://fabianmoser.at/blog/2011/08/19/more-parrallel-programming/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As a faithful follower of the <a href="http://planet.fedoraproject.org/">Fedora Planet</a>, today I stumbled upon a <a href="http://blog.pingoured.fr/index.php?post/2011/08/19/Parrallel-programming-in-python">post about parallel programming in Python</a>. Having made similar experiences myself, I would like to add another alternative for parallel programming in Python. I could have posted this in the comments of the original post, but this way the formatting is nicer.</p>
<p>My point is, that <a href="http://www.parallelpython.com/">Parallel Python</a> is a really nice library, but the functionality (at least at the level demonstrated here) is also provided by <a href="http://docs.python.org/library/multiprocessing.html">the <code>multiprocessing</code> module included with Python</a>.</p>
<p>Here is my slightly modified implementation of the same program:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/python</span>
&nbsp;
<span style="color: #483d8b;">&quot;&quot;&quot;
Another asynchronous python example
&quot;&quot;&quot;</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">import</span> multiprocessing
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">time</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">def</span> background_stuff<span style="color: black;">&#40;</span>num<span style="color: black;">&#41;</span>:
  <span style="color: #dc143c;">time</span>.<span style="color: black;">sleep</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">5</span><span style="color: black;">&#41;</span>
  <span style="color: #ff7700;font-weight:bold;">return</span> <span style="color: #483d8b;">&quot;%s I'm done&quot;</span> <span style="color: #66cc66;">%</span> num
&nbsp;
<span style="color: #ff7700;font-weight:bold;">if</span> __name__ == <span style="color: #483d8b;">&quot;__main__&quot;</span>:
    <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;Start at:&quot;</span> , <span style="color: #dc143c;">time</span>.<span style="color: black;">asctime</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">time</span>.<span style="color: black;">localtime</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>
    pool = multiprocessing.<span style="color: black;">Pool</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
&nbsp;
    <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;Start doing something&quot;</span>
    it = pool.<span style="color: black;">imap</span><span style="color: black;">&#40;</span>background_stuff, <span style="color: black;">&#91;</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">1</span>,<span style="color: black;">&#41;</span>, <span style="color: black;">&#40;</span><span style="color: #ff4500;">2</span>,<span style="color: black;">&#41;</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span>
&nbsp;
    <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;Do something...&quot;</span>
    <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot; ... do something else...&quot;</span>
&nbsp;
    <span style="color: #ff7700;font-weight:bold;">print</span> it.<span style="color: black;">next</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
    <span style="color: #ff7700;font-weight:bold;">print</span> it.<span style="color: black;">next</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
&nbsp;
    <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;End at:&quot;</span>, <span style="color: #dc143c;">time</span>.<span style="color: black;">asctime</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">time</span>.<span style="color: black;">localtime</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://fabianmoser.at/blog/2011/08/19/more-parrallel-programming/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mont-Blanc</title>
		<link>http://fabianmoser.at/blog/2011/06/13/mont-blanc/</link>
		<comments>http://fabianmoser.at/blog/2011/06/13/mont-blanc/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 21:13:17 +0000</pubDate>
		<dc:creator>Fabian Moser</dc:creator>
				<category><![CDATA[Ausflüge]]></category>

		<guid isPermaLink="false">http://fabianmoser.at/?p=1013</guid>
		<description><![CDATA[Gestern auf 3842 m auf dem Aiguille du Midi mit dem Mont Blanc im Hintergrund.]]></description>
			<content:encoded><![CDATA[<p>Gestern auf 3842 m auf dem <a href="http://de.wikipedia.org/wiki/Aiguille_du_Midi">Aiguille du Midi</a> mit dem Mont Blanc im Hintergrund.</p>
<div class="g3client_wrapper"><div class="g3client_singleview"><a href="http://fabianmoser.at/gallery3/var/resizes/fabian/Aiguille.jpg?m=1307999035"><img class="colorbox-1013"  src="http://fabianmoser.at/gallery3/var/resizes/fabian/Aiguille.jpg?m=1307999035" alt=""></a><p class="g3client_singletitle">Aiguille</p></div></div>
]]></content:encoded>
			<wfw:commentRss>http://fabianmoser.at/blog/2011/06/13/mont-blanc/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Go C10k</title>
		<link>http://fabianmoser.at/blog/2011/05/22/go-c10k/</link>
		<comments>http://fabianmoser.at/blog/2011/05/22/go-c10k/#comments</comments>
		<pubDate>Sun, 22 May 2011 11:22:52 +0000</pubDate>
		<dc:creator>Fabian Moser</dc:creator>
				<category><![CDATA[Programmieren]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[App Engine]]></category>
		<category><![CDATA[Comet]]></category>
		<category><![CDATA[Erlang]]></category>
		<category><![CDATA[Golang]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://fabianmoser.at/?p=956</guid>
		<description><![CDATA[Inspired by (admittedly &#8220;ancient&#8221;) part 1 of a very instructive post series by Richard Jones and while waiting for Channels API support in Google&#8217;s new Go App Engine, I decided to make a quick port of Richard&#8217;s mochiconntest_web Erlang module &#8230; <a href="http://fabianmoser.at/blog/2011/05/22/go-c10k/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Inspired by (admittedly &#8220;ancient&#8221;) <a href="http://www.metabrew.com/article/a-million-user-comet-application-with-mochiweb-part-1">part 1 of a very instructive post series by Richard Jones</a> and while <a href="http://groups.google.com/group/google-appengine-go/browse_thread/thread/dee6bf17eaf9d322/340d8c0a1c419097?lnk=gst&amp;q=channels&amp;fwc=1">waiting for Channels API support</a> in <a href="http://code.google.com/intl/de-DE/appengine/docs/go/overview.html">Google&#8217;s new Go App Engine</a>, I decided to make a quick port of Richard&#8217;s <code>mochiconntest_web</code> Erlang module to Go.</p>
<p>Source first, discussion later:</p>

<div class="wp_syntax"><div class="code"><pre class="golang" style="font-family:monospace;">package main
&nbsp;
import (
	&amp;quot;fmt&amp;quot;
	&amp;quot;http&amp;quot;
	&amp;quot;log&amp;quot;
	&amp;quot;time&amp;quot;
)
&nbsp;
func main() {
	http.HandleFunc(&amp;quot;/test/&amp;quot;, feed)
	if err := http.ListenAndServe(&amp;quot;127.0.0.1:8080&amp;quot;, nil); err != nil {
		log.Fatal(err)
	}
}
&nbsp;
func feed(w http.ResponseWriter, r *http.Request) {
	ch := time.Tick(1000000000)
	fmt.Fprintf(w, &amp;quot;Goconntest welcomes you! Your Id: %s\n&amp;quot;, r.URL.String())
	w.(http.Flusher).Flush()
	for N := 1; ; N++ {
		&amp;lt;-ch
		n, err := fmt.Fprintf(w, &amp;quot;Chunk %d for id %s\n&amp;quot;, N, r.URL.String())
		if err != nil {
			log.Print(err)
			break
		} else if n == 0 {
			log.Print(&amp;quot;Nothing written&amp;quot;)
			break
		}
		w.(http.Flusher).Flush()
	}
}</pre></div></div>

<p>Of course this could be stripped down by ignoring (i.e. not handling) errors, but IMHO this doesn&#8217;t fall behind the Erlang implementation in terms of beauty; well, my sense of &#8220;beauty&#8221; anyway.</p>
<p>You might have noted, that I&#8217;m not using the <code>time.Sleep</code> function, but instead a seemingly &#8220;artificial&#8221; construct with a <code>time.Ticker</code> channel. This internally allows for a multiplexing of the Goroutines spawned by the <code>http</code> module to only a few system threads, scheduling the network operations via <code>epoll</code>.</p>
<p><strong>Update 2011-05-23</strong>: Removed usage of ChunkedWriter from Go source according to a <a href="http://groups.google.com/group/google-appengine-go/t/f3ba11897b368653">hint from Brad Fitzpatrick</a>.</p>
<p><strong>Update 2011-05-25</strong>: The flushing by <code>w.(http.Flusher).Flush()</code> is necessary to make sure that the chunks get written in-time. Thanks to Brad Fitzpatrick for pointing this out.</p>
<p>For the client side, I used Richard&#8217;s <code>floodtest.erl</code> module, only removing the <code>{version, 1.1}</code> line from the <code>http:request</code>, because that option doesn&#8217;t seem to be supported by Erlang R14B.</p>
<p>The result from my <code>Intel(R) Core(TM) i7 CPU M 620 @ 2.67GHz</code>:<br />
<a href="http://fabianmoser.at/wp-content/blogs.dir/1/files/2011/05/goconntest-e1306061379106.png"><img class="alignleft size-large wp-image-966 colorbox-956" title="goconntest" src="http://fabianmoser.at/wp-content/blogs.dir/1/files/2011/05/goconntest-e1306061379106-1024x625.png" alt="" width="640" height="390" /></a></p>
<p>The RSS usage of <code>goconntest_web</code> converges at 321MB i.e. roughly 32KB per connection (13KB less than the ad-hoc Erlang implementation). Also note, that Go indeed spawned only 4 threads on this quad-core machine to handle the 10k open connections.</p>
<p>The only disappointment was the rather high CPU usage. Although I&#8217;m aware that the screen-shot is far from any acceptable benchmark measure, still 1.5h CPU time seems to be more than &#8220;practically nothing&#8221; Richard reported for the Erlang implementation.</p>
<p><strong>Update 2011-05-25</strong>: While testing the new code above, I logged the process statistics with <code>pidstat</code> and then made the following plot (<a href="http://fabianmoser.at/wp-content/blogs.dir/1/files/2011/05/goconntest_web_plotstats.py">Python script</a>, <a href="http://fabianmoser.at/wp-content/blogs.dir/1/files/2011/05/goconntest_web_stats.log_.gz">data file</a>):<br />
<a href="http://fabianmoser.at/wp-content/blogs.dir/1/files/2011/05/goconntest_web-pidstat-small.png"><img class="colorbox-manual" title="goconntest_web-pidstat-small" src="http://fabianmoser.at/wp-content/blogs.dir/1/files/2011/05/goconntest_web-pidstat-small.png" alt="" width="600" height="450" /></a><br />
Mind the logarithmic time scale! The dashed line indicates the ramp-up of opened connections to 10k (theoretical, not measured). The colorful background is a stacked plot of the per-thread CPU usage with one color per kernel thread-id. Obviously Go spawns more threads than there are cores. Finally, the thick black line is the resident memory usage, which seems to converge much later than the CPU usage.</p>
<p>Thanks for reading. Maybe, if the App Engine Channels API takes long enough, I will continue my investigations.</p>
]]></content:encoded>
			<wfw:commentRss>http://fabianmoser.at/blog/2011/05/22/go-c10k/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse CDT crash</title>
		<link>http://fabianmoser.at/blog/2011/04/25/eclipse-cdt-crash/</link>
		<comments>http://fabianmoser.at/blog/2011/04/25/eclipse-cdt-crash/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 20:28:00 +0000</pubDate>
		<dc:creator>Fabian Moser</dc:creator>
				<category><![CDATA[Programmieren]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[CDT]]></category>
		<category><![CDATA[Crash]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[HOWTO]]></category>

		<guid isPermaLink="false">http://fabianmoser.at/?p=927</guid>
		<description><![CDATA[If you&#8217;re using the Eclipse CDT for C++ development and experience crashes immediately after loading the workspace (during indexing) on Linux (I saw it on Fedora and openSUSE), you should use the workaround suggested in the corresponding Bugzilla entry. Essentially &#8230; <a href="http://fabianmoser.at/blog/2011/04/25/eclipse-cdt-crash/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using the Eclipse CDT for C++ development and experience crashes immediately after loading the workspace (during indexing) on Linux (I saw it on Fedora and openSUSE), you should use the workaround suggested in the <a href="https://bugzilla.redhat.com/show_bug.cgi?id=647737#c31" target="_blank">corresponding Bugzilla entry</a>. Essentially you have to add the line</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">-XX:-UseCompressedOops</pre></div></div>

<p> to your <code>eclipse.ini</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fabianmoser.at/blog/2011/04/25/eclipse-cdt-crash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP-PhotoNav Release 0.7</title>
		<link>http://fabianmoser.at/blog/2010/08/28/wp-photonav-release-0-7/</link>
		<comments>http://fabianmoser.at/blog/2010/08/28/wp-photonav-release-0-7/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 13:13:00 +0000</pubDate>
		<dc:creator>Fabian Moser</dc:creator>
				<category><![CDATA[Programmieren]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Colorbox]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP-PhotoNav]]></category>

		<guid isPermaLink="false">http://www.fabianmoser.at/?p=758</guid>
		<description><![CDATA[Today, I released version 0.7 of my WP-PhotoNav WordPress plugin. This version includes two new features that have been wished by users: Support for Colorbox (similar to LightBox) via the new popup option. Support for automatic scrolling via the animate &#8230; <a href="http://fabianmoser.at/blog/2010/08/28/wp-photonav-release-0-7/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today, I released version 0.7 of my WP-PhotoNav WordPress plugin. This version includes two new features that have been wished by users:</p>
<ul>
<li>Support for Colorbox (similar to LightBox) via the new <code>popup</code> option.</li>
<li>Support for automatic scrolling via the <code>animate</code> option.</li>
</ul>
<p>If you are yourself a WordPress user and interested in my plugin, visit the <a href="/wp-photonav">plugin homepage</a> on this website to see all features in action or the <a href="http://wordpress.org/extend/plugins/wp-photonav/">download page at WordPress.org</a>. If you are interested in what other improvements I&#8217;m planning, you can always look it up on the <a href="https://redmine.fabianmoser.at/projects/wp-photonav/roadmap">roadmap</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fabianmoser.at/blog/2010/08/28/wp-photonav-release-0-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pitigliano</title>
		<link>http://fabianmoser.at/blog/2010/07/18/pitigliano/</link>
		<comments>http://fabianmoser.at/blog/2010/07/18/pitigliano/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 21:51:05 +0000</pubDate>
		<dc:creator>Fabian Moser</dc:creator>
				<category><![CDATA[Reisen]]></category>

		<guid isPermaLink="false">http://www.fabianmoser.at/?p=713</guid>
		<description><![CDATA[Ein kleiner Ausflug während meines Sommerurlaubs führte mich in eine der ältesten Städte Italiens. <a href="http://fabianmoser.at/blog/2010/07/18/pitigliano/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ein kleiner Ausflug während meines Sommerurlaubs führte mich in eine der ältesten Städte Italiens.<br />
<div class="photonav" id="1b2a93a99e02127c">
    <div class="container" style="width: auto; height: 400px;">
        <div class="content" style="background-image: url(/wp-content/blogs.dir/1/files/2010/07/Pitigliano.jpg);">
            <img id="photonav-image" class="image colorbox-off" src="/wp-content/blogs.dir/1/files/2010/07/Pitigliano.jpg">
        </div>
    </div>
    <div style="display: none;">
        <div class="photonav popup">
            <div class="container" style="display: block; overflow: hidden;">
                <div class="content" style="background-image: url(/wp-content/blogs.dir/1/files/2010/07/Pitigliano.jpg);">
                    <img id="photonav-image" class="image colorbox-off" src="/wp-content/blogs.dir/1/files/2010/07/Pitigliano.jpg">
                </div>
            </div>
        </div>
    </div>
    <script type="text/javascript">jQuery(document).ready(function(){jQuery("#1b2a93a99e02127c").photoNav({id:"1b2a93a99e02127c",mode:"move",popup:"none",animate:"0"});});</script>
</div></p>
]]></content:encoded>
			<wfw:commentRss>http://fabianmoser.at/blog/2010/07/18/pitigliano/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samstagsausflug nach Lyon</title>
		<link>http://fabianmoser.at/blog/2010/04/14/samstagsausflug-nach-lyon/</link>
		<comments>http://fabianmoser.at/blog/2010/04/14/samstagsausflug-nach-lyon/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 19:55:06 +0000</pubDate>
		<dc:creator>Fabian Moser</dc:creator>
				<category><![CDATA[Ausflüge]]></category>
		<category><![CDATA[Fotos]]></category>
		<category><![CDATA[Lyon]]></category>

		<guid isPermaLink="false">http://fabianmoser.at/?p=607</guid>
		<description><![CDATA[Letzten Samstag war ich zum ersten Mal in Lyon. Zum Glück wurde ich von zwei Lyon-Kennern, Natascha und Dory, geführt:]]></description>
			<content:encoded><![CDATA[<p>Letzten Samstag war ich zum ersten Mal in Lyon. Zum Glück wurde ich von zwei Lyon-Kennern, Natascha und Dory, geführt:</p>
<p><a href="http://www.flickr.com/photos/fabiamo/4520963485/" title="Lyon - Pont de la Guillotière by fabiamo, on Flickr"><img class="colorbox-607"  src="http://farm3.static.flickr.com/2694/4520963485_cb7c3c0fe9.jpg" width="500" height="334" alt="Lyon - Pont de la Guillotière" /></a></p>
<p><a href="http://www.flickr.com/photos/fabiamo/4521599280/" title="Lyon - Place Bellecour by fabiamo, on Flickr"><img class="colorbox-607"  src="http://farm5.static.flickr.com/4001/4521599280_03084ec2ca.jpg" width="500" height="334" alt="Lyon - Place Bellecour" /></a></p>
<p><a href="http://www.flickr.com/photos/fabiamo/4521600314/" title="Lyon - Rhône Promenade by fabiamo, on Flickr"><img class="colorbox-607"  src="http://farm3.static.flickr.com/2752/4521600314_c45dd31e4c.jpg" width="500" height="334" alt="Lyon - Rhône Promenade" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://fabianmoser.at/blog/2010/04/14/samstagsausflug-nach-lyon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kuppel des Petersdoms in Rom</title>
		<link>http://fabianmoser.at/blog/2009/11/25/kuppel-des-petersdom/</link>
		<comments>http://fabianmoser.at/blog/2009/11/25/kuppel-des-petersdom/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 14:51:43 +0000</pubDate>
		<dc:creator>Fabian Moser</dc:creator>
				<category><![CDATA[Reisen]]></category>

		<guid isPermaLink="false">http://fabianmoser.at/?p=493</guid>
		<description><![CDATA[Dieser Artikel zeigt ein auf lange Hand vorbereitetes Anwendungsbeispiel meines WordPress Plugins:]]></description>
			<content:encoded><![CDATA[<p>Dieser Artikel zeigt ein auf lange Hand vorbereitetes Anwendungsbeispiel meines WordPress Plugins:</p>
<div class="photonav" id="fc84727ac1059a0c">
    <div class="container" style="width: 400px; height: 400px;">
        <div class="content" style="background-image: url(/files/2009/11/Kuppel.jpg);">
            <img id="photonav-image" class="image colorbox-off" src="/files/2009/11/Kuppel.jpg">
        </div>
    </div>
    <div style="display: none;">
        <div class="photonav popup">
            <div class="container" style="display: block; overflow: hidden;">
                <div class="content" style="background-image: url(/files/2009/11/Kuppel.jpg);">
                    <img id="photonav-image" class="image colorbox-off" src="/files/2009/11/Kuppel.jpg">
                </div>
            </div>
        </div>
    </div>
    <script type="text/javascript">jQuery(document).ready(function(){jQuery("#fc84727ac1059a0c").photoNav({id:"fc84727ac1059a0c",mode:"move",popup:"none",animate:"0"});});</script>
</div>
]]></content:encoded>
			<wfw:commentRss>http://fabianmoser.at/blog/2009/11/25/kuppel-des-petersdom/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wort zum Montag</title>
		<link>http://fabianmoser.at/blog/2009/10/05/wort-zum-sonntag/</link>
		<comments>http://fabianmoser.at/blog/2009/10/05/wort-zum-sonntag/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 18:27:24 +0000</pubDate>
		<dc:creator>Fabian Moser</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Spielen]]></category>

		<guid isPermaLink="false">http://fabianmoser.at/?p=465</guid>
		<description><![CDATA[Jeder hat vermutlich seine eigene Strategie im Lauf eines langen Arbeitstages im Büro genügend Flüssigkeit aufzunehmen. Ich hatte letzte Woche einfach genug von dem Wasser aus dem Wasserspender und habe im Supermarkt nach Abwechslung gesucht. Dort bin ich auf etwas &#8230; <a href="http://fabianmoser.at/blog/2009/10/05/wort-zum-sonntag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 278px"><a href="http://picasaweb.google.com/lh/photo/HUJ95Z6XQdubLf1sQVvRxA?feat=embedwebsite"><img class="colorbox-465"  title="Geschmackgeber" src="http://lh5.ggpht.com/_hO4rbrxGsSE/SsoyKhtQuCI/AAAAAAAADNY/3ivI0dnu9Oc/s400/DSC_0021.JPG" alt="Süßholzkonzentrat mit Minzgeschmack: 15 Tropfen genügen für ein Glas" width="268" height="400" /></a><p class="wp-caption-text">Süßholzkonzentrat mit Minzgeschmack: 15 Tropfen genügen für ein Glas</p></div>
<p>Jeder hat vermutlich seine eigene Strategie im Lauf eines langen Arbeitstages im Büro genügend Flüssigkeit aufzunehmen. Ich hatte letzte Woche einfach genug von dem Wasser aus dem Wasserspender und habe im Supermarkt nach Abwechslung gesucht.</p>
<p>Dort bin ich auf etwas gestoßen, das es in Österreich nicht gibt oder das mir jedenfalls noch nie aufgefallen ist: Lakritzkonzentrat. Mit Minzgeschmack. Wie ich zugeben muss, wusste ich zum Zeitpunkt des Kaufs nicht, was Réglisse ist, denn eigentlich bin ich kein Lakritzeliebhaber. Aber das Getränk hat mich positiv überrascht. Ein paar Tropfen des zuckerfreien Konzentrats pro Glas genügen und geben einen leicht süßlichen Geschmack mit einem Hauch Bitterkeit gemeinsam mit einem Minzton. Alles in allem eine angenehme Abwechslung zum reinen Wasser.</p>
<p>Themenwechsel: Folgendes Zitat ist mir letzte Woche in den Nachrichten positiv aufgefallen. Ich habe es aus einem Interview zum Thema Computerspiele:</p>
<blockquote><p><em>Das Wort „Aggression“ ist so interessant. Es kann sowohl eine positive Durchsetzung von Eigeninteressen sein, aber auch bedeuten, dass man zu weit geht und feindlich wird. Aber oft wird in Studien über Mediengewalt Aggression so benutzt, als wäre es wortgleich mit feindlichen Absichten, der Absicht zu verletzen. Forscher sollten sehr sorgfältig definieren, was sie mit Aggression meinen, sofern sie das Wort verwenden. Sonst wird das zu einem Problem.</em> Cheryl K. Olson auf <a href="http://diepresse.com/home/techscience/hightech/konsolen/512170/index.do" target="_blank">DiePresse.com</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://fabianmoser.at/blog/2009/10/05/wort-zum-sonntag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

