<?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 &#187; KIWI</title>
	<atom:link href="http://www.schaffert.eu/category/kiwi/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>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>Digital Social Networks &#8211; Perspectives Workshop at Dagstuhl Castle</title>
		<link>http://www.schaffert.eu/2010/01/30/digital-social-networks-perspectives-workshop-at-dagstuhl-castle/</link>
		<comments>http://www.schaffert.eu/2010/01/30/digital-social-networks-perspectives-workshop-at-dagstuhl-castle/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 10:07:16 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>
		<category><![CDATA[Social Software]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=526</guid>
		<description><![CDATA[Social Media are one of the revolutionary trends of our time. Up till now, they have been largely driven by practitioners. Research on the field has been either computer science or social sciences and is mainly observing the trend without taking really part. One could argue that this is a good thing, but as a researcher [...]]]></description>
			<content:encoded><![CDATA[<p>Social Media are one of the revolutionary trends of our time. Up till now, they have been largely driven by practitioners. Research on the field has been either computer science or social sciences and is mainly observing the trend without taking really part. One could argue that this is a good thing, but as a researcher I am of course convinced of the opposite. Last week, we therefore had a &#8220;perspectives workshop&#8221; at Dagstuhl Castle near Saarbrücken in Germany where we discussed what research can actively do to accompany the social media revolution, &#8220;smoothening&#8221; its negative effects and emphasising its positive effects on society and economy, and helping in educating currently unaware parts of society, economy, and science. The workshop was organised by Clemens Cap (Rostock University), François Bry (Munich University), Julia Maintz (Microsoft, now freelancer), and myself (Salzburg Research).</p>
<div id="attachment_527" class="wp-caption alignnone" style="width: 610px"><a href="http://www.schaffert.eu/wp-content/uploads/2010/01/project365-0011.jpg"><img class="size-full wp-image-527" title="project365-001" src="http://www.schaffert.eu/wp-content/uploads/2010/01/project365-0011.jpg" alt="" width="600" height="400" /></a><p class="wp-caption-text">Dagstuhl Castle in a nice winter night</p></div>
<p>While a Dagstuhl workshop in itself is a special thing that you only get granted a few times in a researcher lifetime, a perspectives workshop is even more so, because it is aimed to &#8220;kickstart&#8221; a research topic, and there are only 5 such workshops overall in a year. Outcome of this workshop will be a manifesto that is distributed to decision and policy makers in politics, research, economy and media. Particularly interesting and noteworthy was the interdisciplinary nature of the workshop with participants from computer science, social sciences, and industry.</p>
<p><strong>The Digital Social Networks Manifesto</strong></p>
<p>In the following, I will briefly sketch the draft outcome of this workshop, a result of countless hours of discussions and a joint work of all participants of the workshop. Since the real manifesto is still to come (I&#8217;ll keep you updated), I&#8217;ll only summarise what is alreafy there without going into too much details.</p>
<p><em>What are Social Media?</em></p>
<p>In the group, we found a common definition of what we believe to be the central aspects of social media:</p>
<p>&#8220;<strong><span style="font-size: x-small;">Digital social media</span></strong><span style="font-size: x-small;"> use information and communication technologies (such as the Internet, Web-based technologies, and/or specific software systems) for users and (possibly emerging) communities to collaboratively generate and exchange content and, more generally, to interact. They ease and strengthen social interactions by overcoming physical limitations in communication (like distance and synchronicity) and alleviating human limitations like in the number of people with whom one can maintain relationships. Digital social media thus offer opportunities for social interactions that would not be possible without them. Digital social media build and/or rely upon </span><strong><span style="font-size: x-small;">social networks</span></strong><span style="font-size: x-small;"> which can even be the primary purpose of the media.</span></p>
<p><span style="font-size: small;">Examples of online social media are digital social networks (like facebook, LinkedIn and Xing), blogs, content sharing site (like flikr and YouTube), wikis (like used in the wikipedia encyclopedic project), backchannels (like twitter) and innovation markets (like InnoCentive).</span></p>
<p><span style="font-size: small;">Digital social media have appeared during the last decade and have spread extremely rapidly. Some are very successful at building up and keeping users communities. For some users, digital social media have become as common as, or have even replaced, telephone and email.&#8221;</span></p>
<p><em>Why are they important?</em></p>
<p>Social media are a revolutionary trend in our society and economy. They change the way we communicate to an extent similar to the invention of the printing press, and accommodate for the communication needs in a world of increased mobility, urbanisation, and globalisation. With the revolutionary character comes a dramatic change in society where existing business models, professions, and societal structures are replaced by new ones that have yet to emerge. At the same time, social media have the potential to offer huge benefits to society in many fields, e.g. the democratic process.</p>
<p><em>Challenges and Opportunities</em></p>
<p>We identified challenges and opportunities in the following areas:</p>
<ul>
<li>Socio-cultural Challenges: improving media literacy, smoothen negative and strengthen positive effects, importance of relationships, personal identity, trust and privacy</li>
<li>Political Challenges: e-participation, e-democracy, e-Europe, Internet laws and policies</li>
<li>Economic Challenges: new business models, integration of social media in enterprises</li>
<li>Technological Challenges: usability, trust and privacy, decentralised social networks, media integration, personalisation, &#8230;</li>
</ul>
<p>The challenges will be described in detail in the manifesto, scheduled for end of March.</p>
<p><em>Research Issues</em></p>
<p>The topic of digital social networks is a truly interdisciplinary field where researchers from several different fields can (and need to) participate. Since the majority of the participants of the seminar where from the computer science area, most research issues we identified have a computer science focus, but this does not mean that other research issues are less important. We structured research issues along the following themes:</p>
<ul>
<li>Society and Economy</li>
<li>Architecture and Infrastructure</li>
<li>Services and Applications</li>
<li>Trust, Privacy and Security</li>
</ul>
<p><em>Barriers and Enablers</em></p>
<p>There are a number of barriers and enablers that could either hinder that we benefit of social media or support the process. Since this is a delicate topic, I do not want to go into too much detail here until we have decided on the correct phrasing. Just a few examples:</p>
<ul>
<li>an important barrier is lack of media literacy throughout many parts of society, especially with decision makers and those in the educational sector</li>
<li>important enablers are the technological development in itself, and the fact that the technology satisfies an apparent communication need in a society with increased mobility, urbanisation and globalisation</li>
</ul>
<p>The final version of the manifesto is scheduled for end of March. I will publish it then on my website for everyone to read it (and comment on it). In the meantime, feel free to comment and add to what I have written above. <img src='http://www.schaffert.eu/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Acknowledgements</strong></p>
<p>I would like to again say &#8220;thank you&#8221; to all participants (and all those who wanted to come but could not) for their important contribution. I conclude this blog post with the &#8220;group picture&#8221; taken before the hike we took as social event on Wednesday:</p>
<div id="attachment_528" class="wp-caption alignnone" style="width: 610px"><a href="http://www.schaffert.eu/wp-content/uploads/2010/01/project365-0021.jpg"><img class="size-full wp-image-528" title="project365-002" src="http://www.schaffert.eu/wp-content/uploads/2010/01/project365-0021.jpg" alt="" width="600" height="400" /></a><p class="wp-caption-text">The Dagstuhl working group on Digital Social Networks</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2010/01/30/digital-social-networks-perspectives-workshop-at-dagstuhl-castle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KiWi Prototype Release 0.7 (Milestone 3)</title>
		<link>http://www.schaffert.eu/2009/12/23/kiwi-prototype-release-0-7-milestone-3/</link>
		<comments>http://www.schaffert.eu/2009/12/23/kiwi-prototype-release-0-7-milestone-3/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 11:24:22 +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=440</guid>
		<description><![CDATA[Development activity in the last months has been so active that we didn&#8217;t manage to issue a KiWi release of acceptable stability. Now we are very proud to announce the availability of the next prototype prerelease! The changes and new features are too abundant to name them all (you can get a list of fixed [...]]]></description>
			<content:encoded><![CDATA[<p>Development activity in the last months has been so active that we didn&#8217;t manage to issue a KiWi release of acceptable stability. Now we are very proud to announce the availability of the next prototype prerelease! The changes and new features are too abundant to name them all (you can get a list of fixed issues in the <a href="http://wiki.kiwi-project.eu/atlassian-jira/secure/ReleaseNote.jspa?projectId=10010&amp;version=10051">Jira Changelog</a> for version 0.7). Here are the highlights:</p>
<ul>
<li><strong>Reasoning</strong>. This is the first release to include KiWi&#8217;s rule-based reasoner. The reasoner applies rules to triples in the triple store and allows to infer new triples based on this information. Rules can currently only be specified by developers (in a file called rules.txt), but we intend to open this to advanced users of the KiWi system. Evaluation is currently forward chaining with reason maintenance. Reason maintenance can also be used to &#8220;explain&#8221; to the user why certain triples have been inferred. This is for example visible in the &#8220;References&#8221; widget of the wiki when hovering the mouse over an inferred relation. The reasoning component has been implemented by Jakub Kotowski at the University of Munich.</li>
<li><strong>Querying</strong>. The 0.7 KiWi release also for the first time features the new and innovative querying component called &#8220;KWQL&#8221;. KWQL is an advanced query language that can be used as a replacement for the normal KiWi semantic search. It allows advanced query constructs for querying the structure of KiWi content in a simple-to-use language. KWQL also offers a visual query editor for composing queries. KWQL can be accessed by issuing an ordinary search and then clicking on &#8220;KWQL&#8221; besides the search input field. KWQL has been implemented by Klara Weiand and Steffen Hausmann at the University of Munich.</li>
<li><strong>Information Extraction</strong>. The 0.7 release of KiWi has also included a variety of different information extraction technologies (and more to come!) based on GATE and Semantic Vectors. For the moment, information extraction can be used for tag recommendation and recommendation of related articles. Using GATE, English or German texts can be analyzed and more precise tag recommendations can be made. Information extraction has been integrated by Marek Schmidt at the Technical University of Brno.</li>
<li><strong>Personalized Search</strong>. KiWi also now includes an option to personalize the search results based on the previous tagging activity of the user and the tags associated with the search results. To access personalized search, simply click on the &#8220;personalized search&#8221; checkbox in the search interface. Note that personalized search requires that you already have some information in your user profile (primarily  tagging behavious). Personalized Search has been implemented by Nilay Coskun and Fred Durao at the University of Aalborg.</li>
<li><strong>Community Equity</strong>. Release 0.7 is also the first KiWi version to have Sun&#8217;s Community Equity algorithm integrated in the system. <a href="http://blogs.sun.com/peterreiser/entry/community_equity_specification">Community Equity</a> is an algorithm that tries to determin the &#8220;social value&#8221; of information in a collaborative system by tracking how much interest is generated about a certain item. Community Equity is pretty sophisticated, featuring also an aging algorithm that avoids reputation being built up ad infinitum. Community Equity has been implemented by the Community Equity team at Sun (Josef, Dimitri, Max) and integrated by Mihai Radulescu at Salzburg Research.</li>
<li><strong>Optimistic Locking</strong>. KiWi 0.7 switched the data and transaction model to more error-proof optimistic locking; this also makes the system more reliable in concurrent situations, i.e. if two users change the same content. Optimistic Locking has been implemented by Stephanie Stroka at Salzburg Research.</li>
<li><strong>Simplified Setup</strong>. When starting for the first time, users are now guided through a semi-automatic setup process that makes configuring KiWi much simpler than it used to be. The setup process has been implemented by myself, and Mihai is now working on making it even more simpler, allowing users also to configure database and path settings via the Web-based interface.</li>
<li><strong>TagIT2</strong>. The TagIT application has been completely reimplemented and is scheduled for beta-testing starting January. New features are a completely new user interface, the possibility to display users in addition to news and blog posts, and many usability improvements. TagIT2 has mostly been implemented by Thomas Kurz at Salzburg Research.</li>
</ul>
<p>There have been many smaller enhancements that I cannot mention here in detail (Exhbit support, Facebook integration, FOAF+SSL integration, &#8230;) and even more bug fixes. Thanks a lot to all project members for their participation!</p>
<p><strong>Availability</strong></p>
<p>As usual, the KiWi release is available at the following locations:</p>
<ul>
<li>binary download (bundled with JBoss, ready-to-run): <a href="http://kenai.com/projects/kiwi/downloads/download/kiwi-jboss-0.7.zip">http://kenai.com/projects/kiwi/downloads/download/kiwi-jboss-0.7.zip</a> (250 MB)</li>
<li>source download: please use the KiWi Subversion repository at <a href="https://svn.salzburgresearch.at/svn/kiwi/KiWi/trunk">https://svn.salzburgresearch.at/svn/kiwi/KiWi/trunk</a> (latest revision) or <a href="https://svn.salzburgresearch.at/svn/kiwi/KiWi/tags/0.7">https://svn.salzburgresearch.at/svn/kiwi/KiWi/tags/0.7 </a>(0.7 release)</li>
<li>showcase/demo: the latest KiWi version can also be tried out at our showcase installation at <a href="http://showcase.kiwi-project.eu/KiWi/">http://showcase.kiwi-project.eu/KiWi/</a> ; be aware that the showcase is erased regularly and we don&#8217;t have much content in it currently (<strong>note</strong>: the showcase has been shut down over Christmas because vandals are misusing it for distributing their spam links and I don&#8217;t have the nerve to look at it over Christmas!)</li>
<li>issue tracking: please use the KiWi Jira at <a href="http://wiki.kiwi-project.eu/atlassian-jira/browse/KIWI">http://wiki.kiwi-project.eu/atlassian-jira/browse/KIWI</a> to report any issues you encounter</li>
<li>help: please use either the KiWi developer mailinglist (kiwi-devel@kiwi-project.eu) or the issue tracking for the moment; we are currently also in the process of setting up a wiki for the project</li>
</ul>
<p><strong>Road Map</strong></p>
<p>Undoubtedly, version 0.7 still contains many bugs. In the weeks after Christmas, we will therefore likely release minor updates improving the stability and reliability of the system. These will be numbered 0.7.x.</p>
<p>Version 0.8 of KiWi is scheduled for end of February 2010. It will have improved Community Equity support, first draft of permission management, and Semantic Forms support. Version 0.9 is scheduled for end of May and will feature an improved user interface and widget support based on SmartGWT. Version 1.0 (final) is scheduled for end of August, with one month of testing.</p>
<p>A KiWi handbook will be written starting September 2010. It will contain not only instructions on how to use the KiWi system but also practical examples and best practices on how it can be used.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2009/12/23/kiwi-prototype-release-0-7-milestone-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Future Internet Assembly @ Stockholm</title>
		<link>http://www.schaffert.eu/2009/11/25/future-internet-assembly-stockholm/</link>
		<comments>http://www.schaffert.eu/2009/11/25/future-internet-assembly-stockholm/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 09:03:44 +0000</pubDate>
		<dc:creator>wastl</dc:creator>
				<category><![CDATA[KIWI]]></category>

		<guid isPermaLink="false">http://www.schaffert.eu/?p=430</guid>
		<description><![CDATA[After the KiWi Meeting, Georg and I participated for the first time at the Future Internet Assembly, as representatives of the KiWi project and of our company. The conference took place in Kista Science City at the premises of Kungliga Tekniska Högskolan (KTH), which are very nice buildings indeed. The first day started with introductions [...]]]></description>
			<content:encoded><![CDATA[<p>After the <a href="http://www.schaffert.eu/2009/11/21/kiwi-meeting-in-stockholm/">KiWi Meeting</a>, Georg and I participated for the first time at the <a href="http://www.future-internet.eu/">Future Internet Assembly</a>, as representatives of the KiWi project and of our company. The conference took place in Kista Science City at the premises of Kungliga Tekniska Högskolan (KTH), which are very nice buildings indeed. The first day started with introductions by several &#8220;politicians&#8221; and an overview/keynote over the different perspectives of those who started the Future Internet topic. And here comes my first criticism: not only were the presentations really bad and the speakers very untalented (never seen this before in an opening), what is worse is that the selection of topics is heavily influenced by the in my opinion very narrow viewpoint of people from the networking infrastructure community. New topics, like those in the Social Media and Smart Content area we are investigating, have a pretty tough standing in this community.</p>
<p>The day continued with several sessions on cross-cutting concerns of the Future Internet. I participated in &#8220;Different architectures for different business models&#8221;, &#8220;What does Future Internet mean for smart cities?&#8221;, and &#8220;What does Future Internet mean for enterprise&#8221;. I very much liked the session on smart cities, but the other two were a bit frustrating: in the architectures, the message of the speakers / organisers was basically: take our architecture, we know it better anyways. And in the enterprise session, while I found the &#8220;knowledge café&#8221; idea pretty good, I was very unhappy with the moderation because all discussions were very superficial and as soon as we wanted to go into more details it was cut off.</p>
<p>The second day was dedicated to thematic sessions. I participated in the &#8220;Future Content Networks&#8221; session, though the &#8220;Software and Services&#8221; session would have been fitting as well. The first presentation was by Spanish Television and described there vision on New Media applications of the future. I found this talk very inspiring. But the rest of the session was basically wasted time.</p>
<p>What is frustrating me very much in the Future Internet community is that everything is superficial, and almost noone talks about what concretely the Future Internet will bring us, what applications can be envisioned, and how this all would benefit the user. Everything is just about infrastructure. How can we even discuss what it means for the enterprise when we cannot present them a vision on how it looks like?</p>
<p>The final talk was given by the CTO of Ericsson. First shocking message was that Ericsson moves its headquarters to Silicon Valley (to &#8220;profit from the innovative spirit there&#8221;). WTF? A European technology company moves its headquarters to the US? Thanks, Ericsson, I&#8217;ll never buy again from you. Second shocking message was that &#8220;Internet is too cheap&#8221; &#8211; the monthly fee for Internet is as low as going out for a Pizza but should be much more valuable. So what? I consider Internet access a public infrastructure that needs to be as cheap as possible; and in this case it is even the market regulating it, so please stop complaining. Scribes also had to abadon their business model when the printing press was invented&#8230;</p>
<p>Summary: some interesting talks, many boring presentations, and a shocking keynote at the end. But a good opportunity to meet people, see other perspectives and raise one&#8217;s voice. Still not sure whether we should go to Valencia, thoguh.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schaffert.eu/2009/11/25/future-internet-assembly-stockholm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

