<?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>Sebastian Schaffert</title>
	<atom:link href="http://www.schaffert.eu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.schaffert.eu</link>
	<description>Homepage of Sebastian Schaffert</description>
	<lastBuildDate>Mon, 19 Dec 2011 16:54:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Goals of Reasoning for the Semantic Web in Practice</title>
		<link>http://www.schaffert.eu/2011/09/01/goals-of-reasoning-for-the-semantic-web-in-practice/</link>
		<comments>http://www.schaffert.eu/2011/09/01/goals-of-reasoning-for-the-semantic-web-in-practice/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 11:33:27 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=616</guid>
		<description><![CDATA[I recently summarised the different means of reasoning on the Semantic Web in a discussion on the Apache Stanbol mailinglist. I thought I might also share my views publicly in my blog I think that large parts of the Semantic Web community lost track of the actual (practical) goals of reasoning. Please think of actual, [...]]]></description>
			<content:encoded><![CDATA[<p>I recently summarised the different means of reasoning on the Semantic Web in a discussion on the Apache Stanbol mailinglist. I thought I might also share my views publicly in my blog <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>I think that large parts of the Semantic Web community lost track of the actual (practical) goals of reasoning. Please think of actual, practical use cases. The actual kind of reasoning employed is then derived from this goal &#8211; not the other way round. In the following, I summarise the three different possible approaches to reasoning:</p>
<p><strong>schema validation</strong></p>
<p>This is the typical reasoning applied in the Semantic Web domain. I always found its usefulness very limited and therefore this is only mildly interesting to me. How often will you really need to check whether a model is consistent? Usually only during development, if at all. Even worse: when operating on the World Wide Web you will *inevitably* have inconsistencies, so it is better to simply live with them and not care too much about consistent schemas, it will only drive you crazy (see below). <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>For schema validation, you will probably use some of the existing OWL and description logics reasoners like Hermit, FaCT, Racer, &#8230; but be aware that they are all rather complex and inefficient when dealing with bigger datasets, as you identified as a problem yourself.</p>
<p><strong>instance classification</strong></p>
<p>Instance classification means, informmaly, to figure out the type of a resource based on the existance of a schema or ontology for the data. Now this is at least *a bit* more interesting than schema validation, because it provides you with actual new information that you can make use of. It allows you to treat a Blog Post as a Document, a Meeting as a Location, etc. On the other hand, every programmer can implement you this kind of reasoning in a couple of hours in Java without any need of a reasoner.</p>
<p>For instance classification you can in the most simple case use an RDFS reasoner (very efficient). OWL reasoners are obviously also capable of this, but usually in practice not much better than RDFS reasoners so it is not worth the added complexity. Instance classification can furthermore be considered a specific case of implicit/rule-based knowledge.</p>
<p><strong>implicit/rule-based knowledge</strong></p>
<p>In this case, you extend your factual, static knowledge base (i.e. triples) by rules that represent implicit knowledge (e.g. &#8220;if a meeting M is located in a place P and P has coordinates X and Y, then M also has coordinates X and Y). This kind of reasoning is the classical way of representing knowledge in knowledge based systems and adds, in my opinion, real additional value to the information, because much human knowledge is actually rule-based. I consider this kind of reasoning the most interesting in an information system. Rule-based reasoners can cover instance classification as a special case and with a few extensions even most parts of consistency checking.</p>
<p>Rule-based reasoning is currently still a bit esoteric in the Semantic Web domain (Jena only uses it for implementing RDFS/OWL reasoning), as the reasoning topic has been &#8220;hijacked&#8221; by the Description Logics people. I often criticised this because of its impracticality, but noone would really listen <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  There is the RuleML initiative which resulted in the specification of SWRL, but SWRL is seen as an extension of DL reasoning and thus suffers from the inefficiency of these reasoners. Outside the Semantic Web, the most successful rule-based reasoning system is probably Prolog and Datalog, both highly efficient systems but unfortunately not really present in the Java and RDF world.</p>
<p>Inside the &#8220;Linked Media Framework&#8221;, which we intend to integrate with Apache Stanbol, I have implemented a Datalog-style rule-based reasoner over RDF triples that can be evaluated very efficiently (see the link I sent above for the specification). Even though this reasoner has a quite restricted expressivity, it is still sufficient to cover many useful scenarios.</p>
<p><strong> On the usefulness of consistency checking for the Semantic Web</strong></p>
<p><em>1. Why do logics people care about consistency?</em></p>
<p>The whole topic of consistency checking is rooted in classical logics. It is founded in the &#8220;ex falsum quodlibet&#8221; rule of first order predicate logic, which basically says &#8220;if you have an inconsistency in your model, you can derive everything&#8221;. Maybe you still know the rule from your logics lectures <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>&#8220;false =&gt; A&#8221; is equivalent to &#8220;not false or A&#8221; is equivalent to &#8220;true&#8221;, regardless of A.</p>
<p>For example, in a strictly classical model sense, if you have a knowledge base saying &#8220;the car is red&#8221; and &#8220;the car is green&#8221; and &#8220;green is not red&#8221;, then you could derive that &#8220;the moon is made of green cheese and inhabited by small fur balls constantly discussing about how to best cook spaghetti&#8221;. Which is of course completey stupid, but completely valid in classical logic.</p>
<p>In a model in classical logics, this is a severe problem, because it means that you cannot derive anything useful at all even if you have just a small inconsistency.</p>
<p><em>2. Why is inconsistency irrelevant in many cases?</em></p>
<p>Inconsistency is only a problem in the ideal world of classical logics. Real-world implementations will never have the same kind of problems described above, how should they get the idea that the moon is made of green cheese based on the facts that the car is green and red at the same time? Software implementations are maybe constructive, but based on existing facts and not making up facts out of the blue sky.</p>
<p>The worst case that can happen is that the software will show some error behaviour. Instead of trying to enforce consistency (which in many cases you cannot), one challenge is to isolate the error as much as possible and keep it from spreading. Another challenge is to explain to the user why some unexpected behaviour takes place and how she can prevent it from happening.</p>
<p>The rule-based reasoner implemented in the LMF is completely ignorant to inconsistencies. It does not care at all about them. If you say the car is red and the car is green, then it will maybe derive that it should be tagged with &#8220;green&#8221; and with &#8220;red&#8221;. The error spreads maybe a bit, but the reasoner will never claim that the moon is made of green cheese. But maybe you were even right that the car is red and green at the same time (striped car)?</p>
<p>The rule-based reasoner implemented in the LMF will also display you explanations why it has inferred certain knowledge. If the car is tagged with red and tagged with green and you as the user wonder how this could be, you can hover the mouse over the tag and the reasoner will explain you that this is because someone said the car is green and someone said the car is red.</p>
<p><em>3. Why is dealing with inconsistency even desirable?</em></p>
<p>The world is full of inconsistencies. And the Web in particular. Neglecting this is the number one problem of the Semantic Web DL community. Accepting this is the number one success factor of the Linked Data initiative. Why is the Web so full of inconsistencies?</p>
<ul>
<li>people can have differing opinions about the world: you say &#8220;it is cold&#8221;, I say &#8220;it is warm&#8221;, and we are both right</li>
<li>different cultural conceptions: Spanish has one word for &#8220;snow&#8221;, Icelandic has 16 different words for &#8220;snow&#8221;</li>
<li>uncertainties: most circumstances do not fit into the ideal world of logics because of unknown or uncertain knowledge; a document might be concerned with a topic only to 30%, or the Stanbol entity recognition might only have a confidence of &#8220;15%&#8221; that &#8220;San Juan&#8221; is a person, &#8220;30%&#8221; that it is a city, &#8230; ; if you say &#8220;all ravens are black&#8221;, this is entirely based on observation and not on fact, there might be a white raven somewhere, you just don&#8217;t know it</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2011/09/01/goals-of-reasoning-for-the-semantic-web-in-practice/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>KiWi at ESTC2010 and Vienna Semantic Web Winter Meetup</title>
		<link>http://www.schaffert.eu/2010/12/06/kiwi-at-estc2010-and-vienna-semantic-web-winter-meetup/</link>
		<comments>http://www.schaffert.eu/2010/12/06/kiwi-at-estc2010-and-vienna-semantic-web-winter-meetup/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 10:53:02 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=600</guid>
		<description><![CDATA[Last week was another milestone in the ongoing KiWi dissemination activities: the KiWi, John, Thomas and I went to Vienna by car to present the KiWi system and demo in the Vienna Semantic Web Winter Meetup to Semantic Web developers and then at the ESTC2010 to business oriented people. The Semantic Web Winter Meetup took [...]]]></description>
			<content:encoded><![CDATA[<p>Last week was another milestone in the ongoing KiWi dissemination activities: the KiWi, John, Thomas and I went to Vienna by car to present the KiWi system and demo in the Vienna Semantic Web Winter Meetup to Semantic Web developers and then at the ESTC2010 to business oriented people.</p>
<p>The <strong>Semantic Web Winter Meetup</strong> took place on 1st December at a nice location for cultural events. KiWi was sponsoring the event, and we had both, a KiWi presentation there and a stand where Thomas could show the KiWi system in action. About 60 people attended, and since the meetup was co-located with ESTC and other meetings, there were quite a number of international attendees as well. The picture shows Andreas Blumauer, myself and Leo Sauermann as the three speakers at the end of the event:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101201-2016-05.jpg"><img class="aligncenter size-full wp-image-603" title="facebook-20101201-2016-05" src="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101201-2016-05.jpg" alt="Andreas, me and Leo after the Semantic Web Meetup" width="800" height="533" /></a></p>
<p>And here is the KiWi demo stand mainly supervised by Thomas. We have one laptop running the demo in VirtualBox and powering three big screens at the same time, very nice:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101201-1813-02.jpg"><img class="aligncenter size-full wp-image-604" title="facebook-20101201-1813-02" src="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101201-1813-02.jpg" alt="The KiWi demo stand" width="800" height="533" /></a></p>
<p>We had a number of nice contacts and discussions at the event and I think it was really worthwhile to attend it. Especially since the audience were mostly practical development oriented and technologically very savy people that might join the KiWi community at some point.</p>
<p>On the 2nd and 3rd of December, we were sponsoring the <strong>European Semantic Technologies Conference (ESTC2010)</strong> also taking place in Vienna. This gave us the opportunity to again present KiWi in a invited presentation and a demo stand to interested audience, this time primarily industry people with a professional interest in Semantic Technologies. The following picture shows me and the KiWi waiting to give our presentation:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101203-1048-02.jpg"><img class="aligncenter size-full wp-image-602" title="facebook-20101203-1048-02" src="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101203-1048-02.jpg" alt="Waiting for the presentation ..." width="800" height="533" /></a></p>
<p>The presentation itself  was well attended (40-50 people) given the fact that many people were participating only the first day of ESTC and that there was a STI International general assembly in parallel. This picture shows the KiWi and me during the presentation:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101203-1112-06.jpg"><img class="aligncenter size-full wp-image-601" title="facebook-20101203-1112-06" src="http://www.schaffert.eu/wp-content/uploads/2010/12/facebook-20101203-1112-06.jpg" alt="Me and the KiWi presenting at ESTC2010" width="800" height="600" /></a></p>
<p>The KiWi demo stand was also a well visited place on both days. Thomas gave many demonstrations to interested people and I think we left a quite good impression with most of the ESTC participants. In the following picture I have a discussion with Mark Greaves from Vulcan, Inc. in the US:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/12/photo-20101202-173113.jpg"><img class="aligncenter size-full wp-image-605" title="photo-20101202-173113" src="http://www.schaffert.eu/wp-content/uploads/2010/12/photo-20101202-173113.jpg" alt="Discussions at the KiWi demo stand" width="800" height="533" /></a></p>
<p>Even at ESTC we had many interesting discussions, particularly also with venture capitalists, startups and other funding agencies that might take up the KiWi technology. Altogether also a worthwhile event for the KiWi team, and a good opportunity to demonstrate what the KiWi team has achieved in the last years.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/12/06/kiwi-at-estc2010-and-vienna-semantic-web-winter-meetup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ISWC2010 over, first impressions</title>
		<link>http://www.schaffert.eu/2010/11/11/iswc2010-over-first-impressions/</link>
		<comments>http://www.schaffert.eu/2010/11/11/iswc2010-over-first-impressions/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 12:13:23 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=597</guid>
		<description><![CDATA[With ISWC2010 in Shanghai just over, here are my first random impressions. Positive things first: the conference was very well organised (except Internet, as always), the rooms were comfortable and there were many power sockets, the presentation equipment very good. The demo session was a bit chaotic, though, but as I have already written, we [...]]]></description>
			<content:encoded><![CDATA[<p>With ISWC2010 in Shanghai just over, here are my first random impressions. Positive things first: the conference was very well organised (except Internet, as always), the rooms were comfortable and there were many power sockets, the presentation equipment very good. The demo session was a bit chaotic, though, but as I have already written, we were able to improvise to our benefit. The general setup was also very good, a mixture of research, applications and a bit of industry, workshops and tutorials as always, and also the doctoral consortium, the demo session and the lightning talks &#8211; the three things I really like at conferences. Highlights of the conference for me were also the invited talks by mc schraefel and from Facebook and the NYT.</p>
<p>About many other things I was not very happy. First, I found the quality of the presented work often rather low, many presentations were really boring and repeating the same things the community has been working on the last 10 years &#8211; someone used the term &#8220;least publishable unit&#8221;, and I had the impression this holds for many presentations. I cannot really believe that with the low acceptance rate of ISWC there are still so many low-quality papers. But perhaps my notion of low-quality is different than the one of the rest of the community. After 10 years of ISWC, I would have expected more application-oriented results to be presented. Application-oriented in the sense of &#8220;solving real-world problems with semantic technologies&#8221;. But such papers were only few, even in the in-use track of the conference.</p>
<p>Second, I have the impression that the community is now divided into two large fractions: the &#8220;ontologists&#8221; and the &#8220;linked data people&#8221;, and some outsiders like the Social Semantic Web people. When I exaggerate a bit I would say that the ontologists still try to model all the world in schemas, preferrably description logics, ignoring all instance data, and the linked data people only care about instance data, ignoring most schema and ontology work. Even worse, both communities are now facing problems that the others have already addressed, but at least partly ignore the outcomes of the other communities. And both groups behave a bit arrogantly towards each other (and everyone outside). And again, neither of the two is really concerned with solving real-world problems. Which is ok for some time. But after 10 years &#8230;</p>
<p>Third, I found the selection of best paper and expecially of the winner of the Semantic Web Challenge really a bit strange. But maybe this is again my different perception of what is a good work (problem driven) and what is not&#8230; I would have voted for the Saffron explorer developed by the colleagues at DERI, because it is a useful application with a nice and simple user interface.</p>
<p>And finally, I find the way standardisation is carried out a bit strange (referring to both, RDF 1.1 and RIF). Most of the process is &#8220;design by committee&#8221;, which only rarely leads to an optimal outcome. Also, problems are only addressed when there is someone interested in solving them, and not because they are important problems that need to be solved. A very academic approach, because I think for the Semantic Web to take of we would also need to address the problems that nobody wants to work on, not only those that are fun.</p>
<p>Enough criticism. Otherwise I really enjoyed the conference, there were many nice presentations as well, many old friends, and many interesting discussions. And I am looking forward to ISWC2011 in Koblenz, particularly to the &#8220;Semantic Web Persona Challenge&#8221; proclaimed by mc schraefel <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/11/11/iswc2010-over-first-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KiWi Demo at ISWC2010 in Shanghai</title>
		<link>http://www.schaffert.eu/2010/11/10/kiwi-demo-at-iswc2010-in-shanghai/</link>
		<comments>http://www.schaffert.eu/2010/11/10/kiwi-demo-at-iswc2010-in-shanghai/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 01:23:57 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[Social Software]]></category>
		<category><![CDATA[kiwiknows]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=592</guid>
		<description><![CDATA[After the successful KiWi release party in Vienna, the KiWi has now started its tour around the world: current stop is Shanghai, China, at the ISWC2010 conference, where Thomas and I are representing the project. After several days of workshops, yesterday evening (Shanghai time) finally was our opportunity to present KiWi for the first time [...]]]></description>
			<content:encoded><![CDATA[<p>After the successful <a href="http://www.schaffert.eu/2010/10/18/kiwi-release-party-vienna-14102010/">KiWi release party</a> in Vienna, the KiWi has now started its tour around the world: current stop is Shanghai, China, at the <a href="http://iswc2010.semanticweb.org/">ISWC2010</a> conference, where Thomas and I are representing the project. After several days of workshops, yesterday evening (Shanghai time) finally was our opportunity to present KiWi for the first time outside Europe at the conference&#8217;s demo session. Since the convention centre is apparently not prepared for demo and poster sessions, we had to improvise a bit in the beginning (carrying around tables and chairs), which in the end resulted in an even better demo booth than we usually have. A table full of KiWi dissemination material!</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/11/blog-20101109-001.jpg"><img class="aligncenter size-full wp-image-593" title="blog-20101109-001" src="http://www.schaffert.eu/wp-content/uploads/2010/11/blog-20101109-001.jpg" alt="" width="600" height="450" /></a></p>
<p>Many guests attended our demo, so that we were really happy that we both went to Shanghai instead of sending only one person. Since we had a large table, we could give the KiWi demo at two laptops in parallel! We had many interesting discussions, and I think that we could get quite a lot of people interested in the project. KiWi has so much to offer that there is something in it for almost all conference attendees. I didn&#8217;t check the download figures yet, but I am sure they are going to increase. Just a pity that we only had 3 hours (2 were planned) to give the demo &#8230;</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/11/blog-20101109-002.jpg"><img class="aligncenter size-full wp-image-594" title="blog-20101109-002" src="http://www.schaffert.eu/wp-content/uploads/2010/11/blog-20101109-002.jpg" alt="Thomas presenting the demo even before the demo session started ..." width="600" height="450" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/11/10/kiwi-demo-at-iswc2010-in-shanghai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KiWi Release Party Vienna (14/10/2010)</title>
		<link>http://www.schaffert.eu/2010/10/18/kiwi-release-party-vienna-14102010/</link>
		<comments>http://www.schaffert.eu/2010/10/18/kiwi-release-party-vienna-14102010/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 11:02:28 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=584</guid>
		<description><![CDATA[Last thursday was the big day for the KiWi project: after more than 2 and a half years, we have been able to proudly present the version 1.0 of our KiWi platform! And the location was very fitting for a research project that tries to bring new and innovative ideas into the public: the &#8220;Planetarium&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Last thursday was <strong>the</strong> big day for the KiWi project: after more than 2 and a half years, we have been able to proudly present the version 1.0 of our KiWi platform! And the location was very fitting for a research project that tries to bring new and innovative ideas into the public: the &#8220;Planetarium&#8221; in Vienna, a place where people usually look into the sky and the stars, can dream of places far away, &#8230;</p>

<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party016.jpg" title="" class="thickbox" rel="singlepic1308" >
	<img class="ngg-singlepic ngg-center" src="http://www.schaffert.eu/wp-content/gallery/cache/1308__320x240_release_party016.jpg" alt="release_party016" title="release_party016" />
</a>

<p>As always, the KiWi release was a &#8220;just-in-time&#8221; job. We uploaded the final KiWi version to <a href="http://code.google.com/p/kiwi/downloads/list">Google Code</a> at 11:05, left the office for the train at 11:15, and then built up an ad-hoc network in the Railjet to Vienna to prepare the remaining issues: copying USB sticks, preparing the demonstration, preparing the booths, etc. We definately had much fun on the train. And luckily, when we arrived, almost everything was already prepared by Julia, John, and the Semantic Web Company people in Vienna.</p>

<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party005.jpg" title="" class="thickbox" rel="singlepic1297" >
	<img class="ngg-singlepic ngg-center" src="http://www.schaffert.eu/wp-content/gallery/cache/1297__320x240_release_party005.jpg" alt="release_party005" title="release_party005" />
</a>

<p>The release party itself was a great event: after an inspiring keynote talk by Ross Gardler of the Apache Software Foundation, it was my turn to presented the demonstration that Thomas had prepared in the last days. I must say the system we were able to present is now something that is nice to present, rather stable to use (for a research prototype) and interesting to see.</p>

<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party086.jpg" title="" class="thickbox" rel="singlepic1378" >
	<img class="ngg-singlepic ngg-center" src="http://www.schaffert.eu/wp-content/gallery/cache/1378__320x240_release_party086.jpg" alt="release_party086" title="release_party086" />
</a>

<p>After the presentations, we continued the evening with drinks and nice food at the bar &#8211; a nice opportunity to talk with interesting people. We also had several booths where the KiWi team offered to try out KiWi and helped in installing the system on the laptops of the guests who were interested. We had around 100 guests altogether at the release party, a good mixture of IT people, researchers and journalists. I am really looking forward to working with the interesting contacts we made&#8230;. The video gives a good  impression of the release party:</p>
<p><center><br />
<iframe src="http://player.vimeo.com/video/15944984" width="400" height="300" frameborder="0"></iframe>
<p><a href="http://vimeo.com/15944984">KiWi Release Party</a> from <a href="http://vimeo.com/kiwicommunity">Kiwi Community</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p></center></p>
<p>And finally, here is the collection of the most important pictures of the release party &#8230;</p>

<div class="ngg-galleryoverview" id="ngg-gallery-43-584">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.schaffert.eu/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=43&amp;mode=gallery'});">
			[Mit PicLens anzeigen]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-1293" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party001.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party001" alt="release_party001" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party001.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1294" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party002.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party002" alt="release_party002" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party002.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1295" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party003.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party003" alt="release_party003" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party003.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1296" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party004.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party004" alt="release_party004" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party004.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1297" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party005.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party005" alt="release_party005" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party005.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1298" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party006.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party006" alt="release_party006" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party006.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1299" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party007.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party007" alt="release_party007" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party007.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1300" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party008.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party008" alt="release_party008" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party008.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1301" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party009.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party009" alt="release_party009" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party009.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1302" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party010.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party010" alt="release_party010" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party010.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1303" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party011.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party011" alt="release_party011" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party011.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1304" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party012.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party012" alt="release_party012" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party012.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1305" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party013.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party013" alt="release_party013" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party013.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1306" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party014.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party014" alt="release_party014" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party014.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1307" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party015.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party015" alt="release_party015" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party015.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1308" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party016.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party016" alt="release_party016" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party016.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1309" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party017.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party017" alt="release_party017" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party017.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1310" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party018.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party018" alt="release_party018" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party018.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1311" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party019.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party019" alt="release_party019" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party019.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1312" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party020.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party020" alt="release_party020" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party020.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1313" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party021.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party021" alt="release_party021" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party021.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1314" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party022.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party022" alt="release_party022" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party022.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1315" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party023.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party023" alt="release_party023" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party023.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1316" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party024.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party024" alt="release_party024" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party024.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1317" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party025.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party025" alt="release_party025" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party025.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1318" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party026.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party026" alt="release_party026" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party026.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1319" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party027.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party027" alt="release_party027" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party027.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1320" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party028.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party028" alt="release_party028" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party028.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1321" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party029.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party029" alt="release_party029" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party029.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1322" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party030.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party030" alt="release_party030" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party030.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1323" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party031.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party031" alt="release_party031" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party031.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1324" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party032.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party032" alt="release_party032" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party032.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1325" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party033.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party033" alt="release_party033" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party033.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1326" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party034.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party034" alt="release_party034" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party034.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1327" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party035.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party035" alt="release_party035" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party035.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1328" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party036.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party036" alt="release_party036" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party036.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1329" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party037.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party037" alt="release_party037" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party037.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1330" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party038.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party038" alt="release_party038" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party038.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1331" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party039.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party039" alt="release_party039" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party039.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1332" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party040.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party040" alt="release_party040" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party040.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1333" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party041.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party041" alt="release_party041" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party041.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1334" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party042.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party042" alt="release_party042" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party042.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1335" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party043.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party043" alt="release_party043" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party043.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1336" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party044.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party044" alt="release_party044" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party044.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1337" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party045.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party045" alt="release_party045" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party045.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1338" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party046.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party046" alt="release_party046" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party046.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1339" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party047.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party047" alt="release_party047" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party047.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1340" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party048.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party048" alt="release_party048" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party048.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1341" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party049.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party049" alt="release_party049" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party049.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1342" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party050.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party050" alt="release_party050" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party050.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1343" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party051.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party051" alt="release_party051" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party051.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1344" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party052.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party052" alt="release_party052" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party052.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1345" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party053.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party053" alt="release_party053" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party053.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1346" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party054.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party054" alt="release_party054" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party054.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1347" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party055.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party055" alt="release_party055" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party055.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1348" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party056.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party056" alt="release_party056" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party056.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1349" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party057.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party057" alt="release_party057" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party057.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1350" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party058.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party058" alt="release_party058" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party058.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1351" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party059.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party059" alt="release_party059" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party059.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1352" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party060.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party060" alt="release_party060" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party060.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1353" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party061.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party061" alt="release_party061" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party061.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1354" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party062.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party062" alt="release_party062" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party062.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1355" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party063.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party063" alt="release_party063" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party063.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1356" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party064.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party064" alt="release_party064" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party064.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1357" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party065.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party065" alt="release_party065" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party065.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1358" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party066.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party066" alt="release_party066" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party066.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1359" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party067.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party067" alt="release_party067" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party067.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1360" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party068.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party068" alt="release_party068" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party068.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1361" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party069.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party069" alt="release_party069" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party069.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1362" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party070.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party070" alt="release_party070" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party070.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1363" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party071.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party071" alt="release_party071" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party071.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1364" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party072.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party072" alt="release_party072" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party072.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1365" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party073.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party073" alt="release_party073" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party073.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1366" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party074.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party074" alt="release_party074" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party074.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1367" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party075.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party075" alt="release_party075" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party075.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1368" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party076.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party076" alt="release_party076" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party076.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1369" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party077.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party077" alt="release_party077" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party077.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1370" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party078.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party078" alt="release_party078" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party078.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1371" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party079.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party079" alt="release_party079" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party079.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1372" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party080.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party080" alt="release_party080" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party080.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1373" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party081.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party081" alt="release_party081" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party081.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1374" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party082.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party082" alt="release_party082" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party082.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1375" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party083.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party083" alt="release_party083" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party083.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1376" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party084.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party084" alt="release_party084" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party084.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1377" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party085.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party085" alt="release_party085" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party085.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1378" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party086.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party086" alt="release_party086" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party086.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1379" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party087.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party087" alt="release_party087" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party087.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1380" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party088.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party088" alt="release_party088" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party088.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1381" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party089.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party089" alt="release_party089" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party089.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1382" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party090.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party090" alt="release_party090" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party090.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1383" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party091.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party091" alt="release_party091" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party091.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1384" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party092.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party092" alt="release_party092" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party092.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1385" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party093.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party093" alt="release_party093" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party093.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1386" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party094.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party094" alt="release_party094" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party094.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1387" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party095.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party095" alt="release_party095" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party095.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1388" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party096.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party096" alt="release_party096" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party096.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1389" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party097.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party097" alt="release_party097" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party097.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1390" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party098.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party098" alt="release_party098" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party098.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1391" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party099.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party099" alt="release_party099" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party099.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1392" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party100.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party100" alt="release_party100" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party100.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1393" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party101.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party101" alt="release_party101" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party101.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1394" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party102.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party102" alt="release_party102" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party102.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1395" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party103.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party103" alt="release_party103" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party103.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1396" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party104.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party104" alt="release_party104" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party104.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1397" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party105.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party105" alt="release_party105" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party105.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1398" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party106.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party106" alt="release_party106" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party106.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1399" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party107.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party107" alt="release_party107" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party107.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1400" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party108.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party108" alt="release_party108" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party108.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1401" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party109.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party109" alt="release_party109" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party109.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1402" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party110.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party110" alt="release_party110" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party110.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1403" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party111.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party111" alt="release_party111" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party111.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1404" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party112.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party112" alt="release_party112" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party112.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1405" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party113.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party113" alt="release_party113" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party113.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1406" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party114.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party114" alt="release_party114" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party114.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1407" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party115.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party115" alt="release_party115" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party115.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1408" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party116.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party116" alt="release_party116" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party116.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1409" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party117.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party117" alt="release_party117" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party117.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1410" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party118.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party118" alt="release_party118" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party118.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1411" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party119.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party119" alt="release_party119" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party119.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1412" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party120.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party120" alt="release_party120" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party120.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1413" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party121.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party121" alt="release_party121" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party121.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1414" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party122.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party122" alt="release_party122" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party122.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1415" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party123.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party123" alt="release_party123" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party123.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1416" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/release_party124.jpg" title=" " class="thickbox" rel="set_43" >
								<img title="release_party124" alt="release_party124" src="http://www.schaffert.eu/wp-content/gallery/2010_10_14_kiwi_release/thumbs/thumbs_release_party124.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/10/18/kiwi-release-party-vienna-14102010/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>KiWi Programming and Documentation Camp: The Last Mile</title>
		<link>http://www.schaffert.eu/2010/09/30/kiwi-programming-and-documentation-camp-the-last-mile/</link>
		<comments>http://www.schaffert.eu/2010/09/30/kiwi-programming-and-documentation-camp-the-last-mile/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 13:33:00 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=579</guid>
		<description><![CDATA[The second week of September, we had our &#8220;last mile&#8221; programming and documentation camp in Salzburg in preparation of the upcoming KiWi 1.0 release (14th October 2010). 10 developers stuffed together in a very small room for a whole week, eating Pizza and drinking coffee &#8211; sounds like the stuff for nerds and geeks.:-) But [...]]]></description>
			<content:encoded><![CDATA[<p>The second week of September, we had our &#8220;last mile&#8221; programming and documentation camp in Salzburg in preparation of the upcoming KiWi 1.0 release (14th October 2010). 10 developers stuffed together in a very small room for a whole week, eating Pizza and drinking coffee &#8211; sounds like the stuff for nerds and geeks.:-)</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/09/IMG_8145.jpg"><img class="aligncenter size-full wp-image-580" title="IMG_8145" src="http://www.schaffert.eu/wp-content/uploads/2010/09/IMG_8145.jpg" alt="" width="600" height="400" /></a></p>
<p>But in addition to being fun, it was also a very productive week: even though we could not fix all outstanding issues, a lot of the remaining tasks could be pushed forward enough to be finished for the release, e.g. the reasoner, the information extraction, the editor, and the new user interface. We started the week with a brainstorming session, trying to figure out the most important topics:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/09/IMG_8136.jpg"><img class="aligncenter size-full wp-image-581" title="IMG_8136" src="http://www.schaffert.eu/wp-content/uploads/2010/09/IMG_8136.jpg" alt="" width="400" height="600" /></a></p>
<p>For a real Open Source release, not only the software is important. If we want other developers to take up our work and improve on it, it is essential to also have good documentation. So the second half of the week was solely dedicated to documenting the KiWi platform. John did a great job in constantly reminding us to finish <a href="http://www.kiwi-community.eu/display/DOC/Documentation">the documentation</a>, although most of us would have preferred to continue coding&#8230;</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/09/MG_8359.jpg"><img class="aligncenter size-full wp-image-582" title="_MG_8359" src="http://www.schaffert.eu/wp-content/uploads/2010/09/MG_8359.jpg" alt="" width="600" height="400" /></a></p>
<p>We would like to thank everyone for participating. And if you are interested in what we have been doing throughout the years, you are invited to join us at the r<a href="http://kiwi-community.eu/display/about/Release+Party+14+October+2010,+Planetarium+Vienna">elease party in Vienna on 14th October</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/09/30/kiwi-programming-and-documentation-camp-the-last-mile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Schweden 2010</title>
		<link>http://www.schaffert.eu/2010/08/28/schweden-2010/</link>
		<comments>http://www.schaffert.eu/2010/08/28/schweden-2010/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 20:51:45 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=574</guid>
		<description><![CDATA[Heute ist unser (Anna, Elisa und ich) letzter Tag nach drei Wochen Urlaub in unserem Sommerhaus in Schweden, meinem zweiten Zuhause. Und viel erlebt haben wir: mit dem Kajak entlang der Fjorde und zwischen den Inseln, mit dem Zelt und Feuer auf einer Insel übernachtet, Windsurfen bei Windstärke 6, Segeln mit dem Kajak, auf der [...]]]></description>
			<content:encoded><![CDATA[<p>Heute ist unser (Anna, Elisa und ich) letzter Tag nach drei Wochen Urlaub in unserem Sommerhaus in Schweden, meinem zweiten Zuhause. Und viel erlebt haben wir: mit dem Kajak entlang der Fjorde und zwischen den Inseln, mit dem Zelt und Feuer auf einer Insel übernachtet, Windsurfen bei Windstärke 6, Segeln mit dem Kajak, auf der Sail 2010 in Karlskrona, im Marinemuseum (2 mal), Besuch der Familie Müller, Besuch der Moserlinge und von Rose, Pilze und Beeren aus dem Wald, Wikingerburg Eketorp und der Långe Jan auf Öland, Radtour zu Torhamns Udde (Südostspitze von Skandinavien), und zum Abschluß noch mal eine ausgiebige Tour mit dem Kajak. Und langweilig ist uns immernoch nicht &#8211; wir könnten gut noch ein paar Wochen bleiben. Aber wir freuen uns auch wieder auf die Berge. <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<div class="ngg-galleryoverview" id="ngg-gallery-42-574">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.schaffert.eu/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=42&amp;mode=gallery'});">
			[Mit PicLens anzeigen]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-1199" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-001.jpg" title="Von Deutschland ..." class="thickbox" rel="set_42" >
								<img title="Von Deutschland ..." alt="Von Deutschland ..." src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-001.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1200" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-002.jpg" title="... über Dänemark ..." class="thickbox" rel="set_42" >
								<img title="... über Dänemark ..." alt="... über Dänemark ..." src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-002.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1201" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-003.jpg" title="... mit der Vogelfluglinie ..." class="thickbox" rel="set_42" >
								<img title="... mit der Vogelfluglinie ..." alt="... mit der Vogelfluglinie ..." src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-003.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1202" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-004.jpg" title="... zu unserem Sommerhaus in Schweden!" class="thickbox" rel="set_42" >
								<img title="... zu unserem Sommerhaus in Schweden!" alt="... zu unserem Sommerhaus in Schweden!" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-004.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1203" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-005.jpg" title="Wikinger brauchen ein Boot - hier ist es noch im Bau!" class="thickbox" rel="set_42" >
								<img title="Wikinger brauchen ein Boot - hier ist es noch im Bau!" alt="Wikinger brauchen ein Boot - hier ist es noch im Bau!" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-005.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1204" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-006.jpg" title="Und hier ist es fertig." class="thickbox" rel="set_42" >
								<img title="Und hier ist es fertig." alt="Und hier ist es fertig." src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-006.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1205" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-007.jpg" title="Nils Holgerson's Wildgänse ..." class="thickbox" rel="set_42" >
								<img title="Nils Holgerson's Wildgänse ..." alt="Nils Holgerson's Wildgänse ..." src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-007.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1206" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-008.jpg" title="... im Schärengarten von Karlskrona ist ihre Heimat" class="thickbox" rel="set_42" >
								<img title="... im Schärengarten von Karlskrona ist ihre Heimat" alt="... im Schärengarten von Karlskrona ist ihre Heimat" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-008.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1207" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-009.jpg" title="Blumen im Schilf" class="thickbox" rel="set_42" >
								<img title="Blumen im Schilf" alt="Blumen im Schilf" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-009.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1208" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-010.jpg" title="Wir legen an der Brombeerinsel an." class="thickbox" rel="set_42" >
								<img title="Wir legen an der Brombeerinsel an." alt="Wir legen an der Brombeerinsel an." src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-010.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1209" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-011.jpg" title="Sie trägt ihren Namen zu Recht!" class="thickbox" rel="set_42" >
								<img title="Sie trägt ihren Namen zu Recht!" alt="Sie trägt ihren Namen zu Recht!" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-011.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1210" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-012.jpg" title="Auf der Brombeerinsel" class="thickbox" rel="set_42" >
								<img title="Auf der Brombeerinsel" alt="Auf der Brombeerinsel" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-012.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1211" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-013.jpg" title="Blumen zwischen den Felsen" class="thickbox" rel="set_42" >
								<img title="Blumen zwischen den Felsen" alt="Blumen zwischen den Felsen" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-013.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1212" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-014.jpg" title="Blumen zwischen den Felsen" class="thickbox" rel="set_42" >
								<img title="Blumen zwischen den Felsen" alt="Blumen zwischen den Felsen" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-014.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1213" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-015.jpg" title="Steinpilze!" class="thickbox" rel="set_42" >
								<img title="Steinpilze!" alt="Steinpilze!" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-015.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1214" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-016.jpg" title="Das Kajak kann auch Segeln!" class="thickbox" rel="set_42" >
								<img title="Das Kajak kann auch Segeln!" alt="Das Kajak kann auch Segeln!" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-016.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1215" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-017.jpg" title="Unterwegs zur Sail 2010" class="thickbox" rel="set_42" >
								<img title="Unterwegs zur Sail 2010" alt="Unterwegs zur Sail 2010" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-017.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1216" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-018.jpg" title="Die Mädels üben sich im Paddeln" class="thickbox" rel="set_42" >
								<img title="Die Mädels üben sich im Paddeln" alt="Die Mädels üben sich im Paddeln" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-018.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1217" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-019.jpg" title="Die Mädels üben sich im Paddeln" class="thickbox" rel="set_42" >
								<img title="Die Mädels üben sich im Paddeln" alt="Die Mädels üben sich im Paddeln" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-019.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1218" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-020.jpg" title="Karlskrona - Stortorget" class="thickbox" rel="set_42" >
								<img title="Karlskrona - Stortorget" alt="Karlskrona - Stortorget" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-020.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1219" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-021.jpg" title="Karlskrona" class="thickbox" rel="set_42" >
								<img title="Karlskrona" alt="Karlskrona" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-021.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1220" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-022.jpg" title="Karlskrona - Rosenbom vor Amiralitetskyrkan" class="thickbox" rel="set_42" >
								<img title="Karlskrona - Rosenbom vor Amiralitetskyrkan" alt="Karlskrona - Rosenbom vor Amiralitetskyrkan" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-022.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1221" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-023.jpg" title="Amiralitätskyrkan" class="thickbox" rel="set_42" >
								<img title="Amiralitätskyrkan" alt="Amiralitätskyrkan" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-023.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1222" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-024.jpg" title="Segelschiffe auf der Sail 2010" class="thickbox" rel="set_42" >
								<img title="Segelschiffe auf der Sail 2010" alt="Segelschiffe auf der Sail 2010" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-024.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1223" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-025.jpg" title="Segelschiffe auf der Sail 2010" class="thickbox" rel="set_42" >
								<img title="Segelschiffe auf der Sail 2010" alt="Segelschiffe auf der Sail 2010" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-025.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1224" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-026.jpg" title="Segelschiffe auf der Sail 2010" class="thickbox" rel="set_42" >
								<img title="Segelschiffe auf der Sail 2010" alt="Segelschiffe auf der Sail 2010" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-026.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1225" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-027.jpg" title="Sonnenuntergang über unserem Fjord" class="thickbox" rel="set_42" >
								<img title="Sonnenuntergang über unserem Fjord" alt="Sonnenuntergang über unserem Fjord" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-027.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1226" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-028.jpg" title="Sonnenuntergang über unserem Fjord" class="thickbox" rel="set_42" >
								<img title="Sonnenuntergang über unserem Fjord" alt="Sonnenuntergang über unserem Fjord" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-028.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1227" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-029.jpg" title="Wir zelten auf einer Insel" class="thickbox" rel="set_42" >
								<img title="Wir zelten auf einer Insel" alt="Wir zelten auf einer Insel" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-029.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1228" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-030.jpg" title="Feuer auf der Insel" class="thickbox" rel="set_42" >
								<img title="Feuer auf der Insel" alt="Feuer auf der Insel" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-030.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1229" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-031.jpg" title="Das Boot wird beladen!" class="thickbox" rel="set_42" >
								<img title="Das Boot wird beladen!" alt="Das Boot wird beladen!" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-031.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1230" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-032.jpg" title="Beeren aus dem Wald" class="thickbox" rel="set_42" >
								<img title="Beeren aus dem Wald" alt="Beeren aus dem Wald" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-032.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1231" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-033.jpg" title="Schiffsmodell aus dem 17. Jh im Marinemuseum" class="thickbox" rel="set_42" >
								<img title="Schiffsmodell aus dem 17. Jh im Marinemuseum" alt="Schiffsmodell aus dem 17. Jh im Marinemuseum" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-033.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1232" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-034.jpg" title="Elch-Heide im Wald" class="thickbox" rel="set_42" >
								<img title="Elch-Heide im Wald" alt="Elch-Heide im Wald" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-034.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1233" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-035.jpg" title="Pilze (Steinpilze, Parasol, Pfifferlinge)" class="thickbox" rel="set_42" >
								<img title="Pilze (Steinpilze, Parasol, Pfifferlinge)" alt="Pilze (Steinpilze, Parasol, Pfifferlinge)" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-035.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1234" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-036.jpg" title="Schweinderl in der Wikingerburg Eketorp" class="thickbox" rel="set_42" >
								<img title="Schweinderl in der Wikingerburg Eketorp" alt="Schweinderl in der Wikingerburg Eketorp" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-036.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1235" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-037.jpg" title="Wkiningerspiel" class="thickbox" rel="set_42" >
								<img title="Wkiningerspiel" alt="Wkiningerspiel" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-037.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1236" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-038.jpg" title="Eine Wikingerin erklärt ihr Handwerk" class="thickbox" rel="set_42" >
								<img title="Eine Wikingerin erklärt ihr Handwerk" alt="Eine Wikingerin erklärt ihr Handwerk" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-038.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1237" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-039.jpg" title="Eine Wikingerin erklärt ihr Handwerk" class="thickbox" rel="set_42" >
								<img title="Eine Wikingerin erklärt ihr Handwerk" alt="Eine Wikingerin erklärt ihr Handwerk" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-039.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1238" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-040.jpg" title="Wikingerdorf" class="thickbox" rel="set_42" >
								<img title="Wikingerdorf" alt="Wikingerdorf" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-040.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1239" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-041.jpg" title="Wikingerspiel - das hier ist besonders lustig!" class="thickbox" rel="set_42" >
								<img title="Wikingerspiel - das hier ist besonders lustig!" alt="Wikingerspiel - das hier ist besonders lustig!" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-041.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1240" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-042.jpg" title="Wer läßt sich von den Mädels ziehen?" class="thickbox" rel="set_42" >
								<img title="Wer läßt sich von den Mädels ziehen?" alt="Wer läßt sich von den Mädels ziehen?" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-042.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1241" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-043.jpg" title="Wikingerdorf Eketorp" class="thickbox" rel="set_42" >
								<img title="Wikingerdorf Eketorp" alt="Wikingerdorf Eketorp" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-043.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1242" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-044.jpg" title="Nino und Elisa sitzen auf Akka von Kebnekaise!" class="thickbox" rel="set_42" >
								<img title="Nino und Elisa sitzen auf Akka von Kebnekaise!" alt="Nino und Elisa sitzen auf Akka von Kebnekaise!" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-044.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1243" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-045.jpg" title="Robben vor Öland" class="thickbox" rel="set_42" >
								<img title="Robben vor Öland" alt="Robben vor Öland" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-045.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1244" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-046.jpg" title="Blick vom Långe Jan" class="thickbox" rel="set_42" >
								<img title="Blick vom Långe Jan" alt="Blick vom Långe Jan" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-046.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1245" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-047.jpg" title="Schwedisches Küstenidyll - der Långe Jan" class="thickbox" rel="set_42" >
								<img title="Schwedisches Küstenidyll - der Långe Jan" alt="Schwedisches Küstenidyll - der Långe Jan" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-047.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1246" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-048.jpg" title="Trockenübungen - in ein paar Jahren wird's lustig!" class="thickbox" rel="set_42" >
								<img title="Trockenübungen - in ein paar Jahren wird's lustig!" alt="Trockenübungen - in ein paar Jahren wird's lustig!" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-048.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1247" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-049.jpg" title="Surfen bei Windstärke 6" class="thickbox" rel="set_42" >
								<img title="Surfen bei Windstärke 6" alt="Surfen bei Windstärke 6" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-049.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1248" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-050.jpg" title="Surfen bei Windstärke 6" class="thickbox" rel="set_42" >
								<img title="Surfen bei Windstärke 6" alt="Surfen bei Windstärke 6" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-050.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1249" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-051.jpg" title="Surfen bei Windstärke 6" class="thickbox" rel="set_42" >
								<img title="Surfen bei Windstärke 6" alt="Surfen bei Windstärke 6" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-051.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1250" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-052.jpg" title="Instrumententafel auf dem Dampfschiff Bremön" class="thickbox" rel="set_42" >
								<img title="Instrumententafel auf dem Dampfschiff Bremön" alt="Instrumententafel auf dem Dampfschiff Bremön" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-052.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1251" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-053.jpg" title="In Karlskrona" class="thickbox" rel="set_42" >
								<img title="In Karlskrona" alt="In Karlskrona" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-053.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1252" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-054.jpg" title="In Karlskrona" class="thickbox" rel="set_42" >
								<img title="In Karlskrona" alt="In Karlskrona" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-054.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1253" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-055.jpg" title="Elisa und Rose baden!" class="thickbox" rel="set_42" >
								<img title="Elisa und Rose baden!" alt="Elisa und Rose baden!" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-055.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1254" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-056.jpg" title="Segeln bei zu viel Wind für das kleine Boot" class="thickbox" rel="set_42" >
								<img title="Segeln bei zu viel Wind für das kleine Boot" alt="Segeln bei zu viel Wind für das kleine Boot" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-056.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1255" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-057.jpg" title="Kurz vor dem Kentern" class="thickbox" rel="set_42" >
								<img title="Kurz vor dem Kentern" alt="Kurz vor dem Kentern" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-057.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1256" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-058.jpg" title="Rettung nach dem Kentern" class="thickbox" rel="set_42" >
								<img title="Rettung nach dem Kentern" alt="Rettung nach dem Kentern" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-058.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1257" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-059.jpg" title="Endlich ist das Boot (und der Wastl!) sauber" class="thickbox" rel="set_42" >
								<img title="Endlich ist das Boot (und der Wastl!) sauber" alt="Endlich ist das Boot (und der Wastl!) sauber" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-059.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1258" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-060.jpg" title="Gemütlicher Bilderabend am Sofa" class="thickbox" rel="set_42" >
								<img title="Gemütlicher Bilderabend am Sofa" alt="Gemütlicher Bilderabend am Sofa" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-060.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1259" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-061.jpg" title="Idylle in Torhamn" class="thickbox" rel="set_42" >
								<img title="Idylle in Torhamn" alt="Idylle in Torhamn" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-061.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1260" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-062.jpg" title="Brombeeren - da konnten die Mädels nicht weiterradeln" class="thickbox" rel="set_42" >
								<img title="Brombeeren - da konnten die Mädels nicht weiterradeln" alt="Brombeeren - da konnten die Mädels nicht weiterradeln" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-062.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1261" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-063.jpg" title="An Schwedens Südostspitze" class="thickbox" rel="set_42" >
								<img title="An Schwedens Südostspitze" alt="An Schwedens Südostspitze" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-063.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1262" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-064.jpg" title="Werner macht Fotos" class="thickbox" rel="set_42" >
								<img title="Werner macht Fotos" alt="Werner macht Fotos" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-064.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1263" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-065.jpg" title="St. Hammar" class="thickbox" rel="set_42" >
								<img title="St. Hammar" alt="St. Hammar" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-065.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1264" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-066.jpg" title="Mädels machen eine Paddeltour" class="thickbox" rel="set_42" >
								<img title="Mädels machen eine Paddeltour" alt="Mädels machen eine Paddeltour" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-066.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1265" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-067.jpg" title="Parasol - Teil des Abendessens" class="thickbox" rel="set_42" >
								<img title="Parasol - Teil des Abendessens" alt="Parasol - Teil des Abendessens" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-067.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1266" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-068.jpg" title="Spiegelglatte See - in der Mitte die Insel Varö" class="thickbox" rel="set_42" >
								<img title="Spiegelglatte See - in der Mitte die Insel Varö" alt="Spiegelglatte See - in der Mitte die Insel Varö" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-068.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1267" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-069.jpg" title="Libelle auf dem Balkongeländer" class="thickbox" rel="set_42" >
								<img title="Libelle auf dem Balkongeländer" alt="Libelle auf dem Balkongeländer" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-069.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1268" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-070.jpg" title="Ein Steg der schon bessere Zeiten gesehen hat!" class="thickbox" rel="set_42" >
								<img title="Ein Steg der schon bessere Zeiten gesehen hat!" alt="Ein Steg der schon bessere Zeiten gesehen hat!" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-070.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1269" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-071.jpg" title="Karlskrona vom Kajak aus" class="thickbox" rel="set_42" >
								<img title="Karlskrona vom Kajak aus" alt="Karlskrona vom Kajak aus" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-071.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1270" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-072.jpg" title="Paddeln" class="thickbox" rel="set_42" >
								<img title="Paddeln" alt="Paddeln" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-072.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1271" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-073.jpg" title="Paddeln" class="thickbox" rel="set_42" >
								<img title="Paddeln" alt="Paddeln" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-073.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1272" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-074.jpg" title="Brücke Festland - Senoren" class="thickbox" rel="set_42" >
								<img title="Brücke Festland - Senoren" alt="Brücke Festland - Senoren" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-074.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1273" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-075.jpg" title="Letzter Gruß der Gänse" class="thickbox" rel="set_42" >
								<img title="Letzter Gruß der Gänse" alt="Letzter Gruß der Gänse" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-075.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1274" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/project365-076.jpg" title="St. Hammar - Fjord" class="thickbox" rel="set_42" >
								<img title="St. Hammar - Fjord" alt="St. Hammar - Fjord" src="http://www.schaffert.eu/wp-content/gallery/2010_08_28_schweden/thumbs/thumbs_project365-076.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/08/28/schweden-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>D&#8217;Alm is mei Freud!</title>
		<link>http://www.schaffert.eu/2010/03/14/dalm-is-mei-freud/</link>
		<comments>http://www.schaffert.eu/2010/03/14/dalm-is-mei-freud/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 21:04:50 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=557</guid>
		<description><![CDATA[Ein schönes Frühlingsgedicht in Pinzgauer Mundart, gefunden in der Gaststube der Hochalm am Sonntagshorn (wo ich heute mit Georg und Max war): A Lüftal so lau ums Haus umaziacht, a Fliagn no gonz damisch üba d&#8217;Stadlwand kriacht. Da spür i a Sehnen und s&#8217;Herz werd ma weit &#8220;I werds wieda packn!&#8221; Denn d&#8217;Alm is mei [...]]]></description>
			<content:encoded><![CDATA[<p>Ein schönes Frühlingsgedicht in Pinzgauer Mundart, gefunden in der Gaststube der Hochalm am Sonntagshorn (wo ich heute mit Georg und Max war):</p>
<blockquote><p><em><br />
A Lüftal so lau ums Haus umaziacht,<br />
a Fliagn no gonz damisch üba<br />
d&#8217;Stadlwand kriacht.<br />
Da spür i a Sehnen und s&#8217;Herz<br />
werd ma weit &#8220;I werds wieda packn!&#8221;<br />
Denn d&#8217;Alm is mei Freud!</em></p>
<p><em>Da Summa auf da Alm<br />
im letztn Jahr war so hart.<br />
Aba den ganzn Winta dahoam<br />
hab i auf dös  lau Lüftal scho gwart.<br />
Da letzte Schnee auf dö Berg<br />
werd kleana, s&#8217;werd Zeit,<br />
daß is zammpack mei Zeug,<br />
denn d&#8217;Alm is mei Freud!</p>
<p>Ob i gsund bleim im Summa?<br />
Dö Angst werd vadrängt<br />
Mei Sorg ghört dö Viecha<br />
an deni so häng.<br />
Mei Glück san dö Berg,<br />
von dö Glock&#8217;n dös Gläut,<br />
meine Sorgen wern kleana,<br />
denn d&#8217;Alm is mei Freud!</p>
<p></em><em>Um an Herrgott sein Segn,<br />
a innigs Gebet, daß da Summa<br />
a dösmoi so guat umageht,<br />
daß gsund bleibm auf da Alm,<br />
dö Viech und dö Leut,<br />
drum bitt i di Herrgott,<br />
denn d&#8217;Alm is mei Freud!<br />
</em></p></blockquote>
<p>Und zum Abschluß noch ein Bild von unsererm Skitour-Abschluß auf der Hochalm:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/03/blog-20100314-001.jpg"><img class="aligncenter size-full wp-image-559" title="blog-20100314-001" src="http://www.schaffert.eu/wp-content/uploads/2010/03/blog-20100314-001.jpg" alt="" width="600" height="450" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/03/14/dalm-is-mei-freud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KiWi Annual Meeting 2010</title>
		<link>http://www.schaffert.eu/2010/03/12/kiwi-annual-meeting-2010/</link>
		<comments>http://www.schaffert.eu/2010/03/12/kiwi-annual-meeting-2010/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 15:01:12 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=561</guid>
		<description><![CDATA[March is time for KiWi annual meetings. This year&#8217;s meeting took place from 10th-12th March in Mattsee close to Salzburg, again at a very nice location. The Annual Meeting was focussing primarily on the use cases (which are supposed to start with evaluation now) and the dissemination and exploitation activities (which now go into the [...]]]></description>
			<content:encoded><![CDATA[<p>March is time for KiWi annual meetings. This year&#8217;s meeting took place from 10th-12th March in Mattsee close to Salzburg, again at a very nice location. The Annual Meeting was focussing primarily on the use cases (which are supposed to start with evaluation now) and the dissemination and exploitation activities (which now go into the last phase). Here is a short summary of the meeting:</p>
<p><strong>Core KiWi System</strong></p>
<p>As usual, the annual meeting began with a presentation of the current state of the core KiWi system. Rolf presented the novel implementation of Semantic Forms (based on RDFa) in KiWi. KiWi&#8217;s Semantic Forms can be used as alternative editors for a content item and directly update the RDF metadata inside the KiWi system. Planned improvements of Semantic Forms are the support of RDFa object properties and the automatic generation of Semantic Forms out of types specified in an ontology.</p>
<p>Thomas then briefly presented the latest version of the TagIT implementation on top of KiWi. TagIT is accessible at http://tagit2.salzburgresearch.at and will go into a productive use by end of March (accessible under <a href="http://tagit2.salzburgresearch.at">http://tagit2.salzburgresearch.at</a>). Arpad concluded the Salzburg Reseach part with a presentation of the new vocabulary management tool for KiWi, which is at the same time a first experiment for using GWT (Google Web Toolkit) in conjunction with KiWi.
</p>
<p>
Peter Dolog summarised the various personalisation features that have been implemented in KiWi. Personalisation is available at several levels in KiWi: it can recommend related content to the currently displayed page based on the user&#8217;s preferences, it can recommend content interesting to the user based on his activities in the system, and it can be used for personalising the ranking of search results in KiWis search interface (so-called personalised search). In all cases, it is a prerequisite that there is sufficient data for the personalisation from previous (tagging-) activities of users.
</p>
<p>
Klara then presented the latest progress in using the query language KWQL in KiWi. Beyond ordinary search, KWQL is capable of issuing structured queries to the documents contained in the KiWi system. KWQL is available as part of the core KiWi system for some time already and can be used as an alternative to the default search mechanism.
</p>
<p>
Jakub showed the new explanation service for the reasoner in the KiWi system. The explanation service allows developers to inspect the justifications why the reasoner has inferred a triple in a graphical manner. It can also be used to show explanations to the user for certain kinds of behaviour (currently inferred types and incoming/outgoing relations).
</p>
<p>
Marek concluded the presentation of the KiWi core system with a demonstration of the various information extraction functionalities in the KiWi system. Currently, information extraction is used for tag recommendation. He is currently also working on using it for automatically recommending RDFa annotations for the textual content of a document.
</p>
<p><strong>Sun Use Case (Software Knowledge Management)</strong></p>
<p>
KiWi&#8217;s Sun Use Case is concerned with knowledge management in the SunSpace intranet of Sun Microsystems, now part of Oracle. Josef Holy and Peter Reiser started with presenting the three storylines they aim to evaluate as part of the use case: concept model management (i.e. how to manage the company&#8217;s internal thesaurus using KiWi and PoolParty), Text Extraction and Tag Recommendation (both, based on the company thesaurus and using free tags), and Searching and Browsing through the SunSpace intranet using KiWis Semantic Search functionality.
</p>
<p>
Sebastian and Mihai continued with a presentation of a reimplementation of the Community Equity system in KiWi. The new implementation uses a much simplified implementation as compared to the currently used system and gives at the same time more flexibility to admins and developers. Still unclear is how well the system scales in the presence of huge activity logs.
</p>
<p>
Further steps concerning the implementation and evaluation of the Sun use case are the connection of Confluence with KiWi using a plugin to &#8220;augment&#8221; Confluence with KiWi&#8217;s semantic technologies, the connection of KiWi and PoolParty, as well as the migration of content, particularly activity logs, from SunSpace into the KiWi system to preseed the system for evaluation.
</p>
<p><strong>Logica Use Case (Project Knowledge Management)</strong></p>
<p>
Daniel Grohlin, Karsten Jahn and Peter Axel Nielsen presented the implementation and scenarios of the Logica Use Case, which is concerned with managing project knowledge. The evaluation will cover the scenarios &#8220;project planning&#8221;, &#8220;project monitoring&#8221;, &#8220;development or project work&#8221;, and &#8220;process design&#8221;. All four scenarios will be evaluated using a combination of the KiWi system and the proprietary Logica application that complements and accesses KiWi using web services. The use case will be evaluated using an &#8220;agile evaluation&#8221; that refines the tests and implementation in several evaluation cycles (probably three). Particularly noteworthy is the feature matrix developed as part of the test plan that will be extended by the other partners and used for the Sun Use Case as well as as input for the dissemination and exploitation activities. The feature matrix is also useful to verify to which extent the KiWi technologies are covered by which of the scenarios.
</p>
<p><strong>Dissemination and Exploitation</strong></p>
<p>
The last of the very important topics of the KiWi Annual Meeting was the discussion on dissemination and exploitation. While dissemination was quite successful in the first two years running with only little resources, the project now moves on into the third phase where it is important to increase the resources spent on making the project known and &#8220;selling&#8221; its results to the outside world. To this aim, John started with presenting a timeline for the next year, highlighting the most important milestones of the dissemination and exploitation activities. As a major step, KiWi will relaunch its websites and split them into a &#8220;research project page&#8221; targeted primarily at researchers (as it is now), a &#8220;system page&#8221;  targeted primarily at decision makers as well as a &#8220;community page&#8221; targeted at developers that want to make use of the KiWi technologies. Further steps in the dissemination area are still confidential, but stay tuned on updates! And don&#8217;t miss the KiWi release party for version 1.0 &#8211; it will probably take place in September!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/03/12/kiwi-annual-meeting-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bayerisch-Österreichische Unterschiede</title>
		<link>http://www.schaffert.eu/2010/02/25/bayerisch-osterreichische-unterschiede/</link>
		<comments>http://www.schaffert.eu/2010/02/25/bayerisch-osterreichische-unterschiede/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 20:08:47 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=552</guid>
		<description><![CDATA[Wie ja die meisten wissen lebe ich in Bayern und arbeite in Österreich (Salzburg). Da findet man sehr viele Gemeinsamkeiten (viel mehr als beispielsweise zwischen Bayern und Baden-Württemberg oder noch schlimmer: Berlin, Hamburg, &#8230;), aber auch ein paar Unterschiede. Der lustigste Unterschied ist mir heute untergekommen, und zwar in den neuen Zügen der Berchtesgadener Land [...]]]></description>
			<content:encoded><![CDATA[<p>Wie ja die meisten wissen lebe ich in Bayern und arbeite in Österreich (Salzburg). Da findet man sehr viele Gemeinsamkeiten (viel mehr als beispielsweise zwischen Bayern und Baden-Württemberg oder noch schlimmer: Berlin, Hamburg, &#8230;), aber auch ein paar Unterschiede. Der lustigste Unterschied ist mir heute untergekommen, und zwar in den neuen Zügen der Berchtesgadener Land Bahn &#8211; gleichzeitig die S-Bahn Linien S3 und S4 des grenzüberschreitenden Salzburger Verkehrsverbunds. Hier habt Ihr ihn:</p>
<p><a href="http://www.schaffert.eu/wp-content/uploads/2010/02/blog-20100225-001.jpg"><img class="aligncenter size-full wp-image-553" title="blog-20100225-001" src="http://www.schaffert.eu/wp-content/uploads/2010/02/blog-20100225-001.jpg" alt="" width="600" height="450" /></a></p>
<p>Oder wie mein (Pongauer) Kollege Rupert auf Facebook kommentiert hat: &#8220;In Bayern braucht ein Mensch 1er Klasse vor allem Geld. In Österreich muss er den Mund halten können&#8221;.:-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/02/25/bayerisch-osterreichische-unterschiede/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

