<?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>I do stuff - stuff is what I do!</title>
	<atom:link href="http://blog.diktator.org/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.diktator.org</link>
	<description></description>
	<lastBuildDate>Wed, 15 Feb 2012 21:54:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Turnkey revision control server</title>
		<link>http://blog.diktator.org/index.php/2012/02/15/turnkey-revision-control-server/</link>
		<comments>http://blog.diktator.org/index.php/2012/02/15/turnkey-revision-control-server/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 21:54:40 +0000</pubDate>
		<dc:creator>Fredrik</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.diktator.org/?p=532</guid>
		<description><![CDATA[So, yesterday I wrote about some of the great prepared virtual appliances you can get your hands on for no cost at all. One of these is the Turnkey Revision Control server appliance which I wanted to use for a local git installation. The first start up of the appliance was absolutely problem free, however [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">S</span>o, yesterday I wrote about some of the great prepared virtual appliances you can get your hands on for no cost at all. One of these is the <a href="http://www.turnkeylinux.org/revision-control" target="_blank">Turnkey Revision Control server appliance</a> which I wanted to use for a local git installation. The first start up of the appliance was absolutely problem free, however I got into some problems when trying to create my first git repository on the server. And now that I&#8217;ve got them all ironed out I thought I&#8217;d share them with anyone else who might run into these in the future. I&#8217;m guessing that most of you readers out there are interested in the solution to the errors you&#8217;re experiencing, there fore I&#8217;ll structure this blog post with the errors as section paragraphs.<br />
<br />&nbsp;</p>
<h1>fatal: &#8216;/git/&lt;repo&gt;&#8217; does not appear to be a git repository</h1>
<p>This occurs when you try to clone a repository via the SSH protocol rather than the unsecured git protocol. The reason for this is that the default shell path when your SSH client logs in on the server (which is what happens behind the scenes when cloning via git) is not relative to the path where the repositories are stored. The solution is to adjust the URL so that it is relative to the root of the file system on the git server:</p>
<blockquote><p># URL for cloning via git:</p>
<p>git://&lt;turnkeyServerName&gt;/git/&lt;repoName&gt;</p>
<p># URL for cloning via SSH:</p>
<p>ssh://&lt;user&gt;@&lt;turnkeyServerName&gt;/srv/repos/git/&lt;repoName&gt;</p></blockquote>
<p>&nbsp;</p>
<h1>No refs in common and none specified; doing nothing.</h1>
<p>This is most likely because when you created the repo you added no items to it before cloning it, hence your git client won&#8217;t know what branch to push. Easy solution? Add a first item to the repository before anyone clones it, like so you&#8217;ll get a master branch which will be automatically tracked by cloning clients.<br />
<br />&nbsp;</p>
<h1>error: insufficient permission for adding an object to repository database ./objects</h1>
<p>You&#8217;ll see this when trying to push to your new repository on the server and if your user is lacking write permissions in the .git folder on the server. What worked for me was to move to the .git folder for your specific repository on the server and issue the following commands:</p>
<blockquote><p>chmod -R g+ws *</p>
<p>chgrp -R &lt;groupName&gt; *</p></blockquote>
<p>There are of course a million ways to handle file system permissions and this is just one of them, but in the end the error is due to permissions not allowing writes.<br />
<br />&nbsp;</p>
<h1>[remote rejected] master -&gt; master (branch is currently checked out)</h1>
<p>Should you encounter this error you&#8217;ll probably have seen a quite verbose error message talking about things like &#8220;bare repositories&#8221; and &#8220;receive.denyCurrentBranch&#8221;. This error occurs because the repository on the server doesn&#8217;t just contain the repository binaries but also a copy of the actual files contained within the repository. It might sound weird, but what it basically means is that the server is set up just like your co workers machine would be and should you push to the repository on the server the working directory (on the server) is going to be very out of sync with the repository. Solution? Well, the first might be to create bare repositories on your server, but I haven&#8217;t experimented with that yet so I don&#8217;t know. Until then, you could issue the following command (which is also specified in the error message) on your server while in the repository folder:</p>
<blockquote><p>git config receive.denyCurrentBranch ignore</p></blockquote>
<p>&nbsp;</p>
<h1>Your repository isn&#8217;t visible in the git web application</h1>
<p>To make your repository visible in the git web application (https://&lt;turnkeyServerName&gt;/git) you&#8217;ll have to make a file system link with the following command:</p>
<blockquote><p>ln -s /srv/repos/git/&lt;repoName&gt;/.git /var/cache/git/&lt;repoName&gt;.git</p></blockquote>
<p>&nbsp;</p>
<h1>Unnamed repository; edit this file &#8216;description&#8217; to name the repository.</h1>
<p>Now that you&#8217;ve managed to get your new repository to show up in the git web application you&#8217;ll quickly realize that the default description pops up here. Simplest way to update it? Move to the .git folder for your repository on the server and issue the following command:</p>
<blockquote><p>echo &#8216;&lt;description&gt;&#8217; &gt; description</p></blockquote>
<p>This will change the contents of the description file and replace it with what you echoed out to it.<br />
<br />&nbsp;<br />
I hope that this is all you&#8217;ll need to get started with your new git version control server.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.diktator.org%2Findex.php%2F2012%2F02%2F15%2Fturnkey-revision-control-server%2F&amp;t=Turnkey%20revision%20control%20server" id="facebook_share_button_532" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_532') || document.getElementById('facebook_share_icon_532') || document.getElementById('facebook_share_both_532') || document.getElementById('facebook_share_button_532');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_532') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blog.diktator.org/index.php/2012/02/15/turnkey-revision-control-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Fusion or Parallels?</title>
		<link>http://blog.diktator.org/index.php/2012/02/15/vmware-fusion-or-parallels/</link>
		<comments>http://blog.diktator.org/index.php/2012/02/15/vmware-fusion-or-parallels/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 06:51:43 +0000</pubDate>
		<dc:creator>Fredrik</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://blog.diktator.org/?p=530</guid>
		<description><![CDATA[A couple of years ago I evaluated which virtualization platform I would use on my MacBook Pro. I tried  a couple of alternatives, namely: Parallels, VMware Fusion and also VirtualBox. I ended up using VMware Fusion for my virtual Windows machines because I found that some of the integration features with OS X felt a [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">A</span> couple of years ago I evaluated which virtualization platform I would use on my MacBook Pro. I tried  a couple of alternatives, namely: Parallels, VMware Fusion and also VirtualBox. I ended up using VMware Fusion for my virtual Windows machines because I found that some of the integration features with OS X felt a bit tidier than in Parallels.</p>
<p>Yesterday however I found another reason (<a href="http://www.turnkeylinux.org/revision-control" target="_blank">Turnkey revision control</a>) for using VMware Fusion: there are a lot of prepared appliances out there on the internet ready for use and they are downloadable in a VMware format! I assume that Parallels and its likes have the ability to import VMware disks, but the feeling of just downloading the appliance and clicking the start button without any hassle. Awesome! =)</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.diktator.org%2Findex.php%2F2012%2F02%2F15%2Fvmware-fusion-or-parallels%2F&amp;t=VMware%20Fusion%20or%20Parallels%3F" id="facebook_share_button_530" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_530') || document.getElementById('facebook_share_icon_530') || document.getElementById('facebook_share_both_530') || document.getElementById('facebook_share_button_530');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_530') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blog.diktator.org/index.php/2012/02/15/vmware-fusion-or-parallels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keeping track of the Dakar 2012</title>
		<link>http://blog.diktator.org/index.php/2012/01/14/keeping-track-of-the-dakar-2012/</link>
		<comments>http://blog.diktator.org/index.php/2012/01/14/keeping-track-of-the-dakar-2012/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 12:07:43 +0000</pubDate>
		<dc:creator>Fredrik</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://blog.diktator.org/?p=504</guid>
		<description><![CDATA[Want to get as much as possible out of the video coverage of the 2012 Dakar rally from ASO? Finding it hard to get to the good stuff over at http://www.dakar.com? Well, in that case I&#8217;ve got it all sorted for you. Below you&#8217;ll find a list of all the English videos posted by the [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">W</span>ant to get as much as possible out of the video coverage of the 2012 Dakar rally from <a href="http://en.wikipedia.org/wiki/Amaury_Sport_Organisation" target="_blank">ASO</a>? Finding it hard to get to the good stuff over at <a href="http://www.dakar.com" target="_blank">http://www.dakar.com</a>? Well, in that case I&#8217;ve got it all sorted for you. Below you&#8217;ll find a list of all the English videos posted by the official Dakar organization on YouTube &#8211; in a structured manner! At the least I&#8217;d recommend watching the <strong>Stage summary</strong> and the <strong>Magazine</strong> for every stage, however all the other material is really interesting as well! The <strong>Stage summary</strong> is usually around three minutes long, and the <strong>Magazine</strong> is about a minute and a half. What I find is a real pity is that none of the material is available in HD, the nature shots would&#8217;ve been awesome in a better resolution and bitrate. Oh well, can&#8217;t have it all without being there I guess. =) Here goes:</p>
<table>
<tbody>
<tr>
<td><strong>Stage #1</strong></td>
<td><strong>Mar Del Plata &#8211; Santa Rosa de la Pampa</strong></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=EvccXYnHRVg">http://www.youtube.com/watch?v=EvccXYnHRVg</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=5mozodCWwwg">http://www.youtube.com/watch?v=5mozodCWwwg</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=QhdcjYczBpg">http://www.youtube.com/watch?v=QhdcjYczBpg</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=xpttChVPFxc">http://www.youtube.com/watch?v=xpttChVPFxc</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=ObbcbLBbCFg">http://www.youtube.com/watch?v=ObbcbLBbCFg</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=w-r6ZHtTodE">http://www.youtube.com/watch?v=w-r6ZHtTodE</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #2</strong></td>
<td><strong>Santa Rosa de la Pampa &#8211; San Rafael</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=xNlAki_VpDs">http://www.youtube.com/watch?v=xNlAki_VpDs</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=hRuPneXyX5M">http://www.youtube.com/watch?v=hRuPneXyX5M</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=-8fTWK6majw">http://www.youtube.com/watch?v=-8fTWK6majw</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=IKYYZRFI2PM">http://www.youtube.com/watch?v=IKYYZRFI2PM</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=9XCZAAagkwE">http://www.youtube.com/watch?v=9XCZAAagkwE</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=sHx9eTxJTsg">http://www.youtube.com/watch?v=sHx9eTxJTsg</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #3</strong></td>
<td><strong>San Rafael &#8211; San Juan</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=AfFMfA0IqiE">http://www.youtube.com/watch?v=AfFMfA0IqiE</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=iL5Iazv6_t4">http://www.youtube.com/watch?v=iL5Iazv6_t4</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=AsBHA0QTL6M">http://www.youtube.com/watch?v=AsBHA0QTL6M</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=l-SDIhTCrRQ">http://www.youtube.com/watch?v=l-SDIhTCrRQ</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=wjkHGs2NhXs">http://www.youtube.com/watch?v=wjkHGs2NhXs</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=Ffi7at2pono">http://www.youtube.com/watch?v=Ffi7at2pono</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #4</strong></td>
<td><strong>San Juan &#8211; Chilecito</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=8CkbtfEK1ds">http://www.youtube.com/watch?v=8CkbtfEK1ds</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=m_qRYnZ6cL0">http://www.youtube.com/watch?v=m_qRYnZ6cL0</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=J0cfNgFsGss">http://www.youtube.com/watch?v=J0cfNgFsGss</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=Ss2k8gu8L7k">http://www.youtube.com/watch?v=Ss2k8gu8L7k</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=PN7Sd9eZCCc">http://www.youtube.com/watch?v=PN7Sd9eZCCc</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=MQtyZcBUk28">http://www.youtube.com/watch?v=MQtyZcBUk28</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #5</strong></td>
<td><strong>Chilecito &#8211; Fiambala</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=G-TGcS_7wPM">http://www.youtube.com/watch?v=G-TGcS_7wPM</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=InyG5pLIIsE">http://www.youtube.com/watch?v=InyG5pLIIsE</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=ENw4mDKmANc">http://www.youtube.com/watch?v=ENw4mDKmANc</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=qr2u4PBOkhs">http://www.youtube.com/watch?v=qr2u4PBOkhs</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=TgG-uol75gA">http://www.youtube.com/watch?v=TgG-uol75gA</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=5VGmjMvU6OQ">http://www.youtube.com/watch?v=5VGmjMvU6OQ</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #6</strong></td>
<td><strong>Fiambalá &#8211; Copiapó (cancelled)</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=JUUY8YfFLjA">http://www.youtube.com/watch?v=JUUY8YfFLjA</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #7</strong></td>
<td><strong>Copiapó &#8211; Copiapó</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=qUsy0Z91O8s">http://www.youtube.com/watch?v=qUsy0Z91O8s</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=6n0tXZ_0tjw">http://www.youtube.com/watch?v=6n0tXZ_0tjw</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=gMPtdMayuEU">http://www.youtube.com/watch?v=gMPtdMayuEU</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=dplAEUSLYnA">http://www.youtube.com/watch?v=dplAEUSLYnA</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=HewrmfL3I4A">http://www.youtube.com/watch?v=HewrmfL3I4A</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=GgOXrQMOf4k">http://www.youtube.com/watch?v=GgOXrQMOf4k</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #8</strong></td>
<td><strong>Copiapo &#8211; Antofagasta</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=oS1ONeBaSBs">http://www.youtube.com/watch?v=oS1ONeBaSBs</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=nllPwuXFo_I">http://www.youtube.com/watch?v=nllPwuXFo_I</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=wowX8e-vs_E">http://www.youtube.com/watch?v=wowX8e-vs_E</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=ZHjLjhYXY0w">http://www.youtube.com/watch?v=ZHjLjhYXY0w</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=BIj5vDFqZzQ">http://www.youtube.com/watch?v=BIj5vDFqZzQ</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=ovY3xofvOD4">http://www.youtube.com/watch?v=ovY3xofvOD4</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #9</strong></td>
<td><strong>Antofagasta &#8211; Iquique</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=XBuOsa1MtV4">http://www.youtube.com/watch?v=XBuOsa1MtV4</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=DR9ZD8nxE_g">http://www.youtube.com/watch?v=DR9ZD8nxE_g</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=F8DDNwH1-20">http://www.youtube.com/watch?v=F8DDNwH1-20</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=EJt_M-SivgQ">http://www.youtube.com/watch?v=EJt_M-SivgQ</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=PWfq1A3ecAg">http://www.youtube.com/watch?v=PWfq1A3ecAg</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=pcGIfIa1AgY">http://www.youtube.com/watch?v=pcGIfIa1AgY</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #10 </strong></td>
<td><strong>Iquique &#8211; Arica</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=ZTtGAdw6nVg">http://www.youtube.com/watch?v=ZTtGAdw6nVg</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=c-UYsBvfViI">http://www.youtube.com/watch?v=c-UYsBvfViI</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=Ff0gNejQ6Tk">http://www.youtube.com/watch?v=Ff0gNejQ6Tk</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=ceu888H2Jkw">http://www.youtube.com/watch?v=ceu888H2Jkw</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=mzNSu5tMZDU">http://www.youtube.com/watch?v=mzNSu5tMZDU</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=yNjhqlyWyuI">http://www.youtube.com/watch?v=yNjhqlyWyuI</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #11</strong></td>
<td><strong>Arica &#8211; Arequipa</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=49BrJqP_KrI">http://www.youtube.com/watch?v=49BrJqP_KrI</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=4P4NatRhrbQ">http://www.youtube.com/watch?v=4P4NatRhrbQ</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=MyA1t-gVDyI">http://www.youtube.com/watch?v=MyA1t-gVDyI</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=v_6Lu1Om9ss">http://www.youtube.com/watch?v=v_6Lu1Om9ss</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=Tdrd0WnhbCw">http://www.youtube.com/watch?v=Tdrd0WnhbCw</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=X_cYb0wSGQg">http://www.youtube.com/watch?v=X_cYb0wSGQg</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #12</strong></td>
<td><strong>Arequipa &#8211; Nasca</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=_cXZrzAshhE">http://www.youtube.com/watch?v=_cXZrzAshhE</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=g-oI9WPeHro">http://www.youtube.com/watch?v=g-oI9WPeHro</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=zTWaDC4oRzk">http://www.youtube.com/watch?v=zTWaDC4oRzk</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=J59LWOd2ZLg">http://www.youtube.com/watch?v=J59LWOd2ZLg</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=3CpQANn42sw">http://www.youtube.com/watch?v=3CpQANn42sw</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=IOEMQtp33MA">http://www.youtube.com/watch?v=IOEMQtp33MA</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #13</strong></td>
<td><strong>Nasca &#8211; Pisco</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=M3-AZw3TB_g">http://www.youtube.com/watch?v=M3-AZw3TB_g</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=9qiHRmtUUkA">http://www.youtube.com/watch?v=9qiHRmtUUkA</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=2q1RaUR_GjA">http://www.youtube.com/watch?v=2q1RaUR_GjA</a></td>
</tr>
<tr>
<td></td>
<td>Landscape of the day</td>
<td><a href="http://www.youtube.com/watch?v=dBdBb7Fk4UU">http://www.youtube.com/watch?v=dBdBb7Fk4UU</a></td>
</tr>
<tr>
<td></td>
<td>Image of the day</td>
<td><a href="http://www.youtube.com/watch?v=W8L-rbya1k4">http://www.youtube.com/watch?v=W8L-rbya1k4</a></td>
</tr>
<tr>
<td></td>
<td>Legend</td>
<td><a href="http://www.youtube.com/watch?v=1Ehbq3nEBTE">http://www.youtube.com/watch?v=1Ehbq3nEBTE</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><strong>Stage #14</strong></td>
<td><strong>Pisco &#8211; Lima</strong></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Stage summary</td>
<td><a href="http://www.youtube.com/watch?v=XrraIa6Kckk">http://www.youtube.com/watch?v=XrraIa6Kckk</a></td>
</tr>
<tr>
<td></td>
<td>Magazine</td>
<td><a href="http://www.youtube.com/watch?v=us838D3EzXk">http://www.youtube.com/watch?v=us838D3EzXk</a></td>
</tr>
<tr>
<td></td>
<td>Interview stage winner</td>
<td><a href="http://www.youtube.com/watch?v=1bP48Z7ErZM">http://www.youtube.com/watch?v=1bP48Z7ErZM</a><a href="http://www.youtube.com/watch?v=ljkeNZPRYDU"></a></td>
</tr>
<tr>
<td></td>
<td>Best of bike</td>
<td><a href="http://www.youtube.com/watch?v=ljkeNZPRYDU">http://www.youtube.com/watch?v=ljkeNZPRYDU</a><a href="http://www.youtube.com/watch?v=1bP48Z7ErZM"></a></td>
</tr>
<tr>
<td></td>
<td>Best of car</td>
<td><a href="http://www.youtube.com/watch?v=hzzTmqP5Jo8">http://www.youtube.com/watch?v=hzzTmqP5Jo8</a><a href="http://www.youtube.com/watch?v=XrraIa6Kckk"></a></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.diktator.org%2Findex.php%2F2012%2F01%2F14%2Fkeeping-track-of-the-dakar-2012%2F&amp;t=Keeping%20track%20of%20the%20Dakar%202012" id="facebook_share_button_504" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_504') || document.getElementById('facebook_share_icon_504') || document.getElementById('facebook_share_both_504') || document.getElementById('facebook_share_button_504');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_504') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blog.diktator.org/index.php/2012/01/14/keeping-track-of-the-dakar-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Homeland</title>
		<link>http://blog.diktator.org/index.php/2012/01/03/homeland/</link>
		<comments>http://blog.diktator.org/index.php/2012/01/03/homeland/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 01:00:17 +0000</pubDate>
		<dc:creator>Fredrik</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://blog.diktator.org/index.php/2012/01/03/homeland/</guid>
		<description><![CDATA[Just saw the season finale of the new series Homeland and I&#8217;ve got to say that it&#8217;s a really good series! It&#8217;s managed to keep me more on edge during the whole first season than a lot of other series. Up until the last episode of this season they kept an intriguing story line with [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">J</span>ust saw the season finale of the new series <em>Homeland</em> and I&#8217;ve got to say that it&#8217;s a really good series! It&#8217;s managed to keep me more on edge during the whole first season than a lot of other series. Up until the last episode of this season they kept an intriguing story line with a few unanticipated twists left right to the end, aka &#8211; <em>cliffhanger</em>.</p>
<p>I&#8217;ll be waiting for season two now! :)</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.diktator.org%2Findex.php%2F2012%2F01%2F03%2Fhomeland%2F&amp;t=Homeland" id="facebook_share_button_502" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_502') || document.getElementById('facebook_share_icon_502') || document.getElementById('facebook_share_both_502') || document.getElementById('facebook_share_button_502');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_502') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blog.diktator.org/index.php/2012/01/03/homeland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving from uncertainty to certainty via doubt</title>
		<link>http://blog.diktator.org/index.php/2011/12/23/moving-from-uncertainty-to-certainty-via-doubt/</link>
		<comments>http://blog.diktator.org/index.php/2011/12/23/moving-from-uncertainty-to-certainty-via-doubt/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 22:14:15 +0000</pubDate>
		<dc:creator>Fredrik</dc:creator>
				<category><![CDATA[Methodology]]></category>
		<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://blog.diktator.org/?p=496</guid>
		<description><![CDATA[Recently I came across a situation in Argentina where we needed to fill up our car with gas, but none of the gas stations around had any. Given that we were on a road trip through Patagonia our knowledge of the local surroundings was limited to a paper map and a TomTom device with a [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">R</span>ecently I came across a situation in Argentina where we needed to fill up our car with gas, but none of the gas stations around had any. Given that we were on a road trip through Patagonia our knowledge of the local surroundings was limited to a paper map and a TomTom device with a few points of interest.</p>
<p>As you&#8217;ll read later on, this situation presented quite a lot of uncertainty, and my learnings on how to create certainty could be summarized like this:</p>
<ul>
<li> What information do we have?</li>
<li>What is our current goal?</li>
<li>What information do we need to achieve our goal?</li>
<li>How do we get that information?</li>
<li>What is our alternative plan?</li>
</ul>
<p>It all began with our arrival at a <a href="http://www.petrobras.com.br/" target="_blank">Petrobras</a> station in <a href="http://g.co/maps/xx8fs" target="_blank">Sarmiento</a> with a half full tank. Pretty soon it became clear that the gas station had run out of gas, but a local was quick to help out with the information that the gas station in <a href="http://g.co/maps/6ccpx" target="_blank">Facundo</a> (about 90 kilometers further in the direction that we were travelling in) had gas available and that the refill in Sarmiento wouldn&#8217;t arrive sooner than 1,5 hours. Knowing that one full tank of gas takes us approximately 440 kilometers we knew that we&#8217;d easily reach Facundo on what we had left. So, we drove the 90 kilometers to Facundo only to arrive in a town that never had a gas station (and probably never will). Yet another local in Facundo told us that we ought to travel even further along the road to <a href="http://g.co/maps/hunxw" target="_blank">Gobernador Costa</a>, claiming that we would easily make it there with our, now quarter full tank. A quick check on the paper map revealed that the distance to Gobernador Costa was way longer than we&#8217;d manage on what gas we had left now. So we decided to drive back to Sarmiento. Slowly.</p>
<p>Back in Sarmiento it became apparent that the refill of the gas station had not occurred, and now we only had about 3-4 liters of fuel left in the tank.</p>
<p>That pretty much sets the scene. Stuck in Sarmiento:</p>
<ul>
<li>with 3-4 liters of fuel (consuming approximately 1 liter per 10 kilometers),</li>
<li>no gas at the Petrobras station,</li>
<li>no gas at the <a href="http://www.ypf.com/" target="_blank">YPF</a> station about 500 meters down the road either,</li>
<li>time was about 4 pm,</li>
<li>rumors of gas available at <a href="http://g.co/maps/3g88s" target="_blank">Villa Hermoso</a>,</li>
<li>an uncertain possibility to get a room at a hotel (a sign at the side of the road hinted of a hotel in Sarmiento).</li>
</ul>
<p>There are different ways of approaching a situation like this, of which the least effective one is to act passive and resort to raising &#8220;what if&#8230;&#8221; questions. Those could be &#8220;What if there is no refill today?&#8221;, &#8220;What if we need to stay here over night?&#8221;, &#8220;What if there is no gas i Villa Hermoso?&#8221;. Basically, a lot of &#8220;What if&#8221;-s and no signs of devising a plan.</p>
<p>Instead of being ruled by passiveness we decided that being proactive and get an action list in order with the ambition to be able to act on it immediately would be the best thing to do. What information do we have? What is our current goal? What information do we need to achieve our goal? How do we get that information? What is our alternative plan? Breaking it down:</p>
<p><strong>What information do we have?</strong></p>
<p>What we knew is more or less described in the previous bullet list, so nothing more to add here.</p>
<p><strong>What is our current goal?</strong></p>
<p>In this case it was rather simple to answer that question: to fill up the car with gas as soon as possible. But given other circumstances (or facts) it could already have been something like &#8220;get a room for the night&#8221;.</p>
<p><strong>What information do we need to achieve our goal?</strong></p>
<p>This section, and the next, is probably the most interesting ones in this blog post since they aim at attacking the primary problem at hand by breaking it down with a series of very concrete questions and actions. In this particular case:</p>
<ol>
<li>How far, exactly, is it to Valle Hermoso?</li>
<li>Does the gas station in Valle Hermoso have gas?</li>
<li>Can we get to Valle Hermoso on what we have left in the tank?</li>
<li>Will any of the locals sell us gas?</li>
<li>How much gas would we need to get to Gobernador Costa?</li>
<li>When will the gas stations in Sarmiento get a refill?</li>
<li>Can we execute the actions for answers to any of the questions above in parallel (yeeeees, very geeky)?</li>
</ol>
<p>How would you arrive at a list like this? You just need to take the &#8220;What if&#8221;s that are floating around and make proper questions of them. Sure, a few of the questions above are the result of previous questions, but all in all it&#8217;s not hard for a human being in need to come up with questions. The only real effort here is to prioritize the list so that you start working on the most important part first.</p>
<p><strong>How do we get that information?</strong></p>
<p>I&#8217;ll re-use the numbers of the questions above for clarity:</p>
<ol>
<li>Our paper map had pre-calculated distances printed and our TomTom device also had Valle Hermoso entered as a location, so this was a fairly simple procedure. The answer turned out to be about 65 kilometers in the direction we had first arrived from.</li>
<li>This turned out to be a bit more tricky since you might not always get correct information from people. This isn&#8217;t because they want to harm you, it&#8217;s just that they do actually want to help you. So they might feed you crappy information just to keep up the appearance of being knowledgeable. The simple solution here is to ask <strong>multiple</strong> persons and to <strong>compare their answers</strong>. We ended up with the following data:
<ul>
<li>Random person in a pick up truck: &#8220;No, there is no gas station at all in Valle Hermoso!&#8221;.</li>
<li>Other random person in a sedan: &#8220;Yes, there is a gas station!&#8221;. This answer prompted me to further qualify the accuracy of that statement by asking &#8220;What company is it?&#8221;
<ul>
<li>Rather quickly I got the answer &#8220;YPF!&#8221;.</li>
</ul>
</li>
<li>Two guys on motorcycles with small tanks: &#8220;Yes, there is a YPF station in Valle Hermoso, but it&#8217;s run out of gas as well.&#8221;. Being a motorcyclist myself I happen to know that bikers usually keep track of their fuel status and where to get more fuel. They both answered my questions more or less in unison, so I knew that the information would be pretty accurate.</li>
</ul>
</li>
<li>Being fairly confident that there is no gas in Valle Hermoso this question is now redundant (but no, we wouldn&#8217;t have gotten there with what we had left).</li>
<li>Turns out that one local offered to check for gas in his home and return within one hour. One thing if importance to note here is that due to the language barrier (and probably stress) it was not agreed upon whether or not he would return regardless of what he had at home. This resulted in us waiting for two hours. Just to be sure.</li>
<li>Using the paper map and the pre-calculated distances we gathered that 20 liters added to our tank might just be enough to get us there.</li>
<li>Getting our hands on this information would of course have been very nice, how ever given the track record of previous &#8220;help&#8221; from locals and the limited amount of gas station attendants we knew we&#8217;d probably be fed inaccurate information without the possibility to cross check. And yes, later it turned out to be inaccurate.</li>
<li>Yes! Whilst trying to rustle up some fuel from any locals passing by (#4) we also stopped and talked to people coming from various directions (#2) while at the same time analysing the maps for distance information (#1 &amp; #5).</li>
</ol>
<p><strong>What is our alternative plan?</strong></p>
<p>Looking at the information gathering process above and checking the current time it soon became pretty obvious that we&#8217;d need to get a hotel room, and in the end that&#8217;s what we ended up doing. To ensure that we&#8217;d actually get a room and not have to sleep in the car we decided that we had to start finding a room pretty soon, otherwise everyone else would&#8217;ve gotten to the rooms before us. Having the alternative plan ready and knowing when to act on it is necessary in order to stay one step ahead. Your alternative plan might not be one you like, but get yourself warmed up to the idea and don&#8217;t ignore it. In total we stayed in Sarmiento for about two and a half days. Each and every day one of us in the group would check around the gas stations to see if there were any news regarding a refill. Other than that there&#8217;s nothing much to do other than accepting the facts of life and that every other option has been identified and worked on.</p>
<p><strong>Wrap up</strong></p>
<p>It all ended on a Monday morning when after having decided that we&#8217;d arrive early and be first in line at the Petrobras station for the delivery that most likely would arrive that day. The ironic ending to this story is that while sitting in the car at the Petrobras station we saw a truck from YPF pass on the main road. It looked like it was heavily loaded and luckily another member in the group who had already begun walking towards the YPF station for information could call us and confirm that the truck was pulling in. So we decided to abandon Petrobras and bet for success at the YPF station. And success we had!</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.diktator.org%2Findex.php%2F2011%2F12%2F23%2Fmoving-from-uncertainty-to-certainty-via-doubt%2F&amp;t=Moving%20from%20uncertainty%20to%20certainty%20via%20doubt" id="facebook_share_button_496" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_496') || document.getElementById('facebook_share_icon_496') || document.getElementById('facebook_share_both_496') || document.getElementById('facebook_share_button_496');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_496') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blog.diktator.org/index.php/2011/12/23/moving-from-uncertainty-to-certainty-via-doubt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are you qualified to fix everything?</title>
		<link>http://blog.diktator.org/index.php/2011/12/13/are-you-qualified-to-fix-everything/</link>
		<comments>http://blog.diktator.org/index.php/2011/12/13/are-you-qualified-to-fix-everything/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 17:50:35 +0000</pubDate>
		<dc:creator>Fredrik</dc:creator>
				<category><![CDATA[Methodology]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://blog.diktator.org/index.php/2011/12/13/are-you-qualified-to-fix-everything/</guid>
		<description><![CDATA[A couple of days ago I got a flat tyre on my bicycle. In and of itself that&#8217;s not really a big problem, I consider myself handy enough to fix that myself. However, what was a problem was time; I really needed my bike the next day and for the rest of the week and [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">A</span> couple of days ago I got a flat tyre on my bicycle. In and of itself that&#8217;s not really a big problem, I consider myself handy enough to fix that myself. However, what was a problem was time; I really needed my bike the next day and for the rest of the week and I didn&#8217;t really have any time in my already busy schedule to fiddle around with a punctured inner tube. Also, I don&#8217;t have a clue as to which sizes of inner tubes there are and if there is a chance of me getting the wrong one.</p>
<p>So I decided that I would only bother with taking the wheel off the bike and then let someone else fix the flat tire using any means necessary. This seemed very reasonable partly because there is a bicycle shop around the block from where I currently work.</p>
<p>So at 10 am when the shop had opened I went over to see if they could help me. Little did I know that in three minutes flat and 170 Swedish krona later I was equipped with a new inner tube mounted on my wheel &#8211; ready to be put back on my bike!</p>
<p>The moral of the story is basically this:<br />
Realize that there are people more skilled than you and let them do their job so that you get more time to do your job (or whatever you happen to value most right then and there). Everybody wins! Those 170 Swedish krona are probably the most well spent money I&#8217;ve put into that bike!</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.diktator.org%2Findex.php%2F2011%2F12%2F13%2Fare-you-qualified-to-fix-everything%2F&amp;t=Are%20you%20qualified%20to%20fix%20everything%3F" id="facebook_share_button_495" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_495') || document.getElementById('facebook_share_icon_495') || document.getElementById('facebook_share_both_495') || document.getElementById('facebook_share_button_495');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_495') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blog.diktator.org/index.php/2011/12/13/are-you-qualified-to-fix-everything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guns and monkeys</title>
		<link>http://blog.diktator.org/index.php/2011/12/08/guns-and-monkeys/</link>
		<comments>http://blog.diktator.org/index.php/2011/12/08/guns-and-monkeys/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 09:25:23 +0000</pubDate>
		<dc:creator>Fredrik</dc:creator>
				<category><![CDATA[Memorable quotes]]></category>

		<guid isPermaLink="false">http://blog.diktator.org/index.php/2011/12/08/guns-and-monkeys/</guid>
		<description><![CDATA[It&#8217;s like giving a gun to a monkey, very dangerous!
-Borat
Share
	
	
	
	]]></description>
			<content:encoded><![CDATA[<em><span class="dropcap">I</span>t&#8217;s like giving a gun to a monkey, very dangerous!</em></p>
<p>-Borat</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.diktator.org%2Findex.php%2F2011%2F12%2F08%2Fguns-and-monkeys%2F&amp;t=Guns%20and%20monkeys" id="facebook_share_button_492" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_492') || document.getElementById('facebook_share_icon_492') || document.getElementById('facebook_share_both_492') || document.getElementById('facebook_share_button_492');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_492') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blog.diktator.org/index.php/2011/12/08/guns-and-monkeys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Droopy</title>
		<link>http://blog.diktator.org/index.php/2011/11/28/droopy/</link>
		<comments>http://blog.diktator.org/index.php/2011/11/28/droopy/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 14:34:53 +0000</pubDate>
		<dc:creator>Fredrik</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://blog.diktator.org/index.php/2011/11/28/droopy/</guid>
		<description><![CDATA[After having been checked out by a neurologist due to suspicion of multiple sclerosis (which no one really thought was plausible anyway) I&#8217;m now waiting for step two in the investigation of my hanging eye lid. If only they could stay on schedule, that would be awesome.
I&#8217;m guessing that either way it&#8217;ll end up with [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">A</span>fter having been checked out by a neurologist due to suspicion of multiple sclerosis (which no one really thought was plausible anyway) I&#8217;m now waiting for step two in the investigation of my hanging eye lid. If only they could stay on schedule, that would be awesome.</p>
<p>I&#8217;m guessing that either way it&#8217;ll end up with some form of surgery. It&#8217;d be interesting to see myself in the mirror again with that stern look I was able to serve before the eye lid started out its life of lazy. ;)</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.diktator.org%2Findex.php%2F2011%2F11%2F28%2Fdroopy%2F&amp;t=Droopy" id="facebook_share_button_491" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_491') || document.getElementById('facebook_share_icon_491') || document.getElementById('facebook_share_both_491') || document.getElementById('facebook_share_button_491');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_491') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blog.diktator.org/index.php/2011/11/28/droopy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today&#8217;s climbing</title>
		<link>http://blog.diktator.org/index.php/2011/11/28/todays-climbing/</link>
		<comments>http://blog.diktator.org/index.php/2011/11/28/todays-climbing/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 22:42:44 +0000</pubDate>
		<dc:creator>Fredrik</dc:creator>
				<category><![CDATA[Climbing]]></category>

		<guid isPermaLink="false">http://blog.diktator.org/index.php/2011/11/28/todays-climbing/</guid>
		<description><![CDATA[And today was the day that I managed to check the last item off my list of short term challenges regarding wall climbing. The first one was to get all the way to the top of the tunnel and the second one was to get past the unnecessarily large overhang using technique instead of brute [...]]]></description>
			<content:encoded><![CDATA[<p><span class="dropcap">A</span>nd today was the day that I managed to check the last item off my list of short term challenges regarding wall climbing. The first one was to get all the way to the top of the tunnel and the second one was to get past the unnecessarily large overhang using technique instead of brute force. </p>
<p>Overhang, you&#8217;ve got nothing on me now!</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.diktator.org%2Findex.php%2F2011%2F11%2F28%2Ftodays-climbing%2F&amp;t=Today%27s%20climbing" id="facebook_share_button_489" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_489') || document.getElementById('facebook_share_icon_489') || document.getElementById('facebook_share_both_489') || document.getElementById('facebook_share_button_489');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_489') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blog.diktator.org/index.php/2011/11/28/todays-climbing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stringed instruments</title>
		<link>http://blog.diktator.org/index.php/2011/11/27/stringed-instruments/</link>
		<comments>http://blog.diktator.org/index.php/2011/11/27/stringed-instruments/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 19:40:27 +0000</pubDate>
		<dc:creator>Fredrik</dc:creator>
				<category><![CDATA[Memorable quotes]]></category>

		<guid isPermaLink="false">http://blog.diktator.org/index.php/2011/11/27/stringed-instruments/</guid>
		<description><![CDATA[These are real bad times bro, we&#8217;ve got people playing stringed instruments! It&#8217;s the end of days!
-Four Lions
Share
	
	
	
	]]></description>
			<content:encoded><![CDATA[<em><span class="dropcap">T</span>hese are real bad times bro, we&#8217;ve got people playing stringed instruments! It&#8217;s the end of days!</em></p>
<p>-Four Lions</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.diktator.org%2Findex.php%2F2011%2F11%2F27%2Fstringed-instruments%2F&amp;t=Stringed%20instruments" id="facebook_share_button_487" style="font-size:11px; line-height:13px; font-family:'lucida grande',tahoma,verdana,arial,sans-serif; text-decoration:none; display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; margin: 5px 0; height:15px; border:1px solid #d8dfea; color: #3B5998; background: #fff url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif) no-repeat top right;">Share</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_487') || document.getElementById('facebook_share_icon_487') || document.getElementById('facebook_share_both_487') || document.getElementById('facebook_share_button_487');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_487') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blog.diktator.org/index.php/2011/11/27/stringed-instruments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

