<?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/"
	>

<channel>
	<title>Hanno's Coding Log</title>
	<atom:link href="http://blog.hanno-stock.de/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.hanno-stock.de</link>
	<description>software development, geek stuff</description>
	<pubDate>Fri, 05 Jun 2009 15:37:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New Ubuntu Packages</title>
		<link>http://blog.hanno-stock.de/archives/54</link>
		<comments>http://blog.hanno-stock.de/archives/54#comments</comments>
		<pubDate>Sat, 09 May 2009 17:04:48 +0000</pubDate>
		<dc:creator>Hanno</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[english]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[gebabbel]]></category>

		<category><![CDATA[gps]]></category>

		<category><![CDATA[gpsbabel]]></category>

		<category><![CDATA[TomboyBlogposter]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.hanno-stock.de/?p=54</guid>
		<description><![CDATA[I am proud to announce (o.k., maybe a little late) that my first two packages made it into the Ubuntu repositories and are available in Ubuntu 9.04:

gebabbel helps you with converting different GPS data formats and downloading GPS data from your GPS handheld.

tomboy-blogposter is an addon for the note taking program Tomboy which allows you [...]]]></description>
			<content:encoded><![CDATA[<p>I am proud to announce (o.k., maybe a little late) that my first two packages made it into the Ubuntu repositories and are available in <a href="http://www.ubuntu.com/getubuntu/download">Ubuntu 9.04</a>:</p>
<ul>
<li><a href="http://gebabbel.sourceforge.net/">gebabbel</a> helps you with converting different GPS data formats and downloading GPS data from your GPS handheld.
</li>
<li><a href="http://flukkost.nu/blog/tomboyblogposter/">tomboy-blogposter</a> is an addon for the note taking program <a href="http://projects.gnome.org/tomboy/">Tomboy</a> which allows you to send notes to your blog.</li>
</ul>

	Tags: <a href="http://blog.hanno-stock.de/archives/tag/gebabbel" title="gebabbel" rel="tag">gebabbel</a>, <a href="http://blog.hanno-stock.de/archives/tag/gps" title="gps" rel="tag">gps</a>, <a href="http://blog.hanno-stock.de/archives/tag/gpsbabel" title="gpsbabel" rel="tag">gpsbabel</a>, <a href="http://blog.hanno-stock.de/archives/tag/tomboyblogposter" title="TomboyBlogposter" rel="tag">TomboyBlogposter</a>, <a href="http://blog.hanno-stock.de/archives/tag/ubuntu" title="ubuntu" rel="tag">ubuntu</a><br />
]]></content:encoded>
			<wfw:commentRss>http://blog.hanno-stock.de/archives/54/feed</wfw:commentRss>
		</item>
		<item>
		<title>Keeping packages on Ubuntu fresh install</title>
		<link>http://blog.hanno-stock.de/archives/50</link>
		<comments>http://blog.hanno-stock.de/archives/50#comments</comments>
		<pubDate>Sat, 29 Nov 2008 17:50:33 +0000</pubDate>
		<dc:creator>Hanno</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[english]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[apt]]></category>

		<category><![CDATA[aptitude]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.hanno-stock.de/?p=50</guid>
		<description><![CDATA[I am about to test migrating my Ubuntu installation to 64bit. I&#8217;ll test compatibility with my used applications first in a VM.
For that I installed Ubuntu 8.10 64bit Desktop edition into the VM. Since I don&#8217;t want to manually reinstall all packages by hand, I came up with the following aptitude / dpkg commands after [...]]]></description>
			<content:encoded><![CDATA[<p>I am about to test migrating my Ubuntu installation to 64bit. I&#8217;ll test compatibility with my used applications first in a VM.</p>
<p>For that I installed Ubuntu 8.10 64bit Desktop edition into the VM. Since I don&#8217;t want to manually reinstall all packages by hand, I came up with the following aptitude / dpkg commands after reading a few other instructions:</p>
<p>On the source system, execute:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> search <span style="color: #ff0000;">'~i !~M'</span> <span style="color: #660033;">-F</span> <span style="color: #ff0000;">'%p install'</span> <span style="color: #000000; font-weight: bold;">&gt;</span> packages-list</pre></div></div>

<p>This will generate a list of all <em>manually</em> installed packages in <code>packages-list</code>. (All packages not installed as a dependency of another package.)</p>
<p>On the destination system execute:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">--set-selections</span> <span style="color: #000000; font-weight: bold;">&lt;</span> packages-list
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> dselect-upgrade</pre></div></div>

<p>This will install all the packages from the list. (and apt will take care of resolving dependencies)</p>
<p>That&#8217;s it. If you have already used a different method and want to fix things, read on:<br />
<span id="more-50"></span><br />
If you just used a method involving <code>dpkg --get-selections</code> on the source system, you lost all information about automatically installed packages.</p>
<p>You can generate a list of all automatically installed packages on your source system:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> search ~M <span style="color: #660033;">-F</span> <span style="color: #000000; font-weight: bold;">%</span>p <span style="color: #000000; font-weight: bold;">&gt;</span> autoremove-packages-list</pre></div></div>

<p>and get the information into your destination system with:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> markauto <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">cat</span> autoremove-packages-list<span style="color: #000000; font-weight: bold;">`</span></pre></div></div>

<p>Note that <code>autoremove-packages-list</code> is a filename.</p>

	Tags: <a href="http://blog.hanno-stock.de/archives/tag/apt" title="apt" rel="tag">apt</a>, <a href="http://blog.hanno-stock.de/archives/tag/aptitude" title="aptitude" rel="tag">aptitude</a>, <a href="http://blog.hanno-stock.de/archives/tag/linux" title="linux" rel="tag">linux</a>, <a href="http://blog.hanno-stock.de/archives/tag/ubuntu" title="ubuntu" rel="tag">ubuntu</a><br />
]]></content:encoded>
			<wfw:commentRss>http://blog.hanno-stock.de/archives/50/feed</wfw:commentRss>
		</item>
		<item>
		<title>Weird keyboard behavior with VMWare</title>
		<link>http://blog.hanno-stock.de/archives/48</link>
		<comments>http://blog.hanno-stock.de/archives/48#comments</comments>
		<pubDate>Mon, 17 Nov 2008 20:08:22 +0000</pubDate>
		<dc:creator>Hanno</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[english]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[virtualization]]></category>

		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://blog.hanno-stock.de/?p=48</guid>
		<description><![CDATA[I just noticed that my cursor keys did not behave correctly with a Windows XP VM on an Intrepid host. The down arrow acted as the Windows key!
After some googling I found this blog entry.
You have to insert the following lines into your ~/.vmware/config file:

xkeymap.keycode.108 = 0x138 # Alt_R
xkeymap.keycode.106 = 0x135 # KP_Divide
xkeymap.keycode.104 = 0x11c [...]]]></description>
			<content:encoded><![CDATA[<p>I just noticed that my cursor keys did not behave correctly with a Windows XP VM on an Intrepid host. The down arrow acted as the Windows key!</p>
<p>After some googling I found <a href="http://www.denny-schierz.de/wordpress/2008/11/03/vmware-workstation-65-und-ubuntu-810-keyboard-spirenzien/">this</a> blog entry.</p>
<p>You have to insert the following lines into your <code>~/.vmware/config</code> file:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">xkeymap.keycode.108 = 0x138 <span style="color: #666666; font-style: italic;"># Alt_R</span>
xkeymap.keycode.106 = 0x135 <span style="color: #666666; font-style: italic;"># KP_Divide</span>
xkeymap.keycode.104 = 0x11c <span style="color: #666666; font-style: italic;"># KP_Enter</span>
xkeymap.keycode.111 = 0x148 <span style="color: #666666; font-style: italic;"># Up</span>
xkeymap.keycode.116 = 0x150 <span style="color: #666666; font-style: italic;"># Down</span>
xkeymap.keycode.113 = 0x14b <span style="color: #666666; font-style: italic;"># Left</span>
xkeymap.keycode.114 = 0x14d <span style="color: #666666; font-style: italic;"># Right</span>
xkeymap.keycode.105 = 0x11d <span style="color: #666666; font-style: italic;"># Control_R</span>
xkeymap.keycode.118 = 0x152 <span style="color: #666666; font-style: italic;"># Insert</span>
xkeymap.keycode.119 = 0x153 <span style="color: #666666; font-style: italic;"># Delete</span>
xkeymap.keycode.110 = 0x147 <span style="color: #666666; font-style: italic;"># Home</span>
xkeymap.keycode.115 = 0x14f <span style="color: #666666; font-style: italic;"># End</span>
xkeymap.keycode.112 = 0x149 <span style="color: #666666; font-style: italic;"># Prior</span>
xkeymap.keycode.117 = 0x151 <span style="color: #666666; font-style: italic;"># Next</span>
xkeymap.keycode.78 = 0x46 <span style="color: #666666; font-style: italic;"># Scroll_Lock</span>
xkeymap.keycode.127 = 0x100 <span style="color: #666666; font-style: italic;"># Pause</span>
xkeymap.keycode.133 = 0x15b <span style="color: #666666; font-style: italic;"># Meta_L</span>
xkeymap.keycode.134 = 0x15c <span style="color: #666666; font-style: italic;"># Meta_R</span>
xkeymap.keycode.135 = 0x15d <span style="color: #666666; font-style: italic;"># Menu</span></pre></div></div>


	Tags: <a href="http://blog.hanno-stock.de/archives/tag/linux" title="linux" rel="tag">linux</a>, <a href="http://blog.hanno-stock.de/archives/tag/ubuntu" title="ubuntu" rel="tag">ubuntu</a>, <a href="http://blog.hanno-stock.de/archives/tag/virtualization" title="virtualization" rel="tag">virtualization</a>, <a href="http://blog.hanno-stock.de/archives/tag/vmware" title="vmware" rel="tag">vmware</a><br />
]]></content:encoded>
			<wfw:commentRss>http://blog.hanno-stock.de/archives/48/feed</wfw:commentRss>
		</item>
		<item>
		<title>Vinagre and Transmission for Gutsy</title>
		<link>http://blog.hanno-stock.de/archives/43</link>
		<comments>http://blog.hanno-stock.de/archives/43#comments</comments>
		<pubDate>Sat, 22 Mar 2008 00:36:02 +0000</pubDate>
		<dc:creator>Hanno</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[Backports]]></category>

		<category><![CDATA[packaging]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[Vinagre]]></category>

		<category><![CDATA[vnc client]]></category>

		<guid isPermaLink="false">http://blog.hanno-stock.de/archives/43</guid>
		<description><![CDATA[I have a few updates regarding my Personal Package Archive:
My Vinagre VNC backport for Gutsy will make it into the official gutsy-backports repository if I get two successful test reports on bug #191077. So please download and test, if you are interested.
(See also my previous post: New Ubuntu Packages)
Also, I have the beta version of [...]]]></description>
			<content:encoded><![CDATA[<p>I have a few updates regarding my Personal Package Archive:</p>
<p>My <em>Vinagre VNC backport</em> for Gutsy will make it into the official gutsy-backports repository if I get two successful test reports on <a href="https://bugs.launchpad.net/gutsy-backports/+bug/191077">bug #191077</a>. So please download and test, if you are interested.<br />
(See also my previous post: <a href="http://blog.hanno-stock.de/archives/42">New Ubuntu Packages</a>)</p>
<p>Also, I have the beta version of the upcoming 1.10 release of the <em>Transmission Bittorrent Client</em> in <a href="https://launchpad.net/~hanno-stock/+archive" >my PPA</a>. I use the same packaging as the official Ubuntu versions. (As opposed to the ones you&#8217;ll get at getdeb.net)</p>
<p>If you don&#8217;t know <a href="http://www.transmissionbt.com/">Transmission</a> yet: It&#8217;s a lightweight Bittorrent client, capable of downloading multiple Torrents simultaneously, throttling speeds, peer exchange and encrypted transfer (and more&#8230;). It will be the default Bittorrent client for Hardy.</p>
<p>In my opinion, it is a good replacement for Azureus, if you don&#8217;t need all the advanced stuff and don&#8217;t want a big java app hogging all your memory&#8230;</p>
<p>Get all the debs at <a href="https://launchpad.net/~hanno-stock/+archive" >my PPA</a>.</p>

	Tags: <a href="http://blog.hanno-stock.de/archives/tag/backports" title="Backports" rel="tag">Backports</a>, <a href="http://blog.hanno-stock.de/archives/tag/packaging" title="packaging" rel="tag">packaging</a>, <a href="http://blog.hanno-stock.de/archives/tag/ubuntu" title="ubuntu" rel="tag">ubuntu</a>, <a href="http://blog.hanno-stock.de/archives/tag/vinagre" title="Vinagre" rel="tag">Vinagre</a>, <a href="http://blog.hanno-stock.de/archives/tag/vnc-client" title="vnc client" rel="tag">vnc client</a><br />
]]></content:encoded>
			<wfw:commentRss>http://blog.hanno-stock.de/archives/43/feed</wfw:commentRss>
		</item>
		<item>
		<title>New Ubuntu packages</title>
		<link>http://blog.hanno-stock.de/archives/42</link>
		<comments>http://blog.hanno-stock.de/archives/42#comments</comments>
		<pubDate>Sat, 15 Mar 2008 16:44:06 +0000</pubDate>
		<dc:creator>Hanno</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[Backports]]></category>

		<category><![CDATA[TomboyBlogposter]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[Vinagre]]></category>

		<category><![CDATA[vnc client]]></category>

		<guid isPermaLink="false">http://blog.hanno-stock.de/archives/42</guid>
		<description><![CDATA[Robin has updated his TomboyBlogposter addin and I have updated my Ubuntu packages correspondingly.
Screenshot from Vinagre Homepage
Also fresh: Backports of the Vinagre VNC client for Ubuntu 7.10. It&#8217;s not sure whether these will make it into gutsy-backports, since some bigger source change was necessary.
Vinagre obsoletes the old and ugly xvncviewer and has a user interface [...]]]></description>
			<content:encoded><![CDATA[<p>Robin has updated his <a href="http://flukkost.nu/blog/tomboyblogposter/">TomboyBlogposter</a> addin and I have updated my Ubuntu packages correspondingly.</p>
<div style="text-align:center;border:1px solid silver;padding:5px;"><img src="http://www.gnome.org/projects/vinagre/vinagre1p.png" alt="Vinagre Screenshot" /><br /><span style="font-size:80%;">Screenshot from <a href="http://www.gnome.org/projects/vinagre/">Vinagre Homepage</a></div>
<p>Also fresh: Backports of the <a href="http://www.gnome.org/projects/vinagre/">Vinagre VNC client</a> for Ubuntu 7.10. It&#8217;s not sure whether these will make it into gutsy-backports, since some bigger source change was necessary.</p>
<p>Vinagre obsoletes the old and ugly xvncviewer and has a user interface similar to VMWares Server Console or Workstation (sidebar, tabs, etc.).</p>
<p>Get the packages by adding the line</p>

<div class="wp_syntax"><div class="code"><pre class="plain" style="font-family:monospace;">deb http://ppa.launchpad.net/hanno-stock/ubuntu gutsy main</pre></div></div>

<p>to your APT sources.list (or use Synaptic 3rd party software tab) or download at <a href="https://launchpad.net/%7Ehanno-stock/+archive">my PPA</a>.</p>
<p>Download the .debs for your architecture (i386, etc.) and install with:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> packagename.deb</pre></div></div>

<p>Note that if you install the .debs manually via dpkg you have to install gtk-vnc prior to vinagre. </p>

	Tags: <a href="http://blog.hanno-stock.de/archives/tag/backports" title="Backports" rel="tag">Backports</a>, <a href="http://blog.hanno-stock.de/archives/tag/tomboyblogposter" title="TomboyBlogposter" rel="tag">TomboyBlogposter</a>, <a href="http://blog.hanno-stock.de/archives/tag/ubuntu" title="ubuntu" rel="tag">ubuntu</a>, <a href="http://blog.hanno-stock.de/archives/tag/vinagre" title="Vinagre" rel="tag">Vinagre</a>, <a href="http://blog.hanno-stock.de/archives/tag/vnc-client" title="vnc client" rel="tag">vnc client</a><br />
]]></content:encoded>
			<wfw:commentRss>http://blog.hanno-stock.de/archives/42/feed</wfw:commentRss>
		</item>
		<item>
		<title>Firefox profile sharing</title>
		<link>http://blog.hanno-stock.de/archives/41</link>
		<comments>http://blog.hanno-stock.de/archives/41#comments</comments>
		<pubDate>Sun, 10 Feb 2008 14:58:00 +0000</pubDate>
		<dc:creator>Hanno</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[english]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[dual boot]]></category>

		<category><![CDATA[firefox]]></category>

		<category><![CDATA[profile]]></category>

		<guid isPermaLink="false">http://blog.hanno-stock.de/archives/41</guid>
		<description><![CDATA[If you dual-boot and want to share your bookmarks and passwords between the two installations:
symlink the files key3.db, signons2.txt and bookmarks.html from your windows profile in your Linux profile.
(Assuming you use a master password for your password store.)
In a terminal go to your Linux profile dir (~/.mozilla/firefox/x9999abc.default or similar) and do a &#34;ln -s /path/to/the/corresponding/windows/file&#34;.

	Tags: [...]]]></description>
			<content:encoded><![CDATA[<p>If you dual-boot and want to share your bookmarks and passwords between the two installations:</p>
<p>symlink the files <span style="font-family:monospace">key3.db</span>, <span style="font-family:monospace">signons2.txt</span> and <span style="font-family:monospace">bookmarks.html</span> from your windows profile in your Linux profile.<br />
(Assuming you use a master password for your password store.)</p>
<p>In a terminal go to your Linux profile dir (~/.mozilla/firefox/x9999abc.default or similar) and do a &quot;<span style="font-family:monospace">ln -s<a href=" /path/to/the/corresponding/windows/file"> /path/to/the/corresponding/windows/file</a></span>&quot;.</p>

	Tags: <a href="http://blog.hanno-stock.de/archives/tag/dual-boot" title="dual boot" rel="tag">dual boot</a>, <a href="http://blog.hanno-stock.de/archives/tag/firefox" title="firefox" rel="tag">firefox</a>, <a href="http://blog.hanno-stock.de/archives/tag/linux" title="linux" rel="tag">linux</a>, <a href="http://blog.hanno-stock.de/archives/tag/profile" title="profile" rel="tag">profile</a><br />
]]></content:encoded>
			<wfw:commentRss>http://blog.hanno-stock.de/archives/41/feed</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu .deb packaging</title>
		<link>http://blog.hanno-stock.de/archives/40</link>
		<comments>http://blog.hanno-stock.de/archives/40#comments</comments>
		<pubDate>Sat, 02 Feb 2008 20:05:51 +0000</pubDate>
		<dc:creator>Hanno</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[coding]]></category>

		<category><![CDATA[english]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[Alien]]></category>

		<category><![CDATA[CDBS]]></category>

		<category><![CDATA[packaging]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.hanno-stock.de/archives/40</guid>
		<description><![CDATA[Here are some of my bookmarks regarding .deb packaging.

Building Package from source:
http://www.quietearth.us/articles/2006/08/16/Building-deb-package-from-source
Building package from binary .tar.gz. (via Alien)
Do not use for .tar.gz from vendors who supply their own installer. (VMWare for example.)
http://www.martin-bock.de/pc/pc-0012.html
CDBS Documentation (Common Debian Build System) - especially nice for packaging python modules.
https://perso.duckcorp.org/duck/cdbs-doc/cdbs-doc.xhtml
Ubuntu Packaging Guide
https://wiki.ubuntu.com/PackagingGuide/
Nice introduction to the debian maintainer scripts with diagrams on [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some of my bookmarks regarding .deb packaging.</p>
<div xmlns="http://www.w3.org/1999/xhtml">
Building Package from source:<br />
<a href="http://www.quietearth.us/articles/2006/08/16/Building-deb-package-from-source">http://www.quietearth.us/articles/2006/08/16/Building-deb-package-from-source</a></p>
<p>Building package from binary .tar.gz. (via Alien)<br />
Do not use for .tar.gz from vendors who supply their own installer. (VMWare for example.)<br />
<a href="http://www.martin-bock.de/pc/pc-0012.html">http://www.martin-bock.de/pc/pc-0012.html</a></p>
<p>CDBS Documentation (Common Debian Build System) - especially nice for packaging python modules.<br />
<a href="https://perso.duckcorp.org/duck/cdbs-doc/cdbs-doc.xhtml">https://perso.duckcorp.org/duck/cdbs-doc/cdbs-doc.xhtml</a></p>
<p>Ubuntu Packaging Guide<br />
<a href="https://wiki.ubuntu.com/PackagingGuide/">https://wiki.ubuntu.com/PackagingGuide/</a></p>
<p>Nice introduction to the debian maintainer scripts with diagrams on how it all fits together:<br />
<a href="http://women.debian.org/wiki/English/MaintainerScripts">http://women.debian.org/wiki/English/MaintainerScripts</a></div>

	Tags: <a href="http://blog.hanno-stock.de/archives/tag/alien" title="Alien" rel="tag">Alien</a>, <a href="http://blog.hanno-stock.de/archives/tag/cdbs" title="CDBS" rel="tag">CDBS</a>, <a href="http://blog.hanno-stock.de/archives/tag/linux" title="linux" rel="tag">linux</a>, <a href="http://blog.hanno-stock.de/archives/tag/packaging" title="packaging" rel="tag">packaging</a>, <a href="http://blog.hanno-stock.de/archives/tag/ubuntu" title="ubuntu" rel="tag">ubuntu</a><br />
]]></content:encoded>
			<wfw:commentRss>http://blog.hanno-stock.de/archives/40/feed</wfw:commentRss>
		</item>
		<item>
		<title>happy Linux convert</title>
		<link>http://blog.hanno-stock.de/archives/38</link>
		<comments>http://blog.hanno-stock.de/archives/38#comments</comments>
		<pubDate>Fri, 25 Jan 2008 19:19:28 +0000</pubDate>
		<dc:creator>Hanno</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[coding]]></category>

		<category><![CDATA[english]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.hanno-stock.de/archives/38</guid>
		<description><![CDATA[I finally did it. I&#8217;ve been running Ubuntu 7.10 on my personal desktop for a bit more than a week now. I never felt the urge to boot into windows again  
Configuration tweaks because of special hardware were minimal. MP3 collection, Slimserver, Komodo, etc. &#8212; all is up and running angain.
I also got my [...]]]></description>
			<content:encoded><![CDATA[<p>I finally did it. I&#8217;ve been running Ubuntu 7.10 on my personal desktop for a bit more than a week now. I never felt the urge to boot into windows again <img src='http://blog.hanno-stock.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Configuration tweaks because of special hardware were minimal. MP3 collection, Slimserver, Komodo, etc. &#8212; all is up and running angain.</p>
<p>I also got my own <a href="https://launchpad.net/~hanno-stock/+archive">Ubuntu Package Archive</a> now and built my first Package. I packaged Robin Sonefor&#8217;s <a href="http://flukkost.nu/blog/tomboyblogposter/">Blogposter</a> Plugin for <a href="http://www.gnome.org/projects/tomboy/">Tomboy</a>, an excellent note taking program for Gnome.</p>
<p>More later&#8230;</p>

	Tags: <a href="http://blog.hanno-stock.de/archives/tag/coding" title="coding" rel="tag">coding</a>, <a href="http://blog.hanno-stock.de/archives/tag/linux" title="linux" rel="tag">linux</a>, <a href="http://blog.hanno-stock.de/archives/tag/ubuntu" title="ubuntu" rel="tag">ubuntu</a><br />
]]></content:encoded>
			<wfw:commentRss>http://blog.hanno-stock.de/archives/38/feed</wfw:commentRss>
		</item>
		<item>
		<title>news on cover art</title>
		<link>http://blog.hanno-stock.de/archives/37</link>
		<comments>http://blog.hanno-stock.de/archives/37#comments</comments>
		<pubDate>Sun, 09 Sep 2007 12:43:06 +0000</pubDate>
		<dc:creator>Hanno</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[coding]]></category>

		<category><![CDATA[english]]></category>

		<category><![CDATA[cover art]]></category>

		<category><![CDATA[mp3]]></category>

		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://blog.hanno-stock.de/archives/37</guid>
		<description><![CDATA[Chris Bowron just released a new version of foo_sendtodevice, including my contribution for copying cover art files.

	Tags: cover art, mp3, music
]]></description>
			<content:encoded><![CDATA[<p>Chris Bowron just released a <a href="http://www.bazquux.com/wiki/Foobar2000:SendToDevice:Changelog">new version</a> of <a href="http://www.bazquux.com/wiki/Foobar2000:SendToDevice">foo_sendtodevice</a>, including my contribution for copying cover art files.</p>

	Tags: <a href="http://blog.hanno-stock.de/archives/tag/cover-art" title="cover art" rel="tag">cover art</a>, <a href="http://blog.hanno-stock.de/archives/tag/mp3" title="mp3" rel="tag">mp3</a>, <a href="http://blog.hanno-stock.de/archives/tag/music" title="music" rel="tag">music</a><br />
]]></content:encoded>
			<wfw:commentRss>http://blog.hanno-stock.de/archives/37/feed</wfw:commentRss>
		</item>
		<item>
		<title>accessing the Windows Media Devices API</title>
		<link>http://blog.hanno-stock.de/archives/36</link>
		<comments>http://blog.hanno-stock.de/archives/36#comments</comments>
		<pubDate>Sun, 09 Sep 2007 12:39:29 +0000</pubDate>
		<dc:creator>Hanno</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[coding]]></category>

		<category><![CDATA[english]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[mp3]]></category>

		<category><![CDATA[mtp]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[windows mobile devices]]></category>

		<category><![CDATA[wmd]]></category>

		<category><![CDATA[wmdlib]]></category>

		<guid isPermaLink="false">http://blog.hanno-stock.de/archives/36</guid>
		<description><![CDATA[I am currently working on a Python library for accessing MTP-based MP3-players via the Windows Media Devices API.
Current preview and development versions are available from Pypi.
You can find further information on the project page.

	Tags: mp3, mtp, music, python, windows mobile devices, wmd, wmdlib
]]></description>
			<content:encoded><![CDATA[<p>I am currently working on a Python library for accessing MTP-based MP3-players via the Windows Media Devices API.</p>
<p>Current preview and development versions are <a href="http://pypi.python.org/pypi/wmdlib/">available from Pypi</a>.</p>
<p>You can find further information on the <a href="http://blog.hanno-stock.de/projects/">project page</a>.</p>

	Tags: <a href="http://blog.hanno-stock.de/archives/tag/mp3" title="mp3" rel="tag">mp3</a>, <a href="http://blog.hanno-stock.de/archives/tag/mtp" title="mtp" rel="tag">mtp</a>, <a href="http://blog.hanno-stock.de/archives/tag/music" title="music" rel="tag">music</a>, <a href="http://blog.hanno-stock.de/archives/tag/python" title="python" rel="tag">python</a>, <a href="http://blog.hanno-stock.de/archives/tag/windows-mobile-devices" title="windows mobile devices" rel="tag">windows mobile devices</a>, <a href="http://blog.hanno-stock.de/archives/tag/wmd" title="wmd" rel="tag">wmd</a>, <a href="http://blog.hanno-stock.de/archives/tag/wmdlib" title="wmdlib" rel="tag">wmdlib</a><br />
]]></content:encoded>
			<wfw:commentRss>http://blog.hanno-stock.de/archives/36/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
