<?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>bitwalker.nl &#187; testing</title>
	<atom:link href="http://www.bitwalker.nl/blog/category/testing/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bitwalker.nl</link>
	<description>agile software development</description>
	<lastBuildDate>Sun, 15 Aug 2010 20:49:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automatic application deployment with Maven and Luntbuild</title>
		<link>http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild</link>
		<comments>http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild#comments</comments>
		<pubDate>Sat, 01 Nov 2008 18:40:24 +0000</pubDate>
		<dc:creator>Harald Walker</dc:creator>
				<category><![CDATA[agile]]></category>
		<category><![CDATA[continuous integration]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.bitwalker.nl/?p=56</guid>
		<description><![CDATA[When we started the Tripolis Dialogue project years ago, we directly created a continuous integration environment with a build server periodically running tests. For a long time, the missing part has been the deployment to test servers. Test server deployments had to be done manually, which was time consuming and error prone. It also meant, [...]]]></description>
			<content:encoded><![CDATA[<p>When we started the Tripolis Dialogue project years ago, we directly created a continuous integration environment with a build server periodically running tests. For a long time, the missing part has been the deployment to test servers. Test server deployments had to be done manually, which was time consuming and error prone. It also meant, that testers did not always have the most current version directly available, leading to a waterfall style of development and testing. It was clear, that we really had to shorten the development/testing cycle and make it easier to support multiple versions of our application.<br />
Part of the technical challenge was, that we had to deploy 5 web-applications (running on <a href="http://caucho.com/resin-3.1/doc/">Resin</a> as application server) and 4 daemon processes (all Java).</p>
<p>We found a working solution in a combination of a custom Ant plugin for <a href="http://maven.apache.org">Maven</a>, Maven as build tool, shell scripts and Luntbuild. It took us quiet a while to figure it all out and get it right, but now we are deploying multiple versions each night and can also trigger deployments manually. In this post I am going to show how we solved it.<span id="more-56"></span></p>
<p><strong>1. Ant Plugin for Maven</strong><br />
We were not able to find existing Maven plugins for the tasks of copying, unpacking and remotely managing applications, so we decided to write our own <a href="http://maven.apache.org/guides/plugin/guide-ant-plugin-development.html">Ant Plugin for Maven</a>, which allowed us to use tasks like <a href="http://ant.apache.org/manual/OptionalTasks/sshexec.html">sshexec</a> and <a href="http://ant.apache.org/manual/OptionalTasks/scp.html">scp</a>.<br />
The plugin basically only needs 3 files: an  ant build script, a mapping document and of course Maven&#8217;s POM. The image below shows the Eclipse project for the plugin.</p>
<p><a href="http://www.bitwalker.nl/wp-content/uploads/2008/11/maven-plugin.png" rel="lightbox"><img class="size-full wp-image-57" title="Ant Plugin for Maven project in Eclipse" src="http://www.bitwalker.nl/wp-content/uploads/2008/11/maven-plugin.png" alt="" width="388" height="201" /></a></p>
<p>The ant script <em>rollout.build.xml</em> performs tasks like SSH commands and SCP and accepts various parameters, which allow us to use it in a very flexible way. In the code example below, you can see two targets, one for the web applications and one for the daemon processes.</p>
<p><a href="http://www.bitwalker.nl/wp-content/uploads/2008/11/rolloutbuild.png" rel="lightbox"><img class="alignnone size-medium wp-image-74" title="rollout.build.xml" src="http://www.bitwalker.nl/wp-content/uploads/2008/11/rolloutbuild-300x180.png" alt="" width="300" height="180" /></a></p>
<p>In order to use the ant script, a mapping document has to be created to tell Maven how to use our plugin.</p>
<p><a href="http://www.bitwalker.nl/wp-content/uploads/2008/11/mojo-xml.png" rel="lightbox"><img class="alignnone size-thumbnail wp-image-76" title="rollout.mojos.xml" src="http://www.bitwalker.nl/wp-content/uploads/2008/11/mojo-xml-150x150.png" alt="" width="150" height="150" /></a></p>
<p>Because we use SSH/SCP, ant-jsch and jsch have to be added as dependencies to the pom.xml of the plugin. Here we also specified the more user-friendly prefix &#8216;rollout&#8217;, so that we can reference our new plugin with rollout:daemon and rollout:webapp. Don&#8217;t forget to update settings.xml when using the prefix.</p>
<p><a href="http://www.bitwalker.nl/wp-content/uploads/2008/11/pom-xml.png" rel="lightbox"><img class="alignnone size-thumbnail wp-image-80" title="Part of the pom.xml of the plugin" src="http://www.bitwalker.nl/wp-content/uploads/2008/11/pom-xml-150x150.png" alt="Part of the pom.xml of the plugin" width="150" height="150" /></a></p>
<p>If you want to to execute the script automatically as part of one of the Maven lifecycles, you can add the plugin to the pom.xml of your project as described in the <a href="http://maven.apache.org/guides/plugin/guide-ant-plugin-development.html">Guide to Developing Ant Plugins</a>. Originally we used the &#8217;site&#8217; lifecycle to create the project sites and deploy the application as well but that slowed the deployment process down too much. Sometime you want to be able to release a new version as fast as possible.</p>
<p><strong>2. Shell scripts for starting/stopping applications</strong><br />
On the test server we are using standard shell scripts to manage the applications. Just as the ant script, these shell scripts accept various parameters, so we can use them for multiple deployments.</p>
<p><a href="http://www.bitwalker.nl/wp-content/uploads/2008/11/parameterized-shell-script.png" rel="lightbox"><img class="alignnone size-thumbnail wp-image-85" title="parameterized shell script" src="http://www.bitwalker.nl/wp-content/uploads/2008/11/parameterized-shell-script-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>3. Luntbuild</strong></p>
<p>In <a href="http://luntbuild.javaforge.com/">Luntbuild</a> &#8211; an open source build automation and management tool &#8211; we bring the loose ends together and configure the dynamic parameters for the build and deployment process. The project/scheduler concept of Luntbuild combined with a series of builders make it easy to handle multiple versions of our software.</p>
<p>For the nightly deployment on trunk we use a schedule (screenshot below), which first builds the project (clean install) and then post-build process will setup a database on the test server and deploy all 9 applications.</p>
<p><a href="http://www.bitwalker.nl/wp-content/uploads/2008/11/deploy-schedule.png" rel="lightbox"><img class="alignnone size-thumbnail wp-image-99" title="deploy-schedule" src="http://www.bitwalker.nl/wp-content/uploads/2008/11/deploy-schedule-150x150.png" alt="" width="150" height="150" /></a></p>
<p>The builder then uses Maven to execute the deployment goal of our plugin and provides the necessary parameters. As you can see, it is possible to pass parameters from the schedule to the builder and this way it is possible to re-use the builder in many ways. Unfortunately it is not possible to share builders between projects in Luntbuild.</p>
<p><a href="http://www.bitwalker.nl/wp-content/uploads/2008/11/deployment-builder.png" rel="lightbox"><img class="alignnone size-thumbnail wp-image-101" title="deployment-builder" src="http://www.bitwalker.nl/wp-content/uploads/2008/11/deployment-builder-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Conclusion</strong></p>
<p>With this workflow we were able to achieve our goal. Deployment is now part of our continuous integration system. Every night each release which is in development is automatically being deployed to our test servers and if necessary we can manually start deployments during the day. All of this saved a lot of time and trouble. It is a very flexible and expandable solutions but the flexibility also added some complexity.</p>
<p>What is missing now are the setup and configuration steps for the test systems and databases. At the moment there are still some manual steps necessary to get a new deployment environment ready.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;title=Automatic+application+deployment+with+Maven+and+Luntbuild" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;title=Automatic+application+deployment+with+Maven+and+Luntbuild" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;title=Automatic+application+deployment+with+Maven+and+Luntbuild" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=Automatic+application+deployment+with+Maven+and+Luntbuild&amp;url=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;title=Automatic+application+deployment+with+Maven+and+Luntbuild" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;title=Automatic+application+deployment+with+Maven+and+Luntbuild" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;title=Automatic+application+deployment+with+Maven+and+Luntbuild" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;title=Automatic+application+deployment+with+Maven+and+Luntbuild&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;title=Automatic+application+deployment+with+Maven+and+Luntbuild" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;title=Automatic+application+deployment+with+Maven+and+Luntbuild" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;title=Automatic+application+deployment+with+Maven+and+Luntbuild" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;title=Automatic+application+deployment+with+Maven+and+Luntbuild" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild&amp;t=Automatic+application+deployment+with+Maven+and+Luntbuild" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.bitwalker.nl/blog/automatic-application-deployment-with-maven-and-luntbuild/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CITCON Europe 2008 – Less is more</title>
		<link>http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more</link>
		<comments>http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more#comments</comments>
		<pubDate>Sat, 04 Oct 2008 18:56:23 +0000</pubDate>
		<dc:creator>Harald Walker</dc:creator>
				<category><![CDATA[agile]]></category>
		<category><![CDATA[continuous integration]]></category>
		<category><![CDATA[openspace]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.bitwalker.nl/?p=54</guid>
		<description><![CDATA[The CITCON Europe 2008 conference this weekend has been my 3rd open space conference. It was also the largest so far. I wasn’t able to get as much out of it as last time and partly I think this had to do with the size. More participants meant more proposed topics (ca. 60), while at [...]]]></description>
			<content:encoded><![CDATA[<p><a title="2008-10-03 at 19-50-28 by sonicwalker, on Flickr" href="http://www.flickr.com/photos/sonicwalker/2909967807/"><img src="http://farm4.static.flickr.com/3251/2909967807_dea27e19c4_m.jpg" alt="2008-10-03 at 19-50-28" width="240" height="160" align="right" /></a>The <a href="http://citconf.com/amsterdam2008/index.php">CITCON Europe 2008</a> conference this weekend has been my 3rd <a href="http://www.openspaceworld.org/">open space</a> conference. It was also the largest so far. I wasn’t able to get as much out of it as last time and partly I think this had to do with the size. More participants meant more proposed topics (ca. 60), while at the same time the available space and time slots for topics did not increase (5 x 5). This resulted in most topics being moved around a lot and being combined with others in one time slot. According to the open space principles the person who suggested a topic is responsible to steer the talk but once topics are being combined, it is then up to the topic owners to combine and coordinate their talks, often without any time to prepare.</p>
<p>Also many talks were quiet full, which according to my experience doesn’t contribute to deep discussions and exchange of thoughts. In large groups typically some and often the same people stand out and dominate the discussion with their opinion, while in a smaller group it is usually more balanced.</p>
<p>So my conclusion is, that also here less is more. A smaller conference might make it more difficult to find sponsors but on the other hand costs would also be much lower. The alternative could be to expand the conference in space and time but then costs would go up. Personally I would rather have a small conference each quarter than one or two large ones per year. 50-60 seems to be a good number of participants for open space conferences.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;title=CITCON+Europe+2008+%E2%80%93+Less+is+more" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;title=CITCON+Europe+2008+%E2%80%93+Less+is+more" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;title=CITCON+Europe+2008+%E2%80%93+Less+is+more" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=CITCON+Europe+2008+%E2%80%93+Less+is+more&amp;url=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;title=CITCON+Europe+2008+%E2%80%93+Less+is+more" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;title=CITCON+Europe+2008+%E2%80%93+Less+is+more" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;title=CITCON+Europe+2008+%E2%80%93+Less+is+more" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;title=CITCON+Europe+2008+%E2%80%93+Less+is+more&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;title=CITCON+Europe+2008+%E2%80%93+Less+is+more" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;title=CITCON+Europe+2008+%E2%80%93+Less+is+more" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;title=CITCON+Europe+2008+%E2%80%93+Less+is+more" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;title=CITCON+Europe+2008+%E2%80%93+Less+is+more" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more&amp;t=CITCON+Europe+2008+%E2%80%93+Less+is+more" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.bitwalker.nl/blog/citcon-europe-2008-%e2%80%93-less-is-more/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CITCON Europe 2008 started</title>
		<link>http://www.bitwalker.nl/blog/citcon-europe-2008-started</link>
		<comments>http://www.bitwalker.nl/blog/citcon-europe-2008-started#comments</comments>
		<pubDate>Fri, 03 Oct 2008 22:27:56 +0000</pubDate>
		<dc:creator>Harald Walker</dc:creator>
				<category><![CDATA[agile]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.bitwalker.nl/?p=53</guid>
		<description><![CDATA[Today CITCON Europe 2008 started in Amsterdam. CITCON is the Continuous Integration and Testing Conference, which brings together people from every corner of the software development industry to discuss Continuous Integration and the type of Testing that goes along with it. This year CITCON Europe had much more registrations than last year in Brussels and [...]]]></description>
			<content:encoded><![CDATA[<p><a title="2008-10-03 at 19-29-08 by sonicwalker, on Flickr" href="http://www.flickr.com/photos/sonicwalker/2909967625/"><img class="alignright" src="http://farm4.static.flickr.com/3241/2909967625_58699b4522_m.jpg" alt="2008-10-03 at 19-29-08" width="240" height="159" /></a>Today CITCON Europe 2008 started in Amsterdam. <a href="http://citconf.com/">CITCON</a> is the Continuous Integration and Testing Conference, which brings together people from every corner of the software development industry to discuss Continuous Integration and the type of Testing that goes along with it. This year CITCON Europe had much more registrations than last year in Brussels and was it was interesting to hear how people heard about it when we did the introduction round. Many heard about CITCON from friends and colleagues. That really seems to be the key success factor.<br />
After the introductions round, session ideas for tomorrow were presented. For the first time at an open space conference I also suggested a session. I would like to talk about automatic deployment and release management. I can share the experience of our software project and am looking forward to learn how other teams are doing it.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bitwalker.nl/blog/citcon-europe-2008-started" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;title=CITCON+Europe+2008+started" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;title=CITCON+Europe+2008+started" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;title=CITCON+Europe+2008+started" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=CITCON+Europe+2008+started&amp;url=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;title=CITCON+Europe+2008+started" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.bitwalker.nl/blog/citcon-europe-2008-started" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;title=CITCON+Europe+2008+started" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;title=CITCON+Europe+2008+started" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;title=CITCON+Europe+2008+started&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;title=CITCON+Europe+2008+started" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;title=CITCON+Europe+2008+started" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;title=CITCON+Europe+2008+started" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;title=CITCON+Europe+2008+started" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bitwalker.nl/blog/citcon-europe-2008-started" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bitwalker.nl/blog/citcon-europe-2008-started&amp;t=CITCON+Europe+2008+started" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.bitwalker.nl/blog/citcon-europe-2008-started/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CITCON Europe 2007 invitation</title>
		<link>http://www.bitwalker.nl/blog/citcon-europe-2007-invitation</link>
		<comments>http://www.bitwalker.nl/blog/citcon-europe-2007-invitation#comments</comments>
		<pubDate>Mon, 03 Sep 2007 20:05:36 +0000</pubDate>
		<dc:creator>Harald Walker</dc:creator>
				<category><![CDATA[agile]]></category>
		<category><![CDATA[continuous integration]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.bitwalker.nl/blog/citcon-europe-2007-invitation</guid>
		<description><![CDATA[I will just pass on this invitation for the upcoming Continuous Integration and Testing Conference in Brussels:
Jeffrey Fredrick and Paul Julius, on behalf of the Open Information
Foundation, are pleased to announce CITCON Europe 2007 will be held in
Brussels on October 19 &#38; 20. CITCON is free to attend.
CITCON (Continuous Integration and Testing Conference) brings together
people [...]]]></description>
			<content:encoded><![CDATA[<p>I will just pass on this invitation for the upcoming Continuous Integration and Testing Conference in Brussels:</p>
<blockquote><p>Jeffrey Fredrick and Paul Julius, on behalf of the Open Information<br />
Foundation, are pleased to announce CITCON Europe 2007 will be held in<br />
Brussels on October 19 &amp; 20. CITCON is free to attend.<br />
CITCON (Continuous Integration and Testing Conference) brings together<br />
people from every corner of the software development industry to discuss<br />
Continuous Integration and the type of Testing that goes along with it.<br />
They just wrapped up CITCON Sydney at the end of July. Everyone really<br />
enjoyed themselves and learned a lot. It was the largest CITCON event,<br />
yet. They are hoping to make CITCON Brussels even larger.<br />
If you would like to register for CITCON, please visit the website.<br />
<a href="http://citconf.com/brussels2007">http://citconf.com/brussels2007</a><br />
<a href="http://citconf.com/brussels2007/register.php">http://citconf.com/brussels2007/register.php</a><br />
If you have any questions, please feel free to contact CITCON at info at<br />
citconf dot com. I hope to everyone can make it to CITCON Brussels in<br />
October!</p></blockquote>
<p>As developer and Scrum Master I have been more and more involved with continuous integration and automated testing this year. I registered for the conference as I feel that it would be good for me to learn more about this area. It will also be my first <a href="http://citconf.com/brussels2007/openspace.php">Open Space</a> conference.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.bitwalker.nl/blog/citcon-europe-2007-invitation" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;title=CITCON+Europe+2007+invitation" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;title=CITCON+Europe+2007+invitation" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;title=CITCON+Europe+2007+invitation" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=CITCON+Europe+2007+invitation&amp;url=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;title=CITCON+Europe+2007+invitation" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;title=CITCON+Europe+2007+invitation" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;title=CITCON+Europe+2007+invitation" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;title=CITCON+Europe+2007+invitation&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;title=CITCON+Europe+2007+invitation" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;title=CITCON+Europe+2007+invitation" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;title=CITCON+Europe+2007+invitation" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;title=CITCON+Europe+2007+invitation" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.bitwalker.nl/blog/citcon-europe-2007-invitation&amp;t=CITCON+Europe+2007+invitation" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.bitwalker.nl/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.bitwalker.nl/blog/citcon-europe-2007-invitation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
