<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Michael Vogt&#039;s blog</title>
	<atom:link href="http://mvogt.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mvogt.wordpress.com</link>
	<description>I like tea and free software</description>
	<lastBuildDate>Fri, 24 May 2013 06:24:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mvogt.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Michael Vogt&#039;s blog</title>
		<link>http://mvogt.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mvogt.wordpress.com/osd.xml" title="Michael Vogt&#039;s blog" />
	<atom:link rel='hub' href='http://mvogt.wordpress.com/?pushpress=hub'/>
		<item>
		<title>git fast-import apt</title>
		<link>http://mvogt.wordpress.com/2013/05/16/git-fast-import-apt/</link>
		<comments>http://mvogt.wordpress.com/2013/05/16/git-fast-import-apt/#comments</comments>
		<pubDate>Thu, 16 May 2013 23:10:23 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=260</guid>
		<description><![CDATA[Due to popular demand I moved debian apt and python-apt from bzr to git today. Moving was pretty painless: $ git init $ bzr fast-export --export-marks=marks.bzr -b debian/sid /path/to/debian-sid &#124; git fast-import --export-marks=marks.git And then a fast-import for the debian-wheezy and debian-experimental branches too. Then a $ git gc --aggressive (thanks to Guillem Jover for [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=260&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Due to popular demand I moved debian apt and python-apt from bzr to git today. Moving was pretty painless:</p>
<pre>
$ git init
$ bzr fast-export --export-marks=marks.bzr -b debian/sid /path/to/debian-sid | git fast-import --export-marks=marks.git
</pre>
<p>And then a fast-import for the debian-wheezy and debian-experimental branches too.  Then a </p>
<pre>
$ git gc --aggressive
</pre>
<p>(thanks to Guillem Jover for pointing this out) and that was it.</p>
<p>The branches are available at:</p>
<ul>
<li><a href="http://anonscm.debian.org/gitweb/?p=apt/apt.git" rel="nofollow">http://anonscm.debian.org/gitweb/?p=apt/apt.git</a> </li>
<li> <a href="http://anonscm.debian.org/gitweb/?p=apt/python-apt.git" rel="nofollow">http://anonscm.debian.org/gitweb/?p=apt/python-apt.git</a>. </li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/260/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=260&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/05/16/git-fast-import-apt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e67d709de69b0fe334ff422389bc47fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mvo</media:title>
		</media:content>
	</item>
		<item>
		<title>Webkitgtk &amp; SSL</title>
		<link>http://mvogt.wordpress.com/2013/04/30/webkitgtk-ssl/</link>
		<comments>http://mvogt.wordpress.com/2013/04/30/webkitgtk-ssl/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 18:03:18 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=237</guid>
		<description><![CDATA[For a project of mine I created a small app based on webkitgtk that talks to a SSL server. And I almost forgot about the libsoup default behavior for SSL certificates checking. By default libsoup and therefore webkitgtk will not do any SSL certificate checks. You need to put something like the following snippet into [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=237&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>For a project of mine I created a small app based on webkitgtk that talks to a SSL server.</p>
<p>
And I almost forgot about the libsoup <a href="https://bugzilla.gnome.org/show_bug.cgi?id=666280">default behavior</a> for SSL certificates checking. By default libsoup and therefore webkitgtk will not do any SSL certificate checks. You need to put something like the following snippet into your code (adjust for your language of choice):</p>
<pre>
from gi.repository import WebKit

session = WebKit.get_default_session()
session.set_property("ssl-use-system-ca-file", True)
</pre>
<p>If you don&#8217;t do this it will accept any certificate (including self-signed ones).</p>
<p>This is documented behavior in libsoup and they don&#8217;t want to change it for compatiblity reasons in libsoup. But for webkit its unexpected behavior (at least to me) and I hope the webkitgtk developers will consider changing this default in webkit. I filed <a href="https://bugs.webkit.org/show_bug.cgi?id=114945">a bug</a> about it. So if you use webkitgtk and SSL, remember to set the above property.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/237/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=237&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/04/30/webkitgtk-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e67d709de69b0fe334ff422389bc47fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mvo</media:title>
		</media:content>
	</item>
		<item>
		<title>PassHash cmdline</title>
		<link>http://mvogt.wordpress.com/2013/04/18/passhash-cmdline/</link>
		<comments>http://mvogt.wordpress.com/2013/04/18/passhash-cmdline/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 20:45:50 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=214</guid>
		<description><![CDATA[I use the PassHash firefox extension to generate site-specific strong passwords. The idea behind the extension is that a master password and a siteTag (e.g. the domain name) is used to generate a sha1 hash. This hash is used as the password for the website. In python its essentially this code: h = hmac.new(master_pass, site_tag, [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=214&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I use the <a href="http://github.com/wijjo/PassHash">PassHash firefox extension</a> to  generate site-specific strong passwords. The idea behind the extension is that a master password and a siteTag (e.g. the domain name) is used to generate a sha1 hash. This hash is used as the password for the website. In python its essentially this code:</p>
<pre>
h = hmac.new(master_pass, site_tag, hashlib.sha1)
print(b64encode(h.digest())[:hash_len])
</pre>
<p>
I want a commandline utility that can output me PassHash compatible hashes when I use w3m (or if the extension stops working for some reason).
</p>
<p>
To my delight I discovered that the upstream git repNice and hard to brute-force.o of PassHash already has a <a href="https://github.com/wijjo/PassHash/blob/master/tools/passhash.py">python helper</a>  to generate passhash compatible password. I added some tweaks to add pythons argparse <a href="https://github.com/mvo5/PassHash/blob/master/tools/passhash.py">[1]</a> and now I&#8217;m really happy with it:
</p>
<pre>
$ ./tools/passhash.py --hash-size 14 slashdot.org
Please enter the master key: 
KPXveo7bq7j1%X
</pre>
<p>Hard to brute-force and matches what the extension generates.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/214/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=214&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/04/18/passhash-cmdline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e67d709de69b0fe334ff422389bc47fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mvo</media:title>
		</media:content>
	</item>
		<item>
		<title>squid-deb-proxy for Debian</title>
		<link>http://mvogt.wordpress.com/2013/04/11/squid-deb-proxy-for-debian/</link>
		<comments>http://mvogt.wordpress.com/2013/04/11/squid-deb-proxy-for-debian/#comments</comments>
		<pubDate>Thu, 11 Apr 2013 18:05:48 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=207</guid>
		<description><![CDATA[I uploaded squid-deb-proxy into Debian unstable today and its in the NEW queue. I created it back in the days of Ubuntu 10.04 and some people voiced interest in having it in Debian as well so I spend a bit of time to get it customized for Debian. Squid-deb-proxy uses the well known squid proxy [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=207&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I uploaded squid-deb-proxy into Debian unstable today and its in the NEW queue. I created it back in the days of Ubuntu 10.04 and some people voiced interest in having it in Debian as well so I spend a bit of time to get it customized for Debian.</p>
<p>Squid-deb-proxy uses the well known squid proxy with a custom configuration to cache deb package and Indexfiles (like Packages.gz) that will allow caching from the default archives and mirrors and reject anything else by default.</p>
<p>The basic philosophy is that &#8220;it just works&#8221;. You run on your server:</p>
<pre>
root@server# apt-get install squid-deb-proxy
</pre>
<p>and on your clients:</p>
<pre>
root@client# apt-get install squid-deb-proxy-client
</pre>
<p>and that&#8217;s it. It does not require any fiddling with configuration (unless you want to <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ). The default will let you connect to .debian.org and nothing else.</p>
<p>The server will announce itself via avahi as _apt_proxy._tcp and the<br />
client will hook into apt to use Acquire::http::ProxyAutoDetect. The<br />
client is useful for other servers that announce themself via avahi.</p>
<p>Packaging was a bit more work than anticipated because there is a bit of setup and teardown work in the initscript. For Debian as sysvinit script was needed, Ubuntu uses upstart so it took a bit of refactoring to extract the code into a common helper.</p>
<p>If you want to try it now, its available via:</p>
<pre>
$ bzr branch lp:squid-deb-proxy
$ cd squid-deb-proxy
$ bzr-buildpackage
</pre>
<p>and in unstable once it leaves the NEW queue.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/207/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=207&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/04/11/squid-deb-proxy-for-debian/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e67d709de69b0fe334ff422389bc47fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mvo</media:title>
		</media:content>
	</item>
		<item>
		<title>Fun with sqlite/fts</title>
		<link>http://mvogt.wordpress.com/2013/03/27/fun-with-sqlitefts/</link>
		<comments>http://mvogt.wordpress.com/2013/03/27/fun-with-sqlitefts/#comments</comments>
		<pubDate>Wed, 27 Mar 2013 17:06:17 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=203</guid>
		<description><![CDATA[A while ago I played with sqlite. Its pretty awesome. When using the full text search (fts) extension it also provides super fast full text searching. One of the things I was missing (compared to other engines) is the similar text suggestion (&#8220;Did you mean?&#8221;) support. Fortunately this is relatively easy to add via the [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=203&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>A while ago I played with sqlite. Its pretty awesome. When using the full text search (fts) extension it also provides super fast full text searching. One of the things I was missing (compared to other engines) is the similar text suggestion (&#8220;Did you mean?&#8221;) support. Fortunately this is relatively easy to add via the fts4aux virtual table that sqlite supports.</p>
<p>I pushed a full example of to <a href="https://github.com/mvo5/sqlite-fts-did-you-mean" rel="nofollow">https://github.com/mvo5/sqlite-fts-did-you-mean</a>. The way it works is that you build a set of similar words and use that to query for the &#8220;term&#8221; value from the fts4aux table.</p>
<p>Here is the output from the example:</p>
<pre>
$ ./fts_did_you_mean.py aptx
Did you mean:
 apex (rank: 2)
 apt (rank: 1)
time 0.024138927459716797
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/203/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=203&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/03/27/fun-with-sqlitefts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e67d709de69b0fe334ff422389bc47fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mvo</media:title>
		</media:content>
	</item>
		<item>
		<title>Using gdebi to install build-dependencies</title>
		<link>http://mvogt.wordpress.com/2013/03/22/using-gdebi-to-install-build-dependencies/</link>
		<comments>http://mvogt.wordpress.com/2013/03/22/using-gdebi-to-install-build-dependencies/#comments</comments>
		<pubDate>Fri, 22 Mar 2013 14:23:52 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=141</guid>
		<description><![CDATA[I wrote gdebi a long time ago to make it really easy to install .deb package with proper dependency resolution from the commandline and via a gtk (and kde) UI. But another neat (but not very well known) feature of the gdebi-core cli tool is to install the build-dependencies of a debian source package. If [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=141&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I wrote gdebi a long time ago to make it really easy to install .deb package with proper dependency resolution from the commandline and via a gtk (and kde) UI. But another neat (but not very well known) feature of the gdebi-core cli tool is to install the build-dependencies of a debian source package. If you run:</p>
<pre>
$ gdebi debian/control
</pre>
<p>in a unpacked debian source package it will check for missing build-dependencies and offer to install them. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=141&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/03/22/using-gdebi-to-install-build-dependencies/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e67d709de69b0fe334ff422389bc47fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mvo</media:title>
		</media:content>
	</item>
		<item>
		<title>New unattended-upgrades for debian/experimental</title>
		<link>http://mvogt.wordpress.com/2013/03/16/new-unattended-upgrades-for-debianexperimental/</link>
		<comments>http://mvogt.wordpress.com/2013/03/16/new-unattended-upgrades-for-debianexperimental/#comments</comments>
		<pubDate>Sat, 16 Mar 2013 09:20:39 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=195</guid>
		<description><![CDATA[There is a new 0.80~exp2 version of unattended-upgrades available. This would normally be fine for debian/sid but because of the freeze I decided to put it into experimental. Some nice features like adding a &#8220;&#8211;verbose&#8221; mode that shows the actual dpkg output when running and codename based matching plus some nice fixes from Brian Murray [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=195&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>There is a new 0.80~exp2 version of unattended-upgrades available. This would normally be fine for debian/sid but because of the freeze I decided to put it into experimental. Some nice features like adding a &#8220;&#8211;verbose&#8221; mode that shows the actual dpkg output when<br />
running and codename based matching plus some nice fixes from Brian Murray (thanks!).</p>
<p>The codename based matching is interessting as it allows writing a matcher like &#8220;n=wheezy&#8221; (or more verbose &#8220;codename=wheezy&#8221;) in the config file. You can use &#8220;apt-cache policy&#8221; (without further arguments) to see what origins are available.</p>
<p>Enjoy and let me know if you find any issues issues!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/195/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=195&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/03/16/new-unattended-upgrades-for-debianexperimental/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e67d709de69b0fe334ff422389bc47fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mvo</media:title>
		</media:content>
	</item>
		<item>
		<title>Arduino MusicShield</title>
		<link>http://mvogt.wordpress.com/2013/01/08/arduino-musicshield/</link>
		<comments>http://mvogt.wordpress.com/2013/01/08/arduino-musicshield/#comments</comments>
		<pubDate>Tue, 08 Jan 2013 18:10:05 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=167</guid>
		<description><![CDATA[I got a Music Shield from Seeedstudio a while ago. Its fun to play with but the example source did not quite work for me. So I ported it over to the the new SD library from arduino 1.0 and published a google plus post about it. Some people asked me about the source so [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=167&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I got a Music Shield from Seeedstudio a while ago. Its fun to play with but the example source did not quite work for me. So I ported it over to the the new SD library from arduino 1.0 and published a google plus post about it. Some people asked me about the source so I pushed the result to <a href="https://code.launchpad.net/~mvo/+junk/ardunio-musicshield-newsd.example">launchpad</a> and <a href="https://github.com/mvo5/ardunio-musicshield-newsd.example">github</a>. I also filed a upstream request to include it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=167&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/01/08/arduino-musicshield/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e67d709de69b0fe334ff422389bc47fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mvo</media:title>
		</media:content>
	</item>
		<item>
		<title>mvo at ubuntu.com mail not working currently (hopefully back soon)</title>
		<link>http://mvogt.wordpress.com/2013/01/05/mvo-at-ubuntu-com-mail-not-working-currently-hopefully-back-soon/</link>
		<comments>http://mvogt.wordpress.com/2013/01/05/mvo-at-ubuntu-com-mail-not-working-currently-hopefully-back-soon/#comments</comments>
		<pubDate>Sat, 05 Jan 2013 08:30:28 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=151</guid>
		<description><![CDATA[If you tried to reach me via my ubuntu.com mail in the last couple of days you got a 550 error. There seems to be some misconfiguration on the ubuntu.com mailserver, I hope it gets fixed soon. You can use my mvo at debian.org in the meantime.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=151&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>If you tried to reach me via my ubuntu.com mail in the last couple of days you got a 550 error. There seems to be some misconfiguration on the ubuntu.com mailserver, I hope it gets fixed soon. You can use my mvo at debian.org in the meantime.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=151&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2013/01/05/mvo-at-ubuntu-com-mail-not-working-currently-hopefully-back-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e67d709de69b0fe334ff422389bc47fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mvo</media:title>
		</media:content>
	</item>
		<item>
		<title>sqlite3-debversions</title>
		<link>http://mvogt.wordpress.com/2011/08/16/sqlite3-debversions/</link>
		<comments>http://mvogt.wordpress.com/2011/08/16/sqlite3-debversions/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 19:31:45 +0000</pubDate>
		<dc:creator>mvogt</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mvogt.wordpress.com/?p=129</guid>
		<description><![CDATA[I created a small extension for sqlite3 today to allow order by debian version easily. This allows writing: .load "./debversions.so"; SELECT * FROM packages ORDER BY version COLLAT debversion_compare; And it will do the right ordering. Its available on launchpad.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=129&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I created a small extension for sqlite3 today to allow order by debian version easily. This allows writing:<br />
<code><br />
.load "./debversions.so";<br />
SELECT * FROM packages ORDER BY version COLLAT debversion_compare;<br />
</code><br />
And it will do the right ordering. Its available on <a href="https://launchpad.net/sqlite3-debversions">launchpad</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mvogt.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mvogt.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mvogt.wordpress.com&#038;blog=387941&#038;post=129&#038;subd=mvogt&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mvogt.wordpress.com/2011/08/16/sqlite3-debversions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/e67d709de69b0fe334ff422389bc47fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mvo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
