<?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>Divide and Conquer &#187; Softhouse</title>
	<atom:link href="http://www.divideandconquer.se/tag/softhouse/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.divideandconquer.se</link>
	<description>David's Software Development Blog</description>
	<lastBuildDate>Sun, 15 Jan 2012 17:13:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Marker and polygon tooltips in Google Maps v3</title>
		<link>http://www.divideandconquer.se/2011/09/15/marker-and-polygon-tooltips-in-google-maps-v3/</link>
		<comments>http://www.divideandconquer.se/2011/09/15/marker-and-polygon-tooltips-in-google-maps-v3/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 07:05:17 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Web developmnet]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Softhouse]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=698</guid>
		<description><![CDATA[Before I get into the details, please note that this is a quick &#38; dirty solution using google.maps.InfoWindow. No demo, sorry, but please add your improvements in the comments! Marker tooltip I start with the marker, as it is the simplest implementation: function attachMarkerInfoWindow(marker, html) { marker.infoWindow = new google.maps.InfoWindow({ content: html, }); google.maps.event.addListener(marker, 'mouseover', [...]]]></description>
			<content:encoded><![CDATA[<p>Before I get into the details, please note that this is a quick &amp; dirty solution using <em>google.maps.InfoWindow</em>. No demo, sorry, but please add your improvements in the comments!</p>
<h3>Marker tooltip</h3>
<p>I start with the marker, as it is the simplest implementation:</p>
<pre id="line10">function attachMarkerInfoWindow(marker, html)
{
	marker.infoWindow = new google.maps.InfoWindow({
		content: html,
	});
	google.maps.event.addListener(marker, 'mouseover', function() {
		marker.infoWindow.open(map,marker);
	});
	google.maps.event.addListener(marker, 'mouseout', function() {
		marker.infoWindow.close();
	});
}

var marker = new google.maps.Marker({
	position: new google.maps.LatLng(56.183182,15.593239),
});

attachMarkerInfoWindow(marker, '&lt;strong&gt;Softhouse office&lt;/strong&gt;');</pre>
</pre>
<h3>Polygon tooltip</h3>
<p>A polygon does not contain a single position, so where should the tooltip show? One option is to calculate the center of the polygon using <em>getCenter()</em> on <em>google.maps.LatLngBounds</em>, but I decided to use the position of the <em>mouseover</em> event as the position of the InfoWindow. Think about it; the center of the polygon may not actually be inside the polygon!</p>
<p>As a bonus I change the fill opacity while the mouse cursor is inside the polygon.</p>
<pre id="line10">function attachPolygonInfoWindow(polygon, html)
{
	polygon.infoWindow = new google.maps.InfoWindow({
		content: html,
	});
	google.maps.event.addListener(polygon, 'mouseover', function(e) {
		var latLng = e.latLng;
		this.setOptions({fillOpacity:0.1});
		polygon.infoWindow.setPosition(latLng);
		polygon.infoWindow.open(map);
	});
	google.maps.event.addListener(polygon, 'mouseout', function() {
		this.setOptions({fillOpacity:0.35});
		polygon.infoWindow.close();
	});
}

var polygon = new google.maps.Polygon(/* omitted for brevity */);
attachPolygonInfoWindow(polygon, '&lt;strong&gt;Info about this area&lt;/strong&gt;');</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2011/09/15/marker-and-polygon-tooltips-in-google-maps-v3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Øresund Agile 2010 has been cancelled</title>
		<link>http://www.divideandconquer.se/2010/04/21/%c3%b8resund-agile-2010-has-been-cancelled/</link>
		<comments>http://www.divideandconquer.se/2010/04/21/%c3%b8resund-agile-2010-has-been-cancelled/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 13:59:08 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Softhouse]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=642</guid>
		<description><![CDATA[It seems like too few people registered for Øresund Agile 2010: As painful as it is, we have deemed it necessary to cancel this years conference.]]></description>
			<content:encoded><![CDATA[<p>It seems like too few people registered for <a href="http://www.oresundagile.org/" onclick="pageTracker._trackPageview('/outgoing/www.oresundagile.org/?referer=');">Øresund Agile 2010</a>:</p>
<blockquote><p>As painful as it is, we have deemed it necessary to cancel this years  conference.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2010/04/21/%c3%b8resund-agile-2010-has-been-cancelled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Q&amp;A with Andy Hunt on Pragmatic Thinking &amp; Learning</title>
		<link>http://www.divideandconquer.se/2009/04/20/qa-with-andy-hunt-on-pragmatic-thinking-learning/</link>
		<comments>http://www.divideandconquer.se/2009/04/20/qa-with-andy-hunt-on-pragmatic-thinking-learning/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 06:44:11 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Andy Hunt]]></category>
		<category><![CDATA[Øresund Agile]]></category>
		<category><![CDATA[Pragmatic Programmers]]></category>
		<category><![CDATA[Softhouse]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=340</guid>
		<description><![CDATA[An fun privilege for me as a Softhouse employee was the opportunity to make a short interview with Andy Hunt, of Pragmatic Programmer fame,  about his latest book Pragmatic Thinking &#38; Learning and the Øresund Agile workshop with the same title.]]></description>
			<content:encoded><![CDATA[<p>An fun privilege for me as a Softhouse employee was the opportunity to make <a href="http://oresundagile.org/blog/andy-hunt-on-pragmatic-thinking-learning" onclick="pageTracker._trackPageview('/outgoing/oresundagile.org/blog/andy-hunt-on-pragmatic-thinking-learning?referer=');">a short interview with Andy Hunt</a>, of Pragmatic Programmer fame,  about his latest book <em>Pragmatic Thinking &amp; Learning</em> and the <a href="http://oresundagile.org/workshop-5" onclick="pageTracker._trackPageview('/outgoing/oresundagile.org/workshop-5?referer=');">Øresund Agile workshop</a> with the same title.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2009/04/20/qa-with-andy-hunt-on-pragmatic-thinking-learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Øresund Agile 2009 web site is now open!</title>
		<link>http://www.divideandconquer.se/2009/02/16/oresund-agile-2009-web-site-has-opened/</link>
		<comments>http://www.divideandconquer.se/2009/02/16/oresund-agile-2009-web-site-has-opened/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 07:47:44 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Andy Hunt]]></category>
		<category><![CDATA[Øresund Agile]]></category>
		<category><![CDATA[Pragmatic Programmers]]></category>
		<category><![CDATA[Softhouse]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=304</guid>
		<description><![CDATA[I&#8217;m not sure if I can make it to Øresund Agile 2009 on May 12-14, but I sure would like to participate in Pragmatic Programmer Andy Hunt&#8217;s workshop on Pragmatic Thinking and Learning! I&#8217;m close to the end of my first reading of the book with the same title.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure if I can make it to <a href="http://oresundagile.org/" onclick="pageTracker._trackPageview('/outgoing/oresundagile.org/?referer=');">Øresund Agile 2009</a> on May 12-14, but I sure would like to participate in Pragmatic Programmer Andy Hunt&#8217;s <a href="http://oresundagile.org/workshop-5" onclick="pageTracker._trackPageview('/outgoing/oresundagile.org/workshop-5?referer=');">workshop on Pragmatic Thinking and Learning</a>! I&#8217;m close to the end of my first reading of <a href="http://www.pragprog.com/titles/ahptl/pragmatic-thinking-and-learning" onclick="pageTracker._trackPageview('/outgoing/www.pragprog.com/titles/ahptl/pragmatic-thinking-and-learning?referer=');">the book with the same title</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2009/02/16/oresund-agile-2009-web-site-has-opened/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nordic Agile starts tomorrow</title>
		<link>http://www.divideandconquer.se/2008/11/30/nordic-agile-starts-tomorrow/</link>
		<comments>http://www.divideandconquer.se/2008/11/30/nordic-agile-starts-tomorrow/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 11:54:39 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Nordic Agile]]></category>
		<category><![CDATA[Softhouse]]></category>
		<category><![CDATA[Sweden]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/2008/11/30/282/</guid>
		<description><![CDATA[Nordic Agile starts tomorrow. Maybe there are a few seats left if you haven&#8217;t registered already? &#160;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.softhouse.se/nordicagile" target="_self" onclick="pageTracker._trackPageview('/outgoing/www.softhouse.se/nordicagile?referer=');">Nordic Agile</a> starts tomorrow. Maybe there are a few seats left if you haven&#8217;t registered already?</p>
<p><a href="http://www.softhouse.se/nordicagile" target="_self" onclick="pageTracker._trackPageview('/outgoing/www.softhouse.se/nordicagile?referer=');"><img height="69" border="0" width="320" alt="" src="http://www.divideandconquer.se/wp-content/uploads/Nordic-Agile.jpg" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2008/11/30/nordic-agile-starts-tomorrow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nordic Agile in Stockholm on December 1-4</title>
		<link>http://www.divideandconquer.se/2008/10/10/nordic-agile-in-stockholm-on-december-1-4/</link>
		<comments>http://www.divideandconquer.se/2008/10/10/nordic-agile-in-stockholm-on-december-1-4/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 19:19:11 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Øresund Agile]]></category>
		<category><![CDATA[Nordic Agile]]></category>
		<category><![CDATA[Softhouse]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/2008/10/10/nordic-agile-in-stockholm-on-december-1-4/</guid>
		<description><![CDATA[&#216;resund Agile goes Nordic Agile! Scrum for team members is a workshop directed to the developers and testers in an agile team,, an obviously very important component in an agile project but maybe not so much the primary target for conferences and the like. I liked Jim Coplien&#8217;s Agile Architecture session on &#216;resund Agile 2008 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.oresundagile.com/" target="_self" onclick="pageTracker._trackPageview('/outgoing/www.oresundagile.com/?referer=');">&Oslash;resund Agile</a> goes <a href="http://www.softhouse.se/dynamic.asp?levels_id=197&amp;link=7&amp;mall=1&amp;parent=10" target="_self" onclick="pageTracker._trackPageview('/outgoing/www.softhouse.se/dynamic.asp?levels_id=197_amp_link=7_amp_mall=1_amp_parent=10&amp;referer=');">Nordic Agile</a>!</p>
<p><a href="http://www.softhouse.se/dynamic.asp?levels_id=198&amp;link=7&amp;mall=1&amp;parent=10" target="_self" onclick="pageTracker._trackPageview('/outgoing/www.softhouse.se/dynamic.asp?levels_id=198_amp_link=7_amp_mall=1_amp_parent=10&amp;referer=');">Scrum for team members</a> is a workshop directed to the developers and testers in an agile team,, an obviously very important component in an agile project but maybe not so much the primary target for conferences and the like.</p>
<p>I liked Jim Coplien&#8217;s <a target="_self" href="/2008/06/09/agile-architecture-on-%C3%B8resund-agile-2008/">Agile Architecture</a> session on &Oslash;resund Agile 2008 very much so I&#8217;m pretty sure I can recommend his workshops at Nordic Agile. (Btw, I saw him rushing by at Kastrup Airport the other week!)&nbsp;</p>
<p>The agile team that I&#8217;m part of will most likely be delivering version 1.0 of our current project around those dates, so I won&#8217;t be going but I hope you will. Read more on the <a href="http://www.softhouse.se/dynamic.asp?levels_id=197&amp;link=7&amp;mall=1&amp;parent=10" target="_self" onclick="pageTracker._trackPageview('/outgoing/www.softhouse.se/dynamic.asp?levels_id=197_amp_link=7_amp_mall=1_amp_parent=10&amp;referer=');">Nordic Agile</a> web page!</p>
<p>I almost forgot, Clarion Hotel is really nice too! :-)</p>
<p>On a related note: I like the word the Norweigans use for <i>agile</i>: <a href="http://www.smidig.no/" target="_self" onclick="pageTracker._trackPageview('/outgoing/www.smidig.no/?referer=');">smidig</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2008/10/10/nordic-agile-in-stockholm-on-december-1-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Øresund Agile 2008 Conference Day</title>
		<link>http://www.divideandconquer.se/2008/06/16/%c3%b8resund-agile-2008-conference-day/</link>
		<comments>http://www.divideandconquer.se/2008/06/16/%c3%b8resund-agile-2008-conference-day/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 07:32:50 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Øresund Agile]]></category>
		<category><![CDATA[Scrum]]></category>
		<category><![CDATA[Softhouse]]></category>
		<category><![CDATA[Sweden]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/2008/06/16/%c3%b8resund-agile-2008-conference-day/</guid>
		<description><![CDATA[(Continued from Accelerated Agile on &#216;resund Agile 2008.) After two days of workshops, Wednesday was the conference day. Two sessions specifically addressed distributed Scrum: having teams, or part of teams, in different geographic locations. The presentation by Scrum co-creator Jeff Sutherland was great but also a bit utopian while the other, by Arto Vihavainen and [...]]]></description>
			<content:encoded><![CDATA[<p>(Continued from <a href="/2008/06/11/accelerated-agile-on-%c3%b8resund-agile-2008/" target="_self">Accelerated Agile on &Oslash;resund Agile 2008</a>.)</p>
<p>After two days of workshops, Wednesday was the conference day. Two sessions specifically addressed distributed Scrum: having teams, or part of teams, in different geographic locations. The presentation by Scrum co-creator Jeff Sutherland was great but also a bit utopian while the other, by Arto Vihavainen and Muqeet Kahn from Qvantel, was not only interesting but also very down to earth. Tobias Fors from Citerus had a very the best presentation slides and Henrik Kniberg told a great tale of Scrum and XP adoption.</p>
<p>Next year&#8217;s conference, obviously &Oslash;resund Agile 2009, will be in Copenhagen on May 12-14. Add it to your calendar right now! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2008/06/16/%c3%b8resund-agile-2008-conference-day/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Accelerated Agile on Øresund Agile 2008</title>
		<link>http://www.divideandconquer.se/2008/06/11/accelerated-agile-on-%c3%b8resund-agile-2008/</link>
		<comments>http://www.divideandconquer.se/2008/06/11/accelerated-agile-on-%c3%b8resund-agile-2008/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 20:38:15 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Øresund Agile]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Scrum]]></category>
		<category><![CDATA[Softhouse]]></category>
		<category><![CDATA[Sweden]]></category>
		<category><![CDATA[TDD]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/2008/06/11/accelerated-agile-on-%c3%b8resund-agile-2008/</guid>
		<description><![CDATA[Yesterday I participated in the Accelerated Agile workshop at &#216;resund Agile 2008. It was attended by both developers and non-developers. Some parts of the workshop were common for the two groups and others were separate.&#160; Me and another developer actually did both TDD and pair programming! BestBrains, the company that organized the workshop, had prepared [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I participated in the Accelerated Agile workshop at <a href="http://www.oresundagile.com/" target="_self" onclick="pageTracker._trackPageview('/outgoing/www.oresundagile.com/?referer=');">&Oslash;resund Agile</a> 2008. It was attended by both developers and non-developers. Some parts of the workshop were common for the two groups and others were separate.&nbsp; Me and another developer actually did both TDD and pair programming! BestBrains, the company that organized the workshop, had prepared an Eclipse project in a Subversion repository, using Maven to build and with CruiseControl for automated build on commit. We pair programmed on an MS Windows machine but I tried on my Ubuntu Linux machine to and it worked fine.</p>
<p><b>Update</b> <a target="_self" href="http://www.bestbrains.dk/Blog/2008/06/11/BackFrom%c3%96resundAgile2008.aspx" onclick="pageTracker._trackPageview('/outgoing/www.bestbrains.dk/Blog/2008/06/11/BackFrom_c3_96resundAgile2008.aspx?referer=');">Photos and comments from BestBrains</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2008/06/11/accelerated-agile-on-%c3%b8resund-agile-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agile Architecture on Øresund Agile 2008</title>
		<link>http://www.divideandconquer.se/2008/06/09/agile-architecture-on-%c3%b8resund-agile-2008/</link>
		<comments>http://www.divideandconquer.se/2008/06/09/agile-architecture-on-%c3%b8resund-agile-2008/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 21:23:15 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Øresund Agile]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Scrum]]></category>
		<category><![CDATA[Softhouse]]></category>
		<category><![CDATA[Sweden]]></category>
		<category><![CDATA[TDD]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/2008/06/09/agile-architecture-on-%c3%b8resund-agile-2008/</guid>
		<description><![CDATA[Today, on the first day of &#216;resund Agile 2008, I attended the Agile Architecture workshop held by Jim Coplien. He is a really great speaker! Some things that stuck in my head: Don&#8217;t use TDD, it destroys architecture because it makes the programmer focus on individual methods, losing the bigger picture on the way Don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Today, on the first day of <a target="_self" href="http://www.oresundagile.com/" onclick="pageTracker._trackPageview('/outgoing/www.oresundagile.com/?referer=');">&Oslash;resund Agile</a> 2008, I attended the Agile Architecture workshop held by Jim Coplien. He is a really great speaker! Some things that stuck in my head:</p>
<ul>
<li>Don&#8217;t use TDD, it destroys architecture because it makes the programmer focus on individual methods, losing the bigger picture on the way</li>
<li>Don&#8217;t bother with unit tests, they make a bigger code base (equal amounts of application and unit test code is not unlikely), meaning more defects! The system tests should be enough</li>
<li>A subset of system tests that run in less than ten minutes should be used as a smoke test.</li>
<li>For interactive systems he was able to unify Agile software development, Model-View-Controller(-User) and Object Orientation.</li>
<li>MVC inventor <a href="http://heim.ifi.uio.no/~trygver/" target="_self" onclick="pageTracker._trackPageview('/outgoing/heim.ifi.uio.no/_trygver/?referer=');"><span class="attribute-value">Trygve Reenskaug</span></a> was referred to a few times, and Jim told us that Trygve&#8217;s <a target="_self" href="http://folk.uio.no/trygver/themes/babyuml/babyuml-index.html" onclick="pageTracker._trackPageview('/outgoing/folk.uio.no/trygver/themes/babyuml/babyuml-index.html?referer=');"> 		Data-Collaboration-Algorithm</a> (DCA) was going to be the next big thing in software development! (This will be the seventh hit or so on a Google search for &quot;Data-Collaboration-Algorithm&quot;. Maybe I should make a dedicated blog post about it.)</li>
<li>Domain Specific Languages (DSLs) are bad because they add new languages to learn when new people should work on a system, and it takes years to create a good language.</li>
<li>UML could be used to visualize a system, but should be generated from source code. Quote: &quot;No hand should ever touch a UML diagram.&quot;</li>
</ul>
<p>Food for thought, isn&#8217;t it?</p>
<p>The list above is unfortunately a little short on things that Jim advocates but I need some good sleep before the <i>Accelerated Agile </i>workshop tomorrow and my writing would not be half as good as hearing him saying it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2008/06/09/agile-architecture-on-%c3%b8resund-agile-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Øresund Agile 2008 conference program available</title>
		<link>http://www.divideandconquer.se/2008/03/19/%c3%b8resund-agile-2008-conference-program-available/</link>
		<comments>http://www.divideandconquer.se/2008/03/19/%c3%b8resund-agile-2008-conference-program-available/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 15:51:03 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Scrum]]></category>
		<category><![CDATA[Softhouse]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/2008/03/19/%c3%b8resund-agile-2008-conference-program-available/</guid>
		<description><![CDATA[As promised, the conference program for &#216;resund Agile 2008 is now available. Both the workshops and the talks seem really great! See you June 9&#8211;11!]]></description>
			<content:encoded><![CDATA[<p>As promised, the <a target="_self" href="http://www.oresundagile.com/100.asp" onclick="pageTracker._trackPageview('/outgoing/www.oresundagile.com/100.asp?referer=');">conference program</a> for <a target="_self" href="http://www.oresundagile.com/" onclick="pageTracker._trackPageview('/outgoing/www.oresundagile.com/?referer=');">&Oslash;resund Agile 2008</a> is now available. Both the workshops and the talks seem really great! See you <span class="rubrik3"> June 9&ndash;11</span>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2008/03/19/%c3%b8resund-agile-2008-conference-program-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

