<?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>Lasse Bunk&#039;s weblog &#187; Linux</title>
	<atom:link href="http://lassebunk.dk/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://lassebunk.dk</link>
	<description>Ruby on Rails, programming, and SEO</description>
	<lastBuildDate>Sat, 19 May 2012 10:18:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using Linux and Dropbox as a remote backup solution</title>
		<link>http://lassebunk.dk/2011/03/16/linux-dropbox-remote-backup/</link>
		<comments>http://lassebunk.dk/2011/03/16/linux-dropbox-remote-backup/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 22:43:55 +0000</pubDate>
		<dc:creator>lassebunk</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://lassebunk.dk/?p=1512</guid>
		<description><![CDATA[How to create a free remote backup solution using Linux and Dropbox.]]></description>
			<content:encoded><![CDATA[<p>In my <a href="http://lassebunk.dk/2011/03/11/linux-backup-script/" title="Linux shell script to backup websites, MySQL, and PostgreSQL databases">previous post</a> I wrote about how to backup websites and databases using the command line in Linux.</p>
<p>In this post I am going to show how to extend this setup with <a href="http://www.dropbox.com">Dropbox</a> to make it a full fledged remote backup solution&#8230; and it&#8217;s free! (at least for the first 2 GB <img src='http://lassebunk.dk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> )</p>
<h3>1. Obtaining an account from Dropbox</h3>
<p>You might want to create a Dropbox account only for taking backups if you don&#8217;t want all your documents and photos synchronized to your Linux server.</p>
<p>Go to <a href="http://www.dropbox.com">www.dropbox.com</a> to create your account.</p>
<h3>2. Dropbox installation</h3>
<p>The installation instructions below are a slightly modified version from the <a href="http://wiki.dropbox.com/TipsAndTricks/TextBasedLinuxInstall">Dropbox community&#8217;s</a> to make it as easy as possible.</p>
<p>Start by logging in to your Linux server as the user you want to assign Dropbox to. In this example we will use root:</p>
<pre class="brush: bash; title: ; notranslate">
$ sudo su
</pre>
<p>Change to your home directory:</p>
<pre class="brush: bash; title: ; notranslate">
$ cd ~
</pre>
<p>Download Dropbox.</p>
<p>Stable 32-bit:</p>
<pre class="brush: bash; title: ; notranslate">
$ wget -O dropbox.tar.gz &quot;http://www.dropbox.com/download/?plat=lnx.x86&quot;
</pre>
<p>Or stable 64-bit:</p>
<pre class="brush: bash; title: ; notranslate">
$ wget -O dropbox.tar.gz &quot;http://www.dropbox.com/download/?plat=lnx.x86_64&quot;
</pre>
<p>Extract:</p>
<pre class="brush: bash; title: ; notranslate">
$ tar -xvzf dropbox.tar.gz
</pre>
<p>It will extract to <code>.dropbox-dist</code>.</p>
<p>Run Dropbox:</p>
<pre class="brush: bash; title: ; notranslate">
$ ~/.dropbox-dist/dropbox
</pre>
<p>You should see output like this:</p>
<pre class="brush: bash; title: ; notranslate">
This client is not linked to any account...
Please visit https://www.dropbox.com/cli_link?host_id=7d44a557aa58f285f2da0x67334d02c1 to link this machine.
</pre>
<p>Go to the URL given; you should see a success message at the top of your screen.<br />
<strong>Important:</strong> Dropbox will create a ~/Dropbox folder and start synchronizing when you do this. Make sure you&#8217;ve logged in to the correct Dropbox account at <a href="http://www.dropbox.com">www.dropbox.com</a> before going to the URL.</p>
<p>Exit Dropbox by pressing <code>CTRL+D</code>.</p>
<h3>3. Installing Dropbox as a service</h3>
<p>The following is a modified single-user version of <a href="http://forums.dropbox.com/topic.php?id=13254#post-84658">Drazenko D.&#8217;s Dropbox daemon script</a>.</p>
<p>Start up your favorite editor, creating <code>/etc/init.d/dropbox</code>:</p>
<pre class="brush: bash; title: ; notranslate">
$ nano /etc/init.d/dropbox
</pre>
<p>Insert the following script:</p>
<pre class="brush: bash; title: ; notranslate">
start() {
    echo &quot;Starting dropbox...&quot;
    start-stop-daemon -b -o -c root -S -x /root/.dropbox-dist/dropbox
}

stop() {
    echo &quot;Stopping dropbox...&quot;
    start-stop-daemon -o -c root -K -x /root/.dropbox-dist/dropbox
}

status() {
        dbpid=$(pgrep -u root dropbox)
        if [ -z $dbpid ] ; then
            echo &quot;dropbox not running.&quot;
        else
            echo &quot;dropbox running.&quot;
        fi
}

case &quot;$1&quot; in
  start)
    start
    ;;

  stop)
    stop
    ;;

  restart|reload|force-reload)
    stop
    start
    ;;

  status)
    status
    ;;

  *)
    echo &quot;Usage: /etc/init.d/dropbox {start|stop|reload|force-reload|restart|status}&quot;
    exit 1

