<?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>Kristian Øllegaard</title>
	<atom:link href="http://kristian.oellegaard.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kristian.oellegaard.com</link>
	<description>Bloggen fra det virkelige liv!</description>
	<lastBuildDate>Mon, 29 Aug 2011 13:55:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Python rounding to 05</title>
		<link>http://kristian.oellegaard.com/2011/08/29/python-rounding-to-05/</link>
		<comments>http://kristian.oellegaard.com/2011/08/29/python-rounding-to-05/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 13:55:39 +0000</pubDate>
		<dc:creator>Kristian Houlberg Øllegaard</dc:creator>
				<category><![CDATA[Ikke kategoriseret]]></category>

		<guid isPermaLink="false">http://kristian.oellegaard.com/?p=122</guid>
		<description><![CDATA[Here in Switzerland they decided (for some reason, that can&#8217;t be good) not to pay the correct amount, but round it to the nearest 0/5 cent &#8211; which is a pain when doing python stuff. Therefore i made a Decimal &#8230; <a href="http://kristian.oellegaard.com/2011/08/29/python-rounding-to-05/">Læs resten <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here in Switzerland they decided (for some reason, that can&#8217;t be good) not to pay the correct amount, but round it to the nearest 0/5 cent &#8211; which is a pain when doing python stuff. Therefore i made a Decimal rounding function for python, check it out:</p>
<p><code><br />
from decimal import Decimal, ROUND_HALF_UP</p>
<p>def decimal_round(d, digits=0, to_five=True):<br />
    if to_five:<br />
        d = (d/Decimal("5"))<br />
    d = d.quantize(Decimal("1") / (Decimal('10') ** digits), rounding=ROUND_HALF_UP)<br />
    if to_five:<br />
        d = d * Decimal("5")<br />
    return d<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://kristian.oellegaard.com/2011/08/29/python-rounding-to-05/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plugins (management) with RabbitMQ</title>
		<link>http://kristian.oellegaard.com/2011/08/05/plugins-management-with-rabbitmq/</link>
		<comments>http://kristian.oellegaard.com/2011/08/05/plugins-management-with-rabbitmq/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 15:11:13 +0000</pubDate>
		<dc:creator>Kristian Houlberg Øllegaard</dc:creator>
				<category><![CDATA[Ikke kategoriseret]]></category>

		<guid isPermaLink="false">http://kristian.oellegaard.com/?p=110</guid>
		<description><![CDATA[Today i spent quite some time investigating why i could make the plugin &#8220;management&#8221; run with RabbitMQ. I was running ubuntu 10.04 (LTS) and did sudo apt-get install rabbitmq-server. First of all, it was a mystery how to enable the &#8230; <a href="http://kristian.oellegaard.com/2011/08/05/plugins-management-with-rabbitmq/">Læs resten <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today i spent quite some time investigating why i could make the plugin &#8220;management&#8221; run with RabbitMQ. I was running ubuntu 10.04 (LTS) and did sudo apt-get install rabbitmq-server.</p>
<p>First of all, it was a mystery how to enable the plugins. There were no default plugin directory existing, but thats solved by adding it yourself. You can find your rabbitmq directory with whereis, e.g. &#8220;whereis rabbitmq&#8221;. Then you just create a folder called &#8220;plugins&#8221; inside the folder called rabbitmq_version, in my case: /usr/lib/rabbitmq/lib/rabbitmq_server-1.7.2/</p>
<p>In the above case, i didnt get it working, as the management interface isn&#8217;t compatible with 1.7.2, which is bundled with the LTS. So now I&#8217;m investigating the possibility to upgrade it via  their custom apt-get repository available from their website.</p>
<p>However, the reason why im writing this, is that i spent a lot of time not beeing able to enable the plugins.</p>
<p>You have to run a script inside the bin folder in /usr/lib/rabbitmq/ &#8211; both for enabling and disabling plugins</p>
]]></content:encoded>
			<wfw:commentRss>http://kristian.oellegaard.com/2011/08/05/plugins-management-with-rabbitmq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing VMware ESXi 4 from you mac</title>
		<link>http://kristian.oellegaard.com/2011/05/11/managing-vmware-esxi-4-from-you-mac/</link>
		<comments>http://kristian.oellegaard.com/2011/05/11/managing-vmware-esxi-4-from-you-mac/#comments</comments>
		<pubDate>Wed, 11 May 2011 14:16:43 +0000</pubDate>
		<dc:creator>Kristian Houlberg Øllegaard</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[System administration]]></category>

		<guid isPermaLink="false">http://kristian.oellegaard.com/?p=113</guid>
		<description><![CDATA[For my own reference, and maybe others i found this very usefull link: http://www.howconfig.com/linux/how-to-open-cli-to-vmware-esxi-how-to-clone-virtual-machines/ This will be a direct quote, in case the site will ever change: You can access the CLI by switching to terminal 1 using Alt-F1. Now &#8230; <a href="http://kristian.oellegaard.com/2011/05/11/managing-vmware-esxi-4-from-you-mac/">Læs resten <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For my own reference, and maybe others i found this very usefull link:<br />
<a href="http://www.howconfig.com/linux/how-to-open-cli-to-vmware-esxi-how-to-clone-virtual-machines/">http://www.howconfig.com/linux/how-to-open-cli-to-vmware-esxi-how-to-clone-virtual-machines/</a></p>
<p>This will be a direct quote, in case the site will ever change:</p>
<blockquote><p>
You can access the CLI by switching to terminal 1 using Alt-F1.<br />
Now type “unsupported”, This is not echoed so you won’t see anything. If you get it right, you will get a prompt asking for the root pasword.<br />
( This might not work in ESXi 4.0 as VMWare is trying to limit ESXi for their own corporate reasons )<br />
That drops you at a shell prompt. (ash is our shell).<br />
Hint: editor = vi<br />
Now you can you modify /etc/inetd.conf and uncomment the ssh line so that you can ssh into it unless you are planning always being at the console.<br />
Reboot ( init 6 )<br />
Cloning Virtual machines in ESXi<br />
vmkfs tools -i /vmfs/volumes/datastore/YourVM/YourVM.vmdk /vmfs/volumes/datastore/NewVM/newvm.vmdk<br />
vim-cmd vmsvc/getallvms<br />
vim-cmd vmsvc/power.reset xx<br />
check out these ( with vim-cmd vmsvc/command ):<br />
power.off<br />
power.on<br />
power.reboot<br />
power.reset<br />
power.shutdown<br />
power.suspend<br />
esxtop = is your top tool</p></blockquote>
<p>My tips:</p>
<p>Just ssh to your ESXi server e.g. ssh root@esxi and run the above commands. It might tell you that its unsupported, unfortunately there is no supported client to mac, so thats not really usefull information anyway</p>
<p>Use at your own risk.</p>
]]></content:encoded>
			<wfw:commentRss>http://kristian.oellegaard.com/2011/05/11/managing-vmware-esxi-4-from-you-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>En lækker salat</title>
		<link>http://kristian.oellegaard.com/2011/05/09/en-laekker-salat/</link>
		<comments>http://kristian.oellegaard.com/2011/05/09/en-laekker-salat/#comments</comments>
		<pubDate>Mon, 09 May 2011 17:33:55 +0000</pubDate>
		<dc:creator>Kristian Houlberg Øllegaard</dc:creator>
				<category><![CDATA[Billig mad]]></category>

		<guid isPermaLink="false">http://kristian.oellegaard.com/?p=111</guid>
		<description><![CDATA[I dag troede jeg, at jeg havde en masse ting herhjemme jeg kunne lave mad af. Det viste sig, ikke at være tilfældet. Jeg blev derfor nødt til at improvisere, det ville jo være forfærdeligt at gå over på den &#8230; <a href="http://kristian.oellegaard.com/2011/05/09/en-laekker-salat/">Læs resten <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I dag troede jeg, at jeg havde en masse ting herhjemme jeg kunne lave mad af. Det viste sig, ikke at være tilfældet. Jeg blev derfor nødt til at improvisere, det ville jo være forfærdeligt at gå over på den anden side af vejen til vores kæmpe supermarked.</p>
<p>Jeg havde det der svarer til et halvt hoved icebergsalat, noget pasta, oliven og nogle af de der små agurk-lignende ting der vidstnok (ihvertfald på tysk) hedder cornichorns. Salaten var allerede groft snittet, så jeg vaskede den, smed den ned i en stor skål, sammen med fint skårne skiver af oliven og chornicorns. Herefter krydrede jeg den med salt, peber og oregano. Det smagte egentlig fint, men jeg havde sådan lyst til noget anderledes &#8211; så jeg hældte en god omgang tabasco sauce i, sammen med lidt paprika &#8211; det blev dog liige stærkt nok, så jeg smed lige lidt &#8220;french dressing&#8221; i &#8211; det minder mest af alt om en tynd creme fraiche dressing.</p>
<p>Jeg vil ikke sige så meget andet end, det smager skide godt &#8211; og det kan ikke have kostet meget mere end en 20&#8242;er.</p>
<p>I øvrigt kan jeg lige tilføje at jeg sidder her en tidlig majdag med 29 grader indenfor &#8211; og &#8220;pænt varmt&#8221; ude i solen <img src='http://kristian.oellegaard.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kristian.oellegaard.com/2011/05/09/en-laekker-salat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMVare fusion black screen after first reboot</title>
		<link>http://kristian.oellegaard.com/2011/05/07/vmvare-fusion-black-screen-after-first-reboot/</link>
		<comments>http://kristian.oellegaard.com/2011/05/07/vmvare-fusion-black-screen-after-first-reboot/#comments</comments>
		<pubDate>Sat, 07 May 2011 22:19:17 +0000</pubDate>
		<dc:creator>Kristian Houlberg Øllegaard</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[System administration]]></category>

		<guid isPermaLink="false">http://kristian.oellegaard.com/?p=108</guid>
		<description><![CDATA[Today i wanted to test some stuff, so i fired up 3 vms with the newest ubuntu server, i used VMVware fusions easy install feature and it didnt take many minutes before everything worked, however, then i did sudo reboot &#8230; <a href="http://kristian.oellegaard.com/2011/05/07/vmvare-fusion-black-screen-after-first-reboot/">Læs resten <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today i wanted to test some stuff, so i fired up 3 vms with the newest ubuntu server, i used VMVware fusions easy install feature and it didnt take many minutes before everything worked, however, then i did sudo reboot and got black screen, no reaction at all.</p>
<p>However, after randomly doing a couple of things, i tried to turn it off &#8211; and it actually printed the different services going down.</p>
<p>So i found out that it default didnt activate any tty&#8217;s, so you just have to switch to any one of them, e.g.</p>
<p>ALT + F1 (if you are on a macbook pro too, remember the FN button in the combination, to actually use the F2 key)</p>
]]></content:encoded>
			<wfw:commentRss>http://kristian.oellegaard.com/2011/05/07/vmvare-fusion-black-screen-after-first-reboot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Next Danish election threatened by workers union</title>
		<link>http://kristian.oellegaard.com/2011/02/21/next-danish-election-threatened-by-workers-union/</link>
		<comments>http://kristian.oellegaard.com/2011/02/21/next-danish-election-threatened-by-workers-union/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 23:15:16 +0000</pubDate>
		<dc:creator>Kristian Houlberg Øllegaard</dc:creator>
				<category><![CDATA[Ikke kategoriseret]]></category>

		<guid isPermaLink="false">http://kristian.oellegaard.com/?p=101</guid>
		<description><![CDATA[In Denmark we will soon have the next 4th yearly election for our parliament &#8220;folketinget&#8221;. However, it seems to be threatened by the workers union PROSA, whose members are maintaining some of the most important IT systems in Denmark (including &#8230; <a href="http://kristian.oellegaard.com/2011/02/21/next-danish-election-threatened-by-workers-union/">Læs resten <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In Denmark we will soon have the next 4th yearly election for our parliament &#8220;folketinget&#8221;. However, it seems to be threatened by the workers union PROSA, whose members are maintaining some of the most important IT systems in Denmark (including the police systems and the tax authorities). All these systems are maintained by CSC, who made a lockout of some of the works unions members, which resulted in a strike for even more members.</p>
<p>If you ask me CSC reminds me of overpriced public IT projects &#8211; it always ends this way. Furthermore, its really common that every time they finish a project, that they charged many tax moneys for, it seems to be lacking functionality. However, the public IT administration seems to be married with them and continues to pick them for every project.</p>
<p>I think this is a great example of the public IT administration failing once again &#8211; never pick the same supplier for all the public service systems &#8211; you risk loosing them all simultaneously.</p>
<p>Read more at <a href="http://www.comon.dk/nyheder/prosa-truer-folketingsvalg-1.391053.html">comon</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kristian.oellegaard.com/2011/02/21/next-danish-election-threatened-by-workers-union/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Løgne, useriøsitet og mistede pakker</title>
		<link>http://kristian.oellegaard.com/2011/02/21/loegne-userioesitet-og-mistede-pakker/</link>
		<comments>http://kristian.oellegaard.com/2011/02/21/loegne-userioesitet-og-mistede-pakker/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 16:46:48 +0000</pubDate>
		<dc:creator>Kristian Houlberg Øllegaard</dc:creator>
				<category><![CDATA[Ikke kategoriseret]]></category>

		<guid isPermaLink="false">http://kristian.oellegaard.com/?p=98</guid>
		<description><![CDATA[Jeg arbejder selv i kundeservice i et større dansk firma og er vandt til at snakke med alle forskellige slags mennesker hver dag. Der skal derfor også normalt ret meget til at jeg hidser mig op, specielt i telefonen. Det &#8230; <a href="http://kristian.oellegaard.com/2011/02/21/loegne-userioesitet-og-mistede-pakker/">Læs resten <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Jeg arbejder selv i kundeservice i et større dansk firma og er vandt til at snakke med alle forskellige slags mennesker hver dag. Der skal derfor også normalt ret meget til at jeg hidser mig op, specielt i telefonen.</p>
<p>Det er dog lykkes <a href="http://www.bring.dk/">bring</a> at få mig til at gå ud af mit ellers gode skind.  Jeg havde bestilt en pakke med noget <a href="http://www.tailorstore.dk">skræddersyet tøj</a>, som jeg har ventet på i snart en måned. Det var derfor glædeligt da jeg blev meddelt for en uge siden, at det var afsendt.</p>
<p>Det skulle være leveret i torsdags på mit arbejde, men i stedet for at få min dels meget store pakke (25kg, iflg. deres track-n-trace system), men også dyre pakke, så får jeg en mistænkelig lille pakke med cykeludstyr, adresseret til en anden person, med en seddel ovenpå, hvor der står den skal sendes til mig. Jeg kunne dog ikke nå at fortælle det til chaufføren, da jeg fik leveret det på arbejde.</p>
<p>De har simpelthen <a href="http://www.bring.dk/Bring+Parcels/Forside">udleveret en anden mands pakke til mig</a>, selvom der stadig står at de ikke har leveret min pakke i deres system.</p>
<p>Jeg har aldrig hørt om lignende før, og jeg tager straks kontakt til bring (i deres meget begrænsede åbningstid) og får fat i en svensker der er meget svær at forstå. Jeg prøver at forklare ham at jeg har fået en anden mands personlige ting udleveret af deres firma, noget han antyder <a href="http://www.trustpilot.dk/review/www.bring.dk">slet ikke er unormalt</a>. Han siger at jeg blot lige kan give den til chaufføren, når han kommer med den rigtige pakke.</p>
<p>Her begår jeg min største fejl, og tror på hvad han siger. Derudover lover han at levere det på en anden adresse, da jeg ikke skulle på arbejde dagen efter. Jeg får den nye adresse bekræftet på email og sidder derhjemme og venter på pakken.</p>
<p>Denne gang kommer der ingen chauffør og jeg bliver heller ikke kontaktet. Jeg ringede herefter i morges, efter ikke at have hørt det mindste. De fortæller mig nu at de egentlig <a href="http://www.bring.com">ikke aner hvor min pakke er</a>, men lover at ringe rundt og forsøge at finde den og ringe tilbage.</p>
<p>Det skete ikke, og jeg ringede derfor igen til middag, hvor jeg fik at vide at de stadig ikke have den fjerneste ide om hvor min pakke var, men at de ville ringe senere. Jeg har lige talt med den igen, hvor de har sagt at det jo ikke er deres problem at de har mistet pakken &#8211; jeg må ringe til det firma jeg har købt varen ved og få dem til at sende en ny.</p>
<p>Jeg har aldrig været så forarget over et firma i mit liv, de er fuldstændig <a href="http://www.bring.dk">ligeglade med kunderne</a> (og der går da også ca. 15-20 minutter i gennemsnit før de gider tage telefonen, sikkert fordi de sætter erhvervskunder foran i køen).</p>
<p>Min konklusion må være, <strong><a href="http://www.postdanmark.dk/index.jsp">hvis du vil have dine pakker (til tiden), så bestil dem med Post Danmark</a></strong>.</p>
<p>Jeg er i øjeblikket ved at undersøge hvorvidt jeg kan klage eller anmelde bring til de rette myndigheder.</p>
]]></content:encoded>
			<wfw:commentRss>http://kristian.oellegaard.com/2011/02/21/loegne-userioesitet-og-mistede-pakker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install PIL (Python Imaging Library) on Mac</title>
		<link>http://kristian.oellegaard.com/2011/02/12/how-to-install-pil-python-imaging-library-on-mac/</link>
		<comments>http://kristian.oellegaard.com/2011/02/12/how-to-install-pil-python-imaging-library-on-mac/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 13:02:03 +0000</pubDate>
		<dc:creator>Kristian Houlberg Øllegaard</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://kristian.oellegaard.com/?p=94</guid>
		<description><![CDATA[I often get the error &#8220;ImportError: No module named PIL&#8221;, when using ImageFields in django. I had my current mac for about 2 years and i never found out how to install PIL. Today, however, i really needed it and &#8230; <a href="http://kristian.oellegaard.com/2011/02/12/how-to-install-pil-python-imaging-library-on-mac/">Læs resten <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I often get the error &#8220;ImportError: No module named PIL&#8221;, when using ImageFields in django. I had my current mac for about 2 years and i never found out how to install PIL. Today, however, i really needed it and i found this <a href="http://www.p16blog.com/p16/2008/05/appengine-installing-pil-on-os-x-1053.html">amazing fix</a>. In case this perfect description will be deleted, I&#8217;ve inserted it below for my own reference.</p>
<p><strong>Full credits to p16blog.com</strong></p>
<p>Execute the following code<br />
<code>cd /Library/Frameworks<br />
sudo ln -s /System/Library/Frameworks/Python.framework/ Python.framework</code></p>
<p><a href="http://pythonmac.org/packages/py25-fat/index.html">Download</a> and install PIL</p>
<p>Remember to add PIL to PYTHONPATH<br />
<code>export PYTHONPATH=/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/<br />
</code><br />
<em>(should be added to your startup script, e.g. ~/.bash_profile)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://kristian.oellegaard.com/2011/02/12/how-to-install-pil-python-imaging-library-on-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Puppet: err: Could not retrieve catalog from remote server</title>
		<link>http://kristian.oellegaard.com/2011/01/13/puppet-err-could-not-retrieve-catalog-from-remote-server/</link>
		<comments>http://kristian.oellegaard.com/2011/01/13/puppet-err-could-not-retrieve-catalog-from-remote-server/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 20:50:07 +0000</pubDate>
		<dc:creator>Kristian Houlberg Øllegaard</dc:creator>
				<category><![CDATA[System administration]]></category>

		<guid isPermaLink="false">http://kristian.oellegaard.com/?p=83</guid>
		<description><![CDATA[Yesterday i found Puppet and shortly after i bought the book Pulling Strings With Puppet. I got up and running with a few test machines (while reading the book) within a couple of hours and i managed to do some &#8230; <a href="http://kristian.oellegaard.com/2011/01/13/puppet-err-could-not-retrieve-catalog-from-remote-server/">Læs resten <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday i found <a href="http://www.puppetlabs.com/puppet/introduction/" target="_blank">Puppet</a> and shortly after i bought the book <a href="http://www.apress.com/book/view/1590599780" target="_blank">Pulling Strings With Puppet</a>. I got up and running with a few test machines (while reading the book) within a couple of hours and i managed to do some basic stuff. Furthermore i installed puppet-dashboard, an overall pretty undocumented process. Maybe I&#8217;ll write a post about this later.</p>
<p>However, i used many hours trying to debug this really annoying error:</p>
<pre>err: Could not retrieve catalog from remote server: Error 400 on
SERVER: Could not find class nginx in namespaces &lt;class&gt; at 
/etc/puppet/manifests/classes/&lt;class&gt;.pp:3 on node &lt;fqdn&gt;</pre>
<p>I got this error after installing the nginx module, from &#8220;module forge&#8221; &#8211; by install i mean git clone the github page. I put in into /etc/puppet/modules/ and after adding nginx to a class, i was stuck with this error. The solution, however, is really simple.</p>
<p>When you clone the nginx module, the directory is called puppet-nginx &#8211; you need to rename it, so its called nginx and nothing else. This will remove this error.</p>
<p>I googled this thing for hours, hopefully this will be #1 next time someone experience this.</p>
<p>Please comment if you use Puppet and saw this article! <img src='http://kristian.oellegaard.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kristian.oellegaard.com/2011/01/13/puppet-err-could-not-retrieve-catalog-from-remote-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s finally here. The mac app store.</title>
		<link>http://kristian.oellegaard.com/2011/01/06/its-finally-here-the-mac-app-store/</link>
		<comments>http://kristian.oellegaard.com/2011/01/06/its-finally-here-the-mac-app-store/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 22:50:02 +0000</pubDate>
		<dc:creator>Kristian Houlberg Øllegaard</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://kristian.oellegaard.com/?p=77</guid>
		<description><![CDATA[Let me start by saying, I really love my mac &#8211; and all the stuff that comes with it. When I, two years ago, switched from Windows Vista to Mac OS X I was thrilled by the general quality of &#8230; <a href="http://kristian.oellegaard.com/2011/01/06/its-finally-here-the-mac-app-store/">Læs resten <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Let me start by saying, I really love my mac &#8211; and all the stuff that comes with it. When I, two years ago, switched from Windows Vista to Mac OS X I was thrilled by the general quality of the applications available for OS X. Everything looks nicer and works better.</p>
<p>This is why I have been looking forward to the release of the Mac App Store. A quick view shows, what Apple showed on their prelaunch site months ago:</p>
<p><a href="http://kristian.oellegaard.com/wp-content/uploads/2011/01/Skærmbillede-2011-01-06-kl.-23.24.16.png"><img class="alignnone size-medium wp-image-79" title="Mac App Store Overview" src="http://kristian.oellegaard.com/wp-content/uploads/2011/01/Skærmbillede-2011-01-06-kl.-23.24.16-300x235.png" alt="Mac App Store Overview" width="300" height="235" /></a></p>
<p>It looks a bit like iTunes, but its entirely separated (thank god!). I initially tried to download <a href="http://itunes.apple.com/dk/app/mindnode-for-mac/id402397683?mt=12">MindNode for Mac</a>.  Its was surprisingly easy and the software was automatically added to the dock.</p>
<p>Currently the selection is a bit narrow and many of the apps available are iphone ports and to be honest, I dont think <a href="http://itunes.apple.com/dk/app/angry-birds/id403961173?mt=12">Angry Birds</a> is as fun on the Mac as it is on my iPhone. However, the Danish App Store reviews gives another impression.</p>
<p>If you didn&#8217;t update your Mac yet, you can do it from System Preferences. The download is not too big and after a fast restart you are ready to try the brand new Mac App Store.</p>
]]></content:encoded>
			<wfw:commentRss>http://kristian.oellegaard.com/2011/01/06/its-finally-here-the-mac-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

