<?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>ingvald</title>
	<atom:link href="http://skaug.no/ingvald/feed/" rel="self" type="application/rss+xml" />
	<link>http://skaug.no/ingvald</link>
	<description>what i think</description>
	<lastBuildDate>Thu, 29 Mar 2012 15:11:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Android App With Jenkins</title>
		<link>http://skaug.no/ingvald/2011/09/android-app-with-jenkins/</link>
		<comments>http://skaug.no/ingvald/2011/09/android-app-with-jenkins/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 15:58:34 +0000</pubDate>
		<dc:creator>ingvald</dc:creator>
				<category><![CDATA[EN]]></category>
		<category><![CDATA[SW dev]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[devops]]></category>
		<category><![CDATA[jenkins]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://skaug.no/ingvald/?p=157</guid>
		<description><![CDATA[I just got involved with a mobile project, and let my inner devop out for a moment&#8230; So, here&#8217;s how I got Jenkins to build, sign, and deploy an Android app for testing. Our setup: Jenkins CI, installed on a virtual Ubuntu server, Android SDK on the Ubuntu server, Android SDK compoments (including an Android profile/ target), an [...]]]></description>
			<content:encoded><![CDATA[<p>I just got involved with a mobile project, and let my inner <a title="Continuous Integration to Prodution" href="http://www.build-doctor.com/2011/07/20/devop/">devop</a> out for a moment&#8230; So, here&#8217;s how I got Jenkins to build, sign, and deploy an Android app for testing.</p>
<p><a href="http://jenkins-ci.org"><img class="alignright size-full wp-image-178" title="Jenkins CI" src="http://skaug.no/ingvald/wp-content/uploads/2011/09/jenkinslogo.png" alt="" width="100" /></a>Our setup:</p>
<ul>
<li><a href="http://jenkins-ci.org">Jenkins CI</a>, installed on a virtual Ubuntu server,</li>
<li><a href="http://developer.android.com/sdk/">Android SDK</a> on the Ubuntu server,</li>
<li>Android <a href="http://developer.android.com/sdk/adding-components.html">SDK compoments</a> (including an Android profile/ target),</li>
<li>an Android project</li>
<li><tt>keytool</tt> on Ubuntu to create a simple keystore, for signing the app</li>
</ul>
<p>The gist of the Jenkins job is:</p>
<ul>
<li>Get updated code from Git</li>
<li>Execute shell command to create an <tt>ant</tt> build file on the fly with the Android SDK tool <tt><a href="http://developer.android.com/guide/developing/tools/android.html">android</a></tt>:</li>
</ul>
<blockquote>
<div><span style="font-family: monospace;">/opt/android-sdk/tools/android create project -n [name of resulting app file] -t [Android target] -p [name of temporary directory where project is copied and ant files generated] -k [package] -a [default app class]<br />
</span></div>
</blockquote>
<ul>
<li>Copy resulting <tt>build.xml</tt> from the temporary directory to the project root</li>
<li>Run <tt>ant</tt> targets <tt>clean release</tt>, with the following properties:</li>
</ul>
<blockquote>
<div>
<pre>sdk.dir=/opt/android-sdk
target=[Android target]</pre>
<pre>key.store=path-to-keystore
key.alias=[alias]
key.store.password=[pw]
key.alias.password=[pw2]</pre>
</div>
</blockquote>
<ul>
<li>(Without the last four properties above the job will build an unsigned app)</li>
<li>Publish resulting <tt>.apk</tt> via FTP to a server</li>
</ul>
<div><a href="http://developer.android.com"><img class="alignright size-full wp-image-180" title="Android" src="http://skaug.no/ingvald/wp-content/uploads/2011/09/android-devlogo.gif" alt="" width="76" height="76" /></a>And on my phone:</div>
<ul>
<li>Allow installing apps from unknown sources</li>
</ul>
<p>I got useful info from an article on jenkins-ci.org:  <a href="http://jenkins-ci.org/content/getting-started-building-android-apps-hudson">Getting started: Building Android apps with Hudson</a>. My needs were a bit simpler, so you&#8217;ll see a bit more details there than here.</p>
<p>A few problems I had:</p>
<ul>
<li>The Ubuntu VM didn&#8217;t have X installed, and getting SDK components seems to require a GUI. I tried to go around this by copying tools and targets from SDK on my laptop.</li>
<li>A bit later I got stumped by an error message on <tt>aapt</tt> and &#8220;no such file or directory&#8221;. (This might have been related to what I did on the previous problem&#8230;) <a href="http://stackoverflow.com/questions/1943746/android-eclipse-plugin-cant-find-valid-paths/1943786#1943786">An answer on stackoverflow regarding ia32-libs</a> provided the solution in my case.</li>
</ul>
<p>This project is a side project with low activity compared to a day job, so right now this job is a one-click deploy job (one click plus downloading and installing on the phone&#8230;) However, I think we&#8217;ll set up nightly polling, so there&#8217;s an updated app available every morning for testers, and they can see by the timestamp  if there were any updates the previous day.</p>
]]></content:encoded>
			<wfw:commentRss>http://skaug.no/ingvald/2011/09/android-app-with-jenkins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Case Study on Lean-Kanban in BBC</title>
		<link>http://skaug.no/ingvald/2011/09/case-study-on-lean-kanban-in-bbc/</link>
		<comments>http://skaug.no/ingvald/2011/09/case-study-on-lean-kanban-in-bbc/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 12:32:19 +0000</pubDate>
		<dc:creator>ingvald</dc:creator>
				<category><![CDATA[EN]]></category>
		<category><![CDATA[Kanban]]></category>
		<category><![CDATA[SW dev]]></category>
		<category><![CDATA[lean]]></category>
		<category><![CDATA[research]]></category>

		<guid isPermaLink="false">http://skaug.no/ingvald/?p=154</guid>
		<description><![CDATA[David Joyce and Dr Peter Middleton have studied the application of (what I call) Lean-Kanban in BBC. From the abstract: The evidence shows that over the 12-month period, lead time to deliver software improved by 37%, consistency of delivery rose by 47%, and defects reported by customers fell 24%. The significance of this work is [...]]]></description>
			<content:encoded><![CDATA[<p>David Joyce and Dr Peter Middleton have studied the application of (what I call) Lean-Kanban in BBC.</p>
<p>From the abstract:</p>
<blockquote><p><strong>The evidence shows that over the 12-month period, lead time to deliver software improved by 37%, consistency of delivery rose by 47%, and defects reported by customers fell 24%</strong>.</p>
<p>The significance of this work is showing that the use of lean methods including visual management, team-based problem solving, smaller batch sizes, and statistical process control can improve software development.<br />
&#8230;.</p>
<p>The faster delivery with a focus on creating the highest value to the customer also reduced both technical and market risks.</p></blockquote>
<p>There&#8217;s <a title="Lean Software Management BBC Worldwide Case Study" href="http://leanandkanban.wordpress.com/2011/04/09/lean-software-management-bbc-worldwide-case-study/">more info on David&#8217;s blog</a>, and you can also read the case study itself prior to publication from there.</p>
]]></content:encoded>
			<wfw:commentRss>http://skaug.no/ingvald/2011/09/case-study-on-lean-kanban-in-bbc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s In a Kanban Standup?</title>
		<link>http://skaug.no/ingvald/2011/09/whats-in-a-kanban-standup/</link>
		<comments>http://skaug.no/ingvald/2011/09/whats-in-a-kanban-standup/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 14:02:10 +0000</pubDate>
		<dc:creator>ingvald</dc:creator>
				<category><![CDATA[EN]]></category>
		<category><![CDATA[Kanban]]></category>
		<category><![CDATA[SW dev]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://skaug.no/ingvald/?p=141</guid>
		<description><![CDATA[First and foremost: Focus on work items, not people. Then: Finishing is more important than starting. Practical tip: start to the right/ at the end of your board, and identify impediments to finishing tasks as you go upstream on the board. Only two questions are really necessary in the actual standup if the team&#8217;s real [...]]]></description>
			<content:encoded><![CDATA[<p>First and foremost:</p>
<p><strong>Focus on work items, not people</strong>.</p>
<p>Then:</p>
<p><strong>Finishing is more important than starting</strong>.</p>
<p>Practical tip: start to the right/ at the end of your board, and identify impediments to finishing tasks as you go upstream on the board.</p>
<p>Only two questions are really necessary in the actual standup if the team&#8217;s real process is reflected on the board:</p>
<blockquote><p><em> The team will be asked if the board accurately reflects what is being worked upon. The team will be asked if there is anything that is slowing down or stopping throughput. After these two questions are answered by the team, the stand-up is over.</em></p></blockquote>
<p>(<a href="http://leanandkanban.wordpress.com/2009/04/14/a-new-kind-of-standup/">Karl Scotland via</a> @<a href="http://twitter.com/dpjoyce" rel="nofollow" target="_blank" title="View dpjoyce's Twitter Profile">dpjoyce</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://skaug.no/ingvald/2011/09/whats-in-a-kanban-standup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agile Version Control</title>
		<link>http://skaug.no/ingvald/2011/08/agile-version-control/</link>
		<comments>http://skaug.no/ingvald/2011/08/agile-version-control/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 12:25:59 +0000</pubDate>
		<dc:creator>ingvald</dc:creator>
				<category><![CDATA[EN]]></category>
		<category><![CDATA[SW dev]]></category>
		<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://skaug.no/ingvald/?p=118</guid>
		<description><![CDATA[The goal is to enable you to be more agile, i.e., to improve your ability to change and adjust. Here&#8217;s what I think: Goals: rapid feedback, fail fast, always releasable, simple (i.e., easy to use) Visibility is important here, too: Everyone can see what&#8217;s happening Mainline and CI There should be a mainline &#8211; Everyone Commits To the Mainline Every Day IMO, [...]]]></description>
			<content:encoded><![CDATA[<p>The goal is to enable you to be <a title="Being Agile" href="http://skaug.no/ingvald/2010/11/what_is_agile/">more agile</a>, i.e., to improve your ability to change and adjust.</p>
<p>Here&#8217;s what I think:</p>
<ul>
<li>Goals: <a href="http://martinfowler.com/articles/continuousIntegration.html#KeepTheBuildFast">rapid feedback</a>, <a href="http://www.infoq.com/articles/agile-version-control#q4">fail fast, always releasable, simple</a> (i.e., easy to use)</li>
<li><a title="Agile Basics: Visualize More" href="http://skaug.no/ingvald/2010/12/agile_basics_visualize_more/">Visibility is important</a> here, too: <a href="http://martinfowler.com/articles/continuousIntegration.html#EveryoneCanSeeWhatsHappening">Everyone can see what&#8217;s happening</a></li>
</ul>
<p><em>Mainline and CI</em></p>
<ul>
<li>There should be a mainline &#8211; <a href="http://martinfowler.com/articles/continuousIntegration.html#EveryoneCommitsToTheMainlineEveryDay">Everyone Commits To the Mainline Every Day</a></li>
<li>IMO, the mainline &#8211; i.e., what you are working on every day &#8211; should be ready to release from at almost any time. This implies low technical debt, and little difference between mainline and a release branch (if you use that) &#8211; i.e., less work in progress at any time.</li>
<li>Maybe a release branch is a good idea - <a href="http://www.infoq.com/articles/agile-version-control#q9">where you actually <em>can</em> release from at any time</a></li>
</ul>
<div><em><em>Branches and merging</em></em></div>
<ul>
<li><a href="http://martinfowler.com/bliki/FeatureBranch.html">Beware of feature branches</a>, and kill them as soon as you can if you do use them. (One tip: <a href="http://martinfowler.com/bliki/FeatureToggle.html">feature toggle</a>)</li>
<li>Branches: Merge from mainline every day if you have them.</li>
<li>Good naming goes for build code and infrastructure, too, so I&#8217;d prefer branch names like mainline, release, featureA, fixB</li>
<li>Limit branches agressively &#8211; they represent more work in progress (and you want less work in progress) including risk of big merges</li>
<li>
<div id="attachment_131" class="wp-caption alignright" style="width: 454px"><a href="http://blog.crisp.se/henrikkniberg/2008/03/13/1205410680000.html"><img class="size-full wp-image-131" title="Agile version control for multiple teams" src="http://skaug.no/ingvald/wp-content/uploads/2011/08/henrik-agile-scm.gif" alt="Agile version control for multiple teams" width="444" height="322" /></a><p class="wp-caption-text">Illustration from Henrik&#39;s article</p></div>
<p><a href="http://www.infoq.com/articles/agile-version-control#q18">Merging</a>: merge down, copy up &#8211; always accept stabilizing changes, never impose destabilizing changes.</li>
</ul>
<p>Inspiration:</p>
<p>Martin Fowler: articles on <a href="http://martinfowler.com/tags/continuous%20integration.html">continuous integration</a></p>
<p>Henrik Kniberg: <a href="http://blog.crisp.se/henrikkniberg/2008/03/13/1205410680000.html">Agile version control with multiple teams</a></p>
]]></content:encoded>
			<wfw:commentRss>http://skaug.no/ingvald/2011/08/agile-version-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Støtt ein barneheim i Uganda</title>
		<link>http://skaug.no/ingvald/2011/06/sky-orphans-st%c3%b8tt-ein-barneheim-i-uganda/</link>
		<comments>http://skaug.no/ingvald/2011/06/sky-orphans-st%c3%b8tt-ein-barneheim-i-uganda/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 15:11:14 +0000</pubDate>
		<dc:creator>ingvald</dc:creator>
				<category><![CDATA[NO]]></category>

		<guid isPermaLink="false">http://skaug.no/ingvald/?p=67</guid>
		<description><![CDATA[Ein kar eg kjenner, Werner, har vore på besøk til ein kombinert barneheim og skule i Uganda som treng støtte &#8211; Sky Orphans.  Dei som jobbar der er frivillige, og dei tar hand om over 100 ungar. Det finnest ei facebook-gruppe og ein presentasjon med litt info, sjølv om det er litt gamal info der. Under [...]]]></description>
			<content:encoded><![CDATA[<p>Ein kar eg kjenner, Werner, har vore på besøk til ein kombinert barneheim og skule i Uganda som treng støtte &#8211; Sky Orphans.  Dei som jobbar der er frivillige, og dei tar hand om over 100 ungar.</p>
<p>Det finnest ei <a href="http://www.facebook.com/group.php?gid=76545364568&amp;v=info&amp;ref=ts">facebook-gruppe</a> og ein <a href="https://docs.google.com/present/view?skipauth=true&amp;id=dc42gbkd_25gg3hq6hc">presentasjon med litt info</a>, sjølv om det er litt gamal info der.</p>
<p>Under er ei lita hugseliste for å setta opp fast betaling til dei.<img class="alignright size-thumbnail wp-image-69" title="dei manglar mykje utstyr" src="http://skaug.no/ingvald/wp-content/uploads/2011/06/uganda-shoes-150x150.png" alt="" width="150" height="150" /></p>
<ul>
<li>Du kan bruka kontoen til <a href="http://www.dinastiftelsen.no/">Stiftelsen Dina</a>, konto-nr 3080 21 65400</li>
<li>Merk betalinga med &#8220;Uganda&#8221;</li>
<li>Det skal gå melding til skatteetaten om skatte-trekk for frivillig gåve, men det er sikkert greitt å sjekka når sjølvmeldinga kjem</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://skaug.no/ingvald/2011/06/sky-orphans-st%c3%b8tt-ein-barneheim-i-uganda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving from MT to WP</title>
		<link>http://skaug.no/ingvald/2011/06/moving/</link>
		<comments>http://skaug.no/ingvald/2011/06/moving/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 08:48:55 +0000</pubDate>
		<dc:creator>ingvald</dc:creator>
				<category><![CDATA[EN]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://skaug.no/ingvald/?p=1</guid>
		<description><![CDATA[I&#8217;m moving my blog from Movable Type to WordPress. For a few days it might be a bit unstable here&#8230;]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m moving my blog from Movable Type to WordPress.</p>
<p>For a few days it might be a bit unstable here&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://skaug.no/ingvald/2011/06/moving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kanban &#8211; Core Concepts and Practices</title>
		<link>http://skaug.no/ingvald/2011/05/kanban-core-concepts-and-practices/</link>
		<comments>http://skaug.no/ingvald/2011/05/kanban-core-concepts-and-practices/#comments</comments>
		<pubDate>Mon, 09 May 2011 20:29:16 +0000</pubDate>
		<dc:creator>ingvald</dc:creator>
				<category><![CDATA[EN]]></category>
		<category><![CDATA[Kanban]]></category>
		<category><![CDATA[SW dev]]></category>
		<category><![CDATA[flow]]></category>
		<category><![CDATA[slack]]></category>

		<guid isPermaLink="false">http://skaug.no/wpself/?p=57</guid>
		<description><![CDATA[Kanban Core Concepts Visualize work; items, process/ flow, policies Limit work-in-progress (WIP), but don&#8217;t be too ambitious at first Basic Kanban is a lightweight framework for change management. Starting with the core concepts on top of your present process should meet little resistance, at least when coupled with focus on improving quality. Btw, I talked [...]]]></description>
			<content:encoded><![CDATA[<p><em>Kanban Core Concepts</em></p>
<ul>
<li>Visualize work; items, process/ flow, policies</li>
<li>Limit work-in-progress (WIP), but don&#8217;t be too ambitious at first</li>
</ul>
<p>Basic Kanban is a lightweight framework for change management.<br />
Starting with the core concepts on top of your present process should meet little resistance, at least when coupled with focus on improving quality.</p>
<p>Btw, I talked at a lokal meetup earlier this year (<a href="http://skaug.no/ingvald/2011/02/how-to-get-started-with-kanban.html">slides here</a>), mostly on the core concepts &#8211; why they work and how to start.</p>
<p><em>A few Kanban Practices</em></p>
<ul>
<li>Flow; encourage, cultivate, transform towards</li>
<li>Classes of Service (CoS); visualize and track different types of work, with different demands on them</li>
<li>Gradually limit WIP to improve flow and to uncover your next improvement opportunity</li>
<li>Cadence; regular rythm of things like backlog replenishment and deployment, separate from development</li>
<li>Metrics; to manage flow over time</li>
<li>Pull; instead of mostly work with deadlines</li>
<li>Slack, swarming &#8211; doing it consciously</li>
</ul>
<p>There&#8217;s more, but this illustrates the relation between the core concepts and a set of recommended practices.</p>
<p>You&#8217;re likely to start with a simple version of some practices, f.ex. the work types (CoS) critical items, work with deadlines, bugs. More practices can be utilized as your organization matures, and more sofisticated use of practices, like setting different target lead times for different CoS, f.ex. 50% of bugs should be fixed within a week.</p>
<p><span>(Re-posted from <a href="http://ingvald.posterous.com/kanban-core-concepts-and-practices-0">notes to self</a>.)</span></p>
<p>Update after &#8220;conversation&#8221; with @<a href="http://twitter.com/pawelbrodzinski" rel="nofollow" target="_blank" title="View pawelbrodzinski's Twitter Profile">pawelbrodzinski</a>: Buy-in from management and whole organization is preferable, but team buy-in is enough and necessary, in my opinion.</p>
<p>I think it&#8217;s important to just get started, improving step by step, and team buy-in and the Core Concepts are enough to do that.</p>
]]></content:encoded>
			<wfw:commentRss>http://skaug.no/ingvald/2011/05/kanban-core-concepts-and-practices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extracting a Personal Kanban from an Overgrown ToDo List</title>
		<link>http://skaug.no/ingvald/2011/05/extracting-a-personal-kanban-from-an-overgrown-todo-list/</link>
		<comments>http://skaug.no/ingvald/2011/05/extracting-a-personal-kanban-from-an-overgrown-todo-list/#comments</comments>
		<pubDate>Thu, 05 May 2011 10:03:15 +0000</pubDate>
		<dc:creator>ingvald</dc:creator>
				<category><![CDATA[EN]]></category>
		<category><![CDATA[Kanban]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[flow]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://skaug.no/wpself/?p=54</guid>
		<description><![CDATA[Last week I looked at my overgrown todo list, or rather several lists, and preparation for a demo at work was coming up, and I have a long trip to prepare for&#8230; So I simply had to create a personal kanban on the cupboard behind me: Collaboration on the demo preparation led to tasks on [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I looked at my overgrown todo list, or rather several lists, and preparation for a demo at work was coming up, and I have a long trip to prepare for&#8230;</p>
<p>So I simply had to create a personal kanban on the cupboard behind me:</p>
<p><a href="http://skaug.no/ingvald/wp-content/uploads/2011/05/personalkanban.jpg"><img class="alignnone size-medium wp-image-55" title="personalkanban" src="http://skaug.no/ingvald/wp-content/uploads/2011/05/personalkanban-223x300.jpg" alt="" width="223" height="300" /></a></p>
<p>Collaboration on the demo preparation led to tasks on the board, and I took the most important and urgent tasks from my todo lists onto the board.</p>
<p>I used a form of <a href="http://www.personalkanban.com/pk/featured/urgent-and-important-incorporating-your-existing-tools-into-personal-kanban/">priority filter</a>, with a generic todo column to the left, then a &#8220;soon&#8221;/today column, then the usual doing and done columns.</p>
<p>It worked really well to let tasks float up and to the right in the todo columns, kind of like bubbles. I got an immediate impression of relative urgency (more to the right) and relative importance (upwards), making it very easy to decide what the next task should be when I finished a task.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://skaug.no/ingvald/2011/05/extracting-a-personal-kanban-from-an-overgrown-todo-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Get Started with Kanban, and Why</title>
		<link>http://skaug.no/ingvald/2011/02/how_to_get_started_with_kanban/</link>
		<comments>http://skaug.no/ingvald/2011/02/how_to_get_started_with_kanban/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 18:09:05 +0000</pubDate>
		<dc:creator>ingvald</dc:creator>
				<category><![CDATA[EN]]></category>
		<category><![CDATA[Kanban]]></category>
		<category><![CDATA[SW dev]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[flow]]></category>

		<guid isPermaLink="false">http://skaug.no/wpself/2011/02/08/how_to_get_started_with_kanban/</guid>
		<description><![CDATA[Monday February 7 I talked about Kanban at Trondheim XP &#38; Agile Meetup. I think it went well, even if I made a few presenter mistakes, based on feedback and the great questions and discussions. Here&#8217;s the presentation with a few adjustments, like a few additional links for further reading. How to Get Started with [...]]]></description>
			<content:encoded><![CDATA[<p>Monday February 7 I talked about Kanban at Trondheim XP &amp; Agile Meetup. </p>
<p>I think it went well, even if I made a few presenter mistakes, based on feedback and the great questions and discussions.</p>
<p>Here&#8217;s the presentation with a few adjustments, like a few additional links for further reading.</p>
<p></p>
<div style="width: 425px;" id="__ss_6853427"><strong style="margin: 12px 0pt 4px; display: block;"><a href="http://www.slideshare.net/ingvaldskaug/how-to-get-started-with-kanban-and-why" title="How to Get Started with Kanban, and Why">How to Get Started with Kanban, and Why</a></strong><object id="__sse6853427" height="355" width="425"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=201102xpmeetupkanbanafter-110208125329-phpapp01&amp;rel=0&amp;stripped_title=how-to-get-started-with-kanban-and-why&amp;userName=ingvaldskaug" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed name="__sse6853427" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=201102xpmeetupkanbanafter-110208125329-phpapp01&amp;rel=0&amp;stripped_title=how-to-get-started-with-kanban-and-why&amp;userName=ingvaldskaug" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="355" width="425"></object></div>
<p><script src="http://b.scorecardresearch.com/beacon.js?c1=7&amp;c2=7400849&amp;c3=1&amp;c4=&amp;c5=&amp;c6="></script></p>
]]></content:encoded>
			<wfw:commentRss>http://skaug.no/ingvald/2011/02/how_to_get_started_with_kanban/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kanban at Trondheim XP &amp; Agile Meetup, Feb. 7</title>
		<link>http://skaug.no/ingvald/2011/02/xp_meetup_kanban/</link>
		<comments>http://skaug.no/ingvald/2011/02/xp_meetup_kanban/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 20:24:25 +0000</pubDate>
		<dc:creator>ingvald</dc:creator>
				<category><![CDATA[EN]]></category>
		<category><![CDATA[Kanban]]></category>
		<category><![CDATA[SW dev]]></category>
		<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://skaug.no/wpself/2011/02/06/xp_meetup_kanban/</guid>
		<description><![CDATA[On Monday, February 7, I&#8217;m talking about Kanban at Trondheim XP &#38; Agile Meetup. It&#8217;s something I&#8217;m passionate about, so I&#8217;m excited. Topics include: &#8220;Kanban 101&#8243;, or how to get started with simple Kanban Agile Basics, or why Kanban works &#8220;Kanban 201&#8243;, or what&#8217;s next After the meetup I&#8217;ll make slides available here. More information [...]]]></description>
			<content:encoded><![CDATA[<p>On Monday, February 7, I&#8217;m talking about Kanban at Trondheim XP &amp; Agile Meetup.</p>
<div>It&#8217;s something I&#8217;m passionate about, so I&#8217;m excited.</div>
<div>Topics include:</div>
<div>
<ul>
<li>&#8220;Kanban 101&#8243;, or how to get started with simple Kanban</li>
<li>Agile Basics, or why Kanban works</li>
<li>&#8220;Kanban 201&#8243;, or what&#8217;s next</li>
</ul>
</div>
<div>After the meetup I&#8217;ll make slides available here.</div>
<div>More information about the meetup (in Norwegian):</div>
<div><a href="http://www.meetup.com/trondheim-smidig/events/15739689/">http://www.meetup.com/trondheim-smidig/events/15739689/</a></div>
]]></content:encoded>
			<wfw:commentRss>http://skaug.no/ingvald/2011/02/xp_meetup_kanban/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