esac

exit 0
</pre>
<p>And save and exit the editor.</p>
<p>Set up execute permissions for the script:</p>
<pre class="brush: bash; title: ; notranslate">
$ chmod +x /etc/init.d/dropbox
</pre>
<p>Set the script to load at startup:</p>
<pre class="brush: bash; title: ; notranslate">
$ update-rc.d dropbox defaults
</pre>
<p>Run the script to start Dropbox:</p>
<pre class="brush: bash; title: ; notranslate">
$ /etc/init.d/dropbox start
</pre>
<p>Make sure Dropbox is running:</p>
<pre class="brush: bash; title: ; notranslate">
$ /etc/init.d/dropbox status
</pre>
<p>And you&#8217;re good to go <img src='http://lassebunk.dk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . Dropbox will now run as a background service when you start your server.</p>
<h3>4. Backing up to Dropbox</h3>
<p>After installing Dropbox, you can use the backup script from my <a href="http://lassebunk.dk/2011/03/11/linux-backup-script/" title="Linux shell script to backup websites, MySQL, and PostgreSQL databases">previous post</a> and backup to the Dropbox instead. Like this:</p>
<pre class="brush: bash; title: ; notranslate">
$ /var/scripts/backup.sh -d ~/Dropbox/backup/lassebunk/daily -s lassebunk -m lassebunk
</pre>
<p>Or, you can manually backup files by copying them to the Dropbox folder:</p>
<pre class="brush: bash; title: ; notranslate">
$ cp myveryimportantfile.tar.gz ~/Dropbox
</pre>
<h3>Conclusion</h3>
<p>I hope you found this post helpful when creating your own remote backup solution. If you did, please let me know in the comments how you use it <img src='http://lassebunk.dk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>
<a href="http://twitter.com/lassebunk" onclick="abtest.trackGoal(21, this);" class="icon twitter">Follow me on Twitter</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://lassebunk.dk/2011/03/16/linux-dropbox-remote-backup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Linux shell script to backup websites, MySQL, and PostgreSQL databases</title>
		<link>http://lassebunk.dk/2011/03/11/linux-backup-script/</link>
		<comments>http://lassebunk.dk/2011/03/11/linux-backup-script/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 16:07:08 +0000</pubDate>
		<dc:creator>lassebunk</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://lassebunk.dk/?p=1491</guid>
		<description><![CDATA[How to make a Linux shell script that backs up your websites and databases.]]></description>
			<content:encoded><![CDATA[<p>I finally found the time to make a proper backup script for my home Linux server.<br />
My demands were these – it should be able to:</p>
<ul>
<li>Backup my websites</li>
<li>Backup my MySQL databases</li>
<li>Backup my PostgreSQL databases</li>
<li>Delete old backups to preserve disk space</li>
</ul>
<p>I&#8217;ll split the script into pieces to explain each part – you can download the whole script at the bottom of this post.</p>
<p>First we get the arguments:</p>
<ul>
<li><strong>-d</strong> to specify destination</li>
<li><strong>-s</strong> to specify website to backup</li>
<li><strong>-m</strong> to specify MySQL database to backup</li>
<li><strong>-p</strong> to specify PostgreSQL database to backup</li>
</ul>
<pre class="brush: bash; title: ; notranslate">
# get arguments
while [ &quot;$1&quot; != &quot;&quot; ]; do
    case $1 in
        -d | --destination )    shift
                                dest=$1
                                ;;
        -s | --site )           shift
                                site=$1
                                ;;
        -m | --mysql )          shift
                                mysqldb=$1
                                ;;
        -p | --postgres )       shift
                                postgresdb=$1
                                ;;
        * )                     echo &quot;Unknown argument $1.&quot;
                                exit 1
    esac
    shift
