<?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; Software Development</title>
	<atom:link href="http://www.divideandconquer.se/category/software-development/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>Pebble &#8211; more injection and less dependencies in PHP</title>
		<link>http://www.divideandconquer.se/2011/10/05/pebble-more-injection-and-less-dependencies-in-php/</link>
		<comments>http://www.divideandconquer.se/2011/10/05/pebble-more-injection-and-less-dependencies-in-php/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 20:03:09 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web developmnet]]></category>
		<category><![CDATA[Pebble]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=712</guid>
		<description><![CDATA[Dependency Injection (DI) is hardly anything new. I see it as a must for Test Driven Development (TDD). The thing I like most about DI in Java is Autowired in Spring or javax.annotation.Resource, they way member variables are set &#8220;magically&#8221; and the exact details about creation and implementation is located elsewhere. For PHP there are [...]]]></description>
			<content:encoded><![CDATA[<p>Dependency Injection (DI) is hardly anything new. I see it as a must for Test Driven Development (TDD). The thing I like most about DI in Java is <a href="http://static.springsource.org/spring/docs/2.5.5/api/org/springframework/beans/factory/annotation/Autowired.html" onclick="pageTracker._trackPageview('/outgoing/static.springsource.org/spring/docs/2.5.5/api/org/springframework/beans/factory/annotation/Autowired.html?referer=');">Autowired in Spring</a> or <a href="http://download.oracle.com/javase/6/docs/api/javax/annotation/Resource.html" onclick="pageTracker._trackPageview('/outgoing/download.oracle.com/javase/6/docs/api/javax/annotation/Resource.html?referer=');">javax.annotation.Resource</a>, they way member variables are set &#8220;magically&#8221; and the exact details about creation and implementation is located elsewhere.</p>
<p>For PHP there are at least the following implementations related to Dependency Injection:</p>
<ul>
<li><a href="http://www.potstuck.com/2010/09/09/php-dependency-a-php-dependency-injection-framework/" onclick="pageTracker._trackPageview('/outgoing/www.potstuck.com/2010/09/09/php-dependency-a-php-dependency-injection-framework/?referer=');">PHP-Dependency (Pd)</a> - A PHP Dependency Injection Framework</li>
<li><a href="http://pimple.sensiolabs.org/" onclick="pageTracker._trackPageview('/outgoing/pimple.sensiolabs.org/?referer=');">Pimple</a> &#8211; A simple Dependency InjectionContainer for PHP 5.3</li>
<li><a href="http://framework.zend.com/wiki/display/ZFDEV2/Zend+DI+QuickStart" onclick="pageTracker._trackPageview('/outgoing/framework.zend.com/wiki/display/ZFDEV2/Zend+DI+QuickStart?referer=');">Zend Framework 2 Dependency Injection</a></li>
</ul>
<p><a href="http://www.potstuck.com/2010/09/09/php-dependency-a-php-dependency-injection-framework/" onclick="pageTracker._trackPageview('/outgoing/www.potstuck.com/2010/09/09/php-dependency-a-php-dependency-injection-framework/?referer=');">PHP-Dependency (Pd)</a> works with @ annotation in the constructor comment, but why involve the constructor? And is a whole <strong>framework</strong> needed? PHP is not Java.</p>
<p><a href="http://pimple.sensiolabs.org/" onclick="pageTracker._trackPageview('/outgoing/pimple.sensiolabs.org/?referer=');">Pimple</a> is very much a Dependency Injection <strong>Container</strong>, not so much about the injection. <strong>Simple</strong>, yes.</p>
<p>When it comes to <a href="http://framework.zend.com/wiki/display/ZFDEV2/Zend+DI+QuickStart" onclick="pageTracker._trackPageview('/outgoing/framework.zend.com/wiki/display/ZFDEV2/Zend+DI+QuickStart?referer=');">Zend Framework 2 Dependency Injection</a> I just can&#8217;t grasp how it simplifies anything. It seems to require a lot of boilerplate.</p>
<p>Unsatisfied with the above and a given a dose of NIH Syndrome, I decided to create my own DI system for PHP. After a bit of coding yesterday evening and night I named it <a href="https://github.com/twogood/pebble" onclick="pageTracker._trackPageview('/outgoing/github.com/twogood/pebble?referer=');">Pebble</a> and it is already on github! :-)</p>
<p>My current requirements on Pebble are as follows:</p>
<ol>
<li>It must be possible to inject values of specific properties on class construction</li>
<li>It must work nicely in Zend Framework 1.x</li>
<li>It must not require any configuration files (and especially no XML)</li>
<li>It must be a single .php file for the core implementation</li>
<li>It must provide an open interface for extension and customization</li>
<li>It must work nicely with PHPUnit (especially with the getMock method)</li>
<li>It must work with autoloading of classes in PHP</li>
<li>It is allowed to use PHP 5.3 features</li>
<li>It is allowed to use @-based annotations in docComment, e.g. /** @something */</li>
</ol>
<p>However, I have not yet used Pebble with PHPUnit, so I don&#8217;t know yet if that requirement holds!</p>
<p>Now is a good time for you to examine <a href="https://github.com/twogood/pebble/blob/master/example1.php" target="_blank" onclick="pageTracker._trackPageview('/outgoing/github.com/twogood/pebble/blob/master/example1.php?referer=');">example1.php</a>! The <a href="https://github.com/twogood/pebble/blob/master/README" target="_blank" onclick="pageTracker._trackPageview('/outgoing/github.com/twogood/pebble/blob/master/README?referer=');">README</a> is currently plain-text, I&#8217;ll format it later!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2011/10/05/pebble-more-injection-and-less-dependencies-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging, sharing, status updates, everywhere?</title>
		<link>http://www.divideandconquer.se/2011/07/02/blogging-sharing-status-updates-everywhere/</link>
		<comments>http://www.divideandconquer.se/2011/07/02/blogging-sharing-status-updates-everywhere/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 09:53:47 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web developmnet]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=683</guid>
		<description><![CDATA[I&#8217;ve realized a long time ago that my personal web diary in in Swedish – 2good.nu – has been obsoleted by my Facebook account. Same with the diary for our first-born child. I didn&#8217;t even start a blog for our second child. This is quite OK, as my home-made web diary software – even rewritten [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve realized a long time ago that my personal web diary in in Swedish – <a href="http://2good.nu/" onclick="pageTracker._trackPageview('/outgoing/2good.nu/?referer=');">2good.nu</a> – has been obsoleted by my Facebook account. Same with the diary for our first-born child. I didn&#8217;t even start a blog for our second child.</p>
<p>This is quite OK, as my home-made web diary software – even rewritten in Zend Framework – will never have the same features as Facebook. There are no comments, photo uploads, likes, mentions of friends, etc, that the existing social networks already implement.</p>
<p>Of course I also have a Twitter account, <a href="https://twitter.com/#!/davideriksson" onclick="pageTracker._trackPageview('/outgoing/twitter.com/_/davideriksson?referer=');">@davideriksson</a>, that complements this blog with mostly English-language updates regarding software development and related topics. I actually use <a href="http://www.google.com/buzz" onclick="pageTracker._trackPageview('/outgoing/www.google.com/buzz?referer=');">Google Buzz</a> for sharing some stuff with friends, and it is also connected to my Twitter account.</p>
<p>I never use my <a href="http://www.orkut.com/" onclick="pageTracker._trackPageview('/outgoing/www.orkut.com/?referer=');">Orkut</a> account so let&#8217;s ignore that. Should I mention <a href="http://www.linkedin.com/in/davideriksson" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/in/davideriksson?referer=');">my LinkedIn account</a>? By its nature it is almost purely for my professional relations.</p>
<p>Now comes <a href="https://plus.google.com/" onclick="pageTracker._trackPageview('/outgoing/plus.google.com/?referer=');">Google+</a> and I will give it a try as soon as they accept the invitation I have. Should I spend/waste my time on yet another social network, connected to more or less the same people?</p>
<p>What I want is to publish stuff (blog posts, links, photos, videos, status updates) in one place, and have it reach the desired target group (or Social Cicle, in Google+ speak). Something like <a href="https://joindiaspora.com/" onclick="pageTracker._trackPageview('/outgoing/joindiaspora.com/?referer=');">Diaspora</a> sounds like a good idea, but it is not click-and-play and does it integrate with the other social networks mentioned previously? I&#8217;m not so sure.</p>
<p>Ideally I publish something on Facebook and it ends up in the corresponding social circles in Google+, and the other way around.</p>
<p>Another solution would to be that I publish everything from my personal site, and it pushes it to the corresponding systems. Maybe I have to implement photo upload after all? And build an Android client? No, I should not have to.</p>
<p>A better solution would be that a single social network is my &#8220;main&#8221; one and it provides an API that I can use to share data to other social networks. Maybe Google+ is that social network, but it does not have a public API yet. I still have to build stuff, but integrating systems is much more fun than implementing photo upload&#8230; :-)</p>
<p>To see what others publish I realize that I still need to connect to each social network, but I&#8217;m probably curious enough!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2011/07/02/blogging-sharing-status-updates-everywhere/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dutch PHP Conference 2011</title>
		<link>http://www.divideandconquer.se/2011/06/03/dutch-php-conference-2011/</link>
		<comments>http://www.divideandconquer.se/2011/06/03/dutch-php-conference-2011/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 06:54:36 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web developmnet]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/2011/06/03/dutch-php-conference-2011/</guid>
		<description><![CDATA[I was fortunate enough to be able to attend DPC11 on May 19-21 and it was very inspiring. I hope to write more about it in future blog posts!]]></description>
			<content:encoded><![CDATA[<p>I was fortunate enough to be able to attend <a href="http://www.phpconference.nl/" onclick="pageTracker._trackPageview('/outgoing/www.phpconference.nl/?referer=');">DPC11</a> on May 19-21 and it was very inspiring. I hope to write more about it in future blog posts!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2011/06/03/dutch-php-conference-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Book Of JOSH is back online!</title>
		<link>http://www.divideandconquer.se/2010/04/22/the-book-of-josh-is-back-online/</link>
		<comments>http://www.divideandconquer.se/2010/04/22/the-book-of-josh-is-back-online/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 19:19:07 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=653</guid>
		<description><![CDATA[A little more than a year ago I wrote Recommended reading: “The Book Of JOSH: Scala In The Enterprise”. Since then, the original article was removed from the author&#8217;s blog and I didn&#8217;t know of any copies. The other day I was browsing already read articles in Google Reader, and found the article in Google [...]]]></description>
			<content:encoded><![CDATA[<p>A little more than a year ago I wrote <a href="http://www.divideandconquer.se/2009/03/25/the-book-of-josh-scala-in-the-enterprise/">Recommended reading: “The Book Of JOSH: Scala In The Enterprise”</a>. Since then, the original article was removed from the author&#8217;s blog and I didn&#8217;t know of any copies.</p>
<p>The other day I was browsing already read articles in Google Reader, and found the article in Google Reader!</p>
<p>As I like the article very much and still would like to recommend it to others, I have decided to host it myself: <a href="/book-of-josh/">The Book Of JOSH</a>. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2010/04/22/the-book-of-josh-is-back-online/feed/</wfw:commentRss>
		<slash:comments>0</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>Øresund Agile 2010 takes place on May 17-20 in Malmö</title>
		<link>http://www.divideandconquer.se/2010/03/10/%c3%b8resund-agile-2010-takes-place-on-may-17-20-in-malmo/</link>
		<comments>http://www.divideandconquer.se/2010/03/10/%c3%b8resund-agile-2010-takes-place-on-may-17-20-in-malmo/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 09:55:38 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=636</guid>
		<description><![CDATA[Øresund Agile is short for&#8230; the meeting point for Agile Software Development in Scandinavia I expect great talks and workshops. For example, Johanna Rothman will be speaking! By the way, Lean Magazine #5 is available for download!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.oresundagile.org/" onclick="pageTracker._trackPageview('/outgoing/www.oresundagile.org/?referer=');">Øresund Agile</a> is short for&#8230;</p>
<blockquote><p>the meeting point for Agile  Software Development in Scandinavia</p></blockquote>
<p>I expect great talks and workshops. For example, Johanna Rothman will be speaking!</p>
<p>By the way, <a href="http://www.2010.oresundagile.org/blog/lean-magazine" onclick="pageTracker._trackPageview('/outgoing/www.2010.oresundagile.org/blog/lean-magazine?referer=');">Lean Magazine #5 is available for download</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2010/03/10/%c3%b8resund-agile-2010-takes-place-on-may-17-20-in-malmo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote control of XBMC, but not too much</title>
		<link>http://www.divideandconquer.se/2010/01/23/remote-control-of-xbmc-but-not-too-much/</link>
		<comments>http://www.divideandconquer.se/2010/01/23/remote-control-of-xbmc-but-not-too-much/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 19:55:29 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[XBMC]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=618</guid>
		<description><![CDATA[Yesterday and today I have scripted a small web interface for remote control of XBMC using its HTTP API. (BTW, That API could really use a redesign!) It&#8217;s actually just a page showing a screen shot and the name of the file that is currently playing, together with some commands to remote control XBMC. Available [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday and today I have scripted a small web interface for remote control of <a href="http://xbmc.org/" onclick="pageTracker._trackPageview('/outgoing/xbmc.org/?referer=');">XBMC</a> using its <a href="http://xbmc.org/wiki/?title=WebServerHTTP-API" onclick="pageTracker._trackPageview('/outgoing/xbmc.org/wiki/?title=WebServerHTTP-API&amp;referer=');">HTTP API</a>. (BTW, That API could really use a redesign!)</p>
<p>It&#8217;s actually just a page showing a screen shot and the name of the file that is currently playing, together with some commands to remote control XBMC.</p>
<p>Available commands are pause/resume, stop, play another file, and shutdown.</p>
<p>I also implemented support for showing notifications on the XBMC screen, which gave me an idea:</p>
<p>The Google Calendar can e-mail reminders for appointments. If XBMC is running, the reminder could be shown as a notification on the XBMC monitor.</p>
<p>I was just about to start implementing this calendar-reminder-in-XBMC when I reminded myself that there are many other small and big projects that would be more valuable for me. But instead of throwing this idea right down the trashcan I decided to blog about it first. Done!</p>
<p>Now I&#8217;ll spend some valuable time with my son!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2010/01/23/remote-control-of-xbmc-but-not-too-much/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Today&#8217;s thoughts about programming languages</title>
		<link>http://www.divideandconquer.se/2009/09/16/todays-thoughts-about-programming-languages/</link>
		<comments>http://www.divideandconquer.se/2009/09/16/todays-thoughts-about-programming-languages/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 19:48:31 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Groovy]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JRuby]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scala]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=551</guid>
		<description><![CDATA[Maybe some of you have heard me ranting about this already? I&#8217;m not productive enough in C++ and I feel too limited by Java A large chunk of Java frameworks seem to serve no other purpose than to workaround limitations in Java I believe (and hope!) that Java will cease to be the default language [...]]]></description>
			<content:encoded><![CDATA[<p>Maybe some of you have heard me ranting about this already?</p>
<ul>
<li>I&#8217;m not productive enough in C++ and I feel too limited by Java</li>
<li>A large chunk of Java frameworks seem to serve no other purpose than to workaround limitations in Java</li>
<li>I believe (and hope!) that Java will cease to be the default language in the non-Microsoft world, and that other JVM-based languages such as Scala, Groovy and JRuby will become more important</li>
<li>How can I convince a client to allow  Scala, Groovy or JRuby in a project?</li>
<li>I should really get some C# experience!</li>
<li>It seems like I almost always resolve to PHP when I need to get something done quickly&#8230; which reminds me of an upcoming blog post about a recent fight with <a href="http://php.net/manual/en/class.soapserver.php" onclick="pageTracker._trackPageview('/outgoing/php.net/manual/en/class.soapserver.php?referer=');">SoapServer</a> and <a href="http://php.net/manual/en/book.simplexml.php" onclick="pageTracker._trackPageview('/outgoing/php.net/manual/en/book.simplexml.php?referer=');">SimpleXML</a> to implement WSSE UsernameToken authentication.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2009/09/16/todays-thoughts-about-programming-languages/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TaskFreak hacking part 2: date format</title>
		<link>http://www.divideandconquer.se/2009/09/07/taskfreak-hacking-part-2-date-format/</link>
		<comments>http://www.divideandconquer.se/2009/09/07/taskfreak-hacking-part-2-date-format/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 14:17:10 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[taskfreak]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=537</guid>
		<description><![CDATA[My TaskFreak hacking goes on. In Sweden we often use ISO 8601 format for dates (year-month-day), but TaskFreak does not offer this out of the box. Most date formatting comes from the DATE FORMATS section in include/config.php but even after changing these date formats I still don&#8217;t get all dates displayed as I would like. [...]]]></description>
			<content:encoded><![CDATA[<p>My <a href="http://www.divideandconquer.se/2009/08/27/taskfreak-hacking-changing-first-day-of-week-to-monday/">TaskFreak hacking</a> goes on. In Sweden we often use ISO 8601 format for dates (year-month-day), but TaskFreak does not offer this out of the box.</p>
<p>Most date formatting comes from the DATE FORMATS section in include/config.php but even after changing these date formats I still don&#8217;t get all dates displayed as I would like.</p>
<p>For example, the text box for the date when editing an item is using the TZN_DATE_FRM constant defined in include/classes/tzn_generic.php. There&#8217;s a pretty naïve comment in the source code, saying that there is a &#8220;US format&#8221; for dates and a &#8220;rest of the world&#8221; format. Fortunately (for the US), the rest of the world is not united in opposition.</p>
<p>To get the date format I wanted I changed the constant definition like this:</p>
<pre style="padding-left: 30px;">define("TZN_DATE_FRM","%Y-%m-%d");</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2009/09/07/taskfreak-hacking-part-2-date-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hire me for my mind!</title>
		<link>http://www.divideandconquer.se/2009/08/12/hire-me-for-my-mind/</link>
		<comments>http://www.divideandconquer.se/2009/08/12/hire-me-for-my-mind/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 06:31:54 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Agile]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[Ward Cunningham]]></category>

		<guid isPermaLink="false">http://www.divideandconquer.se/?p=518</guid>
		<description><![CDATA[Ward Cunningham tweeted a link to an ad for an Agile Ruby Developer at AboutUs, Inc. Out of curiosity I took a look and it sounds like a fantastic opportunity for someone! What I liked most about the job ad was the last part: We’re hiring you for your mind. Please showcase it by answering [...]]]></description>
			<content:encoded><![CDATA[<p>Ward Cunningham tweeted a link to an ad for an <a href="http://jobs.37signals.com/jobs/5436" onclick="pageTracker._trackPageview('/outgoing/jobs.37signals.com/jobs/5436?referer=');">Agile Ruby Developer at AboutUs, Inc.</a> Out of curiosity I took a look and it sounds like a fantastic opportunity for someone!</p>
<p>What I liked most about the job ad was the last part:</p>
<blockquote><p>We’re hiring you for your mind. Please showcase it by answering some of the following questions in your cover letter:</p>
<ul>
<li>What is a recent programming insight you discovered and what was intriguing about it?</li>
<li>Why do you want to work with us? (be specific!)</li>
<li>What Open Source communities/projects are you a part of and why do you like them?</li>
<li>Tell us about a time you brought initiative to your team and made a positive change.</li>
<li>What modern programmer do you admire and why?</li>
<li>How do you learn and keep up with the field of computing?</li>
</ul>
</blockquote>
<p>These questions really appeal to me!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.divideandconquer.se/2009/08/12/hire-me-for-my-mind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