done
</pre>
<p>Complain if no destination is specified:</p>
<pre class="brush: bash; title: ; notranslate">
# complain if no destination specified
if [ &quot;$dest&quot; == &quot;&quot; ]; then
  echo &quot;Missing destination.&quot;
  exit 1
fi
</pre>
<p>Set and create backup folder. It creates folders in the <strong>destination/yyyymmddhhmmss</strong> format:</p>
<pre class="brush: bash; title: ; notranslate">
# set and create backup folder
folder=&quot;$dest/`date +%Y%m%d%H%M%S`&quot;
mkdir -p $folder
</pre>
<p>Backup website if specified. I keep all my websites in <strong>/var/www</strong>:</p>
<pre class="brush: bash; title: ; notranslate">
# backup website
if [ &quot;$site&quot; != &quot;&quot; ]; then
  echo &quot;Backing up site $site to $folder/www.tar.gz...&quot;
  cd /var/www
  tar -czf $folder/www.tar.gz $site
fi
</pre>
<p>Backup MySQL database if specified. It assumes that the database has a user with the same name, and logs in with this user:</p>
<pre class="brush: bash; title: ; notranslate">
# backup mysql database
if [ &quot;$mysqldb&quot; != &quot;&quot; ]; then
  echo &quot;Backing up database $mysqldb to $folder/db.sql.gz...&quot;
  mysqldump -u $mysqldb $mysqldb | gzip &gt; $folder/db.sql.gz
fi
</pre>
<p>Backup PostgreSQL database if specified. Like with MySQL, it assumes that the database has a user with the same name, and logs in with this user:</p>
<pre class="brush: bash; title: ; notranslate">
# backup postgres database
if [ &quot;$postgresdb&quot; != &quot;&quot; ]; then
  echo &quot;Backing up database $postgresdb to $folder/db.sql.gz...&quot;
  pg_dump -U $postgresdb $postgresdb | gzip &gt; $folder/db.sql.gz
fi
</pre>
<p>It finally deletes old backups, keeping the last 5:</p>
<pre class="brush: bash; title: ; notranslate">
# delete old backups keeping 5
echo &quot;Deleting old backups...&quot;
cd $dest
ls -t | sed 1,5d | while read folder; do rm -r $folder; done
</pre>
<p>Done:</p>
<pre class="brush: bash; title: ; notranslate">
# done
echo &quot;Done.&quot;
</pre>
<p>My <strong>crontab -e</strong> is then:</p>
<pre class="brush: bash; title: ; notranslate">
# m h  dom mon dow   command

# lassebunk
0 2 * * * /var/scripts/backup.sh -d /var/backups/sites/lassebunk/daily -s lassebunk -m lassebunk
0 2 1 * * /var/scripts/backup.sh -d /var/backups/sites/lassebunk/monthly -s lassebunk -m lassebunk

# othersite
0 2 * * * /var/scripts/backup.sh -d /var/backups/sites/othersite/daily -s othersite -p othersite
0 2 1 * * /var/scripts/backup.sh -d /var/backups/sites/othersite/monthly -s othersite -p othersite
</pre>
<p>Please also see my follow-up on this post: <a href="http://lassebunk.dk/2011/03/16/linux-dropbox-remote-backup/">Using Linux and Dropbox as a remote backup solution</a></p>
<p>I hope you found it useful – if you have any comments or suggestions, please write a comment below.</p>
<p><a href="http://lassebunk.dk/downloads/backup.sh">Download the script</a></p>
<p>
<a href="http://twitter.com/lassebunk" onclick="abtest.trackGoal(21, this);" class="icon twitter">Follow me on Twitter</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://lassebunk.dk/2011/03/11/linux-backup-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My first Linux server: Uptime: 365 days</title>
		<link>http://lassebunk.dk/2010/07/02/my-first-linux-server-uptime-365-days/</link>
		<comments>http://lassebunk.dk/2010/07/02/my-first-linux-server-uptime-365-days/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 19:04:40 +0000</pubDate>
		<dc:creator>lassebunk</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uptime]]></category>

		<guid isPermaLink="false">http://lassebunk.dk/?p=1252</guid>
		<description><![CDATA[My first Linux server has now been up for a year.]]></description>
			<content:encoded><![CDATA[<p>This post is to announce that my first <a href="http://www.linux.org">Linux</a> server has now officially been up for a whole year!</p>
<pre class="brush: bash; title: ; notranslate">21:03:57 up 365 days, 21:53,  2 users,  load average: 0.00, 0.00, 0.00</pre>
<p>I originally used this server as a staging server but later on cancelled my <a href="http://www.slicehost.com">Slicehost</a> virtual server and began using my own server as a production server. It now hosts <a href="http://lassebunk.dk">lassebunk.dk</a>, <a href="http://tweetmycam.com">tweetmycam.com</a>, and <a href="http://userdriven.dk">userdriven.dk</a>.</p>
<p>
<a href="http://twitter.com/lassebunk" onclick="abtest.trackGoal(21, this);" class="icon twitter">Follow me on Twitter</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://lassebunk.dk/2010/07/02/my-first-linux-server-uptime-365-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three months on the Mac stack</title>
		<link>http://lassebunk.dk/2009/09/24/three-months-on-the-mac-stack/</link>
		<comments>http://lassebunk.dk/2009/09/24/three-months-on-the-mac-stack/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 13:39:45 +0000</pubDate>
		<dc:creator>lassebunk</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Amiga]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[C64]]></category>
		<category><![CDATA[Compiler]]></category>
		<category><![CDATA[Github]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[Netbooks]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Slicehost]]></category>
		<category><![CDATA[Slices]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[TextMate]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware Fusion]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://lassebunk.dk/?p=221</guid>
		<description><![CDATA[I started out using Windows and ended up using OS X and Linux.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">It’s actually four months now – since May 1st – but I’ve been wanting to write this article for a month. Hence the – somewhat misleading – title.</p>
<p>I bought my <a href="http://www.apple.com/macbook/">MacBook</a> on May 1th after viewing a <a href="http://rubyonrails.org/screencasts">screencast where a guy sets up a blog in 15 minutes</a> using <a href="http://rubyonrails.org">Ruby on Rails</a>. I immediately said to my stepdad: “I’m going to buy a Mac and learn Ruby on Rails!”</p>
<p>And so I did &#8211; the day after, I bought a Mac.</p>
<p>I’ve always been a dedicated user of <a href="http://www.microsoft.com">Microsoft</a>&#8216;s products. First <a href="http://en.wikipedia.org/wiki/Commodore_64">C64</a>, then <a href="http://en.wikipedia.org/wiki/Amiga">Amiga</a>, then <a href="http://en.wikipedia.org/wiki/Power_Macintosh_5300">Mac</a>, then PC. I liked the way everything was tested and came from one place, unlike <a href="http://en.wikipedia.org/wiki/Open_source">open source</a>. I’ve always been saying stuff like “I like to pay for my software because then I&#8217;m be sure about the quality.” – but in reality, everyone who uses Windows and other Microsoft products know that this isn’t always the case.</p>
<p>So I bought the Mac, and the first thing that surprised me, was how much of day-to-day work was done in the <a href="http://en.wikipedia.org/wiki/Apple_Terminal">Terminal</a>, or <a href="http://en.wikipedia.org/wiki/Command-line_interface">command line</a>. When I installed Ruby on Rails, it was via command line; when I installed plugins, it was via command line. Evererything command line. <img src='http://lassebunk.dk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Over the next few days I began to get a hang of it. I bought a couple of <a href="http://en.wikipedia.org/wiki/Domain_name">domain names</a> and signed up for a <a href="http://en.wikipedia.org/wiki/Slice_%28disk%29">slice</a> at <a href="http://www.slicehost.com">Slicehost</a> – because I had read some <a href="http://railswork.com">job description</a> that said that you should&#8217;ve at least tried to use a whole day of setting a slice.</p>
<p>Coming from Windows, Linux is a whole other deal to setup. I used a lot of the <a href="http://articles.slicehost.com/">Slicehost articles</a> that guides you through the whole process from setup and security to getting your slice to run as a <a href="http://www.apache.org">webserver</a>.</p>
<p>In the beginning I was a little nervous about all the command lines, if they would really work and so one. But the more you try it, the more calm you get. It just works! And lucky me there was a lot of helpful articles about Unix and Linux commands out there (just search for the command on <a href="http://www.google.com">Google</a>).</p>
<p>Since starting out on the Mac, I’ve learned a multitude of things:</p>
<ul>
<li> Setting up an <a href="http://www.ubuntu.com/">Ubuntu</a> <a href="http://en.wikipedia.org/wiki/Slice_%28disk%29">slice</a> at <a href="http://www.slicehost.com">Slicehost</a>.</li>
<li>Setting up a <a href="http://www.apache.org">web server</a>.</li>
<li>Setting up <a href="http://www.ubuntu.com/GetUbuntu/download-netbook">Ubuntu Netbook Remix</a> on my <a href="http://eeepc.asus.com/">netbook</a>.</li>
<li>Setting up <a href="http://www.ubuntu.com/getubuntu/download-server">Ubuntu server</a> at home, also on my netbook – which now functions as my testing server.</li>
<li>Programming a little <a href="http://www.php.net">PHP</a> – see Tweet My Cam.</li>
<li>Programming <a href="http://rubyonrails.org">Ruby on Rails</a>.</li>
<li>Tweaking some <a href="http://www.java.com">Java</a> code, <a href="http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javac.html">compiling</a> and <a href="http://forums.sun.com/thread.jspa?threadID=174214">signing</a> a <a href="http://en.wikipedia.org/wiki/Java_applet">java applet</a> in one day – see a demo <a href="http://lassebunk.dk/2009/07/19/using-the-clipboard-to-post-images/">here</a>.</li>
<li>Download and compile software (<a href="http://tldp.org/LDP/LG/current/smith.html">configure, make, make install</a>).</li>
<li><a href="http://railsontherun.com/2008/3/3/how-to-use-github-and-submit-a-patch">Submitted a patch</a> to a Ruby on Rails <a href="http://github.com/technoweenie/restful-authentication">plugin</a> on <a href="http://github.com">Github</a>.</li>
<li>Setting up <a href="http://wordpress.org">WordPress</a> and <a href="http://mu.wordpress.org/">WordPress Mu</a> blogs and making my own <a href="http://lassebunk.dk">theme</a> – see <a href="http://lassebunk.dk">my private blog</a> and <a href="http://userdriven.dk">private work blog</a>.</li>
<li>Setting up a <a href="http://subversion.tigris.org/">Subversion</a> repository at <a href="http://www.xp-dev.com/">XP-Dev.com</a>.</li>
<li>Using the Subversion repository <img src='http://lassebunk.dk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
<li>Loving <a href="http://macromates.com/">Textmate</a> as my favorite editor – also over <a href="http://www.microsoft.com/visualstudio">Visual Studio</a>.</li>
<li>Plus a bunch of other things.</li>
</ul>
<p>In short I’ve learned so much about the open source world that just wasn’t that easy on the Microsoft platform.</p>
<p>I still use Microsoft Windows and other products, but now it’s through <a href="http://www.vmware.com/products/fusion/">VMware Fusion</a> on the Mac.</p>
<p>I’m happy about the Mac because <a href="http://www.apple.com/macosx/">OS X</a> is very unobtrusive, fast operating system and what it does, it does very good. But at the same time, I also want a netbook that’s easier to carry, so I may end up running both systems for different purposes (unless I&#8217;m just installing Ubuntu on the netbook too <img src='http://lassebunk.dk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ).</p>
<p>Hope you found this post interesting – I wrote it to tell about a beautiful (yak, I know) progress from Windows to Mac and Linux. Thumbs up if this has made you want to try it too. And please tell me in the comments. <img src='http://lassebunk.dk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>
<a href="http://twitter.com/lassebunk" onclick="abtest.trackGoal(21, this);" class="icon twitter">Follow me on Twitter</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://lassebunk.dk/2009/09/24/three-months-on-the-mac-stack/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

