<?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>The adventures of Foo</title>
	<atom:link href="http://jensge.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://jensge.org</link>
	<description>My aggregated random tech blabber</description>
	<lastBuildDate>Thu, 18 Feb 2010 10:25:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Personal vim tip of the day</title>
		<link>http://jensge.org/2010/02/personal-vim-tip-of-the-day/</link>
		<comments>http://jensge.org/2010/02/personal-vim-tip-of-the-day/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 10:46:20 +0000</pubDate>
		<dc:creator>Jens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://jensge.org/2010/02/personal-vim-tip-of-the-day/</guid>
		<description><![CDATA[
au BufRead,BufNewFile *.vala \
let g:netrw_sort_sequence = '[\/]$,&#60;core \%(\.\d\+\)\=,\.[a-np-z]$,\.vala,\.h$,\.c$,\.cpp$,*,\.o$,\.obj$,\.info$,\.swp$,\.bak$,\~$'

<p>
]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="vim" style="font-family:monospace;">au BufRead,BufNewFile <span style="color: #000000;">*.</span>vala \
<span style="color: #804040;">let</span> g<span style="color: #000000;">:</span>netrw_sort_sequence = <span style="color: #C5A22D;">'[<span style="">\/</span>]$,&lt;core <span style="">\%</span>(<span style="">\.</span><span style="">\d</span><span style="">\+</span><span style="">\)</span><span style="">\=</span>,<span style="">\.</span>[a-np-z]$,<span style="">\.</span>vala,<span style="">\.</span>h$,<span style="">\.</span>c$,<span style="">\.</span>cpp$,*,<span style="">\.</span>o$,<span style="">\.</span>obj$,<span style="">\.</span>info$,<span style="">\.</span>swp$,<span style="">\.</span>bak$,<span style="">\~</span>$'</span></pre></div></div>

<p></core></pre>
]]></content:encoded>
			<wfw:commentRss>http://jensge.org/2010/02/personal-vim-tip-of-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buchempfehlung</title>
		<link>http://jensge.org/2010/01/buchempfehlung/</link>
		<comments>http://jensge.org/2010/01/buchempfehlung/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 12:20:47 +0000</pubDate>
		<dc:creator>Jens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jensge.org/2010/01/buchempfehlung/</guid>
		<description><![CDATA[<p>Walter Moers: Die Stadt der Träumenden Bücher.</p>
]]></description>
			<content:encoded><![CDATA[<p>Walter Moers: Die Stadt der Träumenden Bücher.</p>
]]></content:encoded>
			<wfw:commentRss>http://jensge.org/2010/01/buchempfehlung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fake rpm database in ubuntu</title>
		<link>http://jensge.org/2010/01/fake-rpm-database-in-ubuntu/</link>
		<comments>http://jensge.org/2010/01/fake-rpm-database-in-ubuntu/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 11:17:12 +0000</pubDate>
		<dc:creator>Jens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Arbeit]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NoteToMyself]]></category>
		<category><![CDATA[Programmieren]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://jensge.org/?p=374</guid>
		<description><![CDATA[<p>At work I&#8217;m currently developing software which is supposed to run on openSUSE. I need to query the package database at some point which of course does not exist on my ubuntu machine. Here&#8217;s a quick setup how to create a fake local RPM database:</p>

echo &#34;%_dbpath /home/user/rpmdb&#34; &#62;&#62; ~/.rpmmacros
mkdir /home/user/rpmdb
rpm -i --nodeps --justdb --force-debian *.rpm

<p>And [...]]]></description>
			<content:encoded><![CDATA[<p>At work I&#8217;m currently developing software which is supposed to run on openSUSE. I need to query the package database at some point which of course does not exist on my ubuntu machine. Here&#8217;s a quick setup how to create a fake local RPM database:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;%_dbpath /home/user/rpmdb&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> ~<span style="color: #000000; font-weight: bold;">/</span>.rpmmacros
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>rpmdb
rpm <span style="color: #660033;">-i</span> <span style="color: #660033;">--nodeps</span> <span style="color: #660033;">--justdb</span> <span style="color: #660033;">--force-debian</span> <span style="color: #000000; font-weight: bold;">*</span>.rpm</pre></div></div>

<p>And that&#8217;s it.</p>
]]></content:encoded>
			<wfw:commentRss>http://jensge.org/2010/01/fake-rpm-database-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Gnu-)Tar option of the day</title>
		<link>http://jensge.org/2010/01/gnu-tar-option-of-the-day/</link>
		<comments>http://jensge.org/2010/01/gnu-tar-option-of-the-day/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 10:54:09 +0000</pubDate>
		<dc:creator>Jens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Arbeit]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NoteToMyself]]></category>
		<category><![CDATA[OSS]]></category>
		<category><![CDATA[Programmieren]]></category>

		<guid isPermaLink="false">http://jensge.org/?p=372</guid>
		<description><![CDATA[<p>--exclude-vcs</p>
]]></description>
			<content:encoded><![CDATA[<p><code>--exclude-vcs</code></p>
]]></content:encoded>
			<wfw:commentRss>http://jensge.org/2010/01/gnu-tar-option-of-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WTF? Eigener Vizekanzler?</title>
		<link>http://jensge.org/2010/01/wtf-eigener-vizekanzler/</link>
		<comments>http://jensge.org/2010/01/wtf-eigener-vizekanzler/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 15:25:12 +0000</pubDate>
		<dc:creator>Jens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Deutschland]]></category>
		<category><![CDATA[Politik]]></category>

		<guid isPermaLink="false">http://jensge.org/?p=370</guid>
		<description><![CDATA[<p>Kann mir jemand erklären, mit welchem Recht die CSU jetzt einen eigenen Vizekanzler fordert? Herr Uhl sagt, &#8220;die Koalition bestünde ja auch aus drei Parteien&#8221;. Wenn wir uns an 2005 zurückerinnern, als die SPD verzweifelt versuchte, sich den Wahlsieg hinzudisktutieren, da konnte man CSU und CDU natürlich nicht trennen. Wir sind eins. Ich kenne ein [...]]]></description>
			<content:encoded><![CDATA[<p>Kann mir jemand erklären, mit welchem Recht die CSU jetzt einen eigenen Vizekanzler fordert? Herr Uhl sagt, &#8220;die Koalition bestünde ja auch aus drei Parteien&#8221;. Wenn wir uns an 2005 zurückerinnern, als die SPD verzweifelt versuchte, sich den Wahlsieg hinzudisktutieren, da konnte man CSU und CDU natürlich nicht trennen. Wir sind eins. Ich kenne ein super Lied, dass diese Situation schön zusammenfasst:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube-nocookie.com/v/ayHzg8oMvV0&#038;hl=de_DE&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/ayHzg8oMvV0&#038;hl=de_DE&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://jensge.org/2010/01/wtf-eigener-vizekanzler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XBox 360 support of rygel</title>
		<link>http://jensge.org/2010/01/xbox-360-support-of-rygel/</link>
		<comments>http://jensge.org/2010/01/xbox-360-support-of-rygel/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 15:18:59 +0000</pubDate>
		<dc:creator>Jens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[rygel]]></category>
		<category><![CDATA[UPnP]]></category>

		<guid isPermaLink="false">http://jensge.org/?p=367</guid>
		<description><![CDATA[<p>Short update on the XBox360 support of rygel:
What works</p>

Streaming of transcoded audio and video to the XBox
Browsing through your music collection by album or artist works at least for the media-export plugin. General audio playback should work for every plugin (Using Music library -&#62; Songs)

<p>What doesn&#8217;t work:</p>

Seeking in transcoded media. This includes stopping and resuming. [...]]]></description>
			<content:encoded><![CDATA[<p>Short update on the XBox360 support of rygel:<br />
<strong>What works</strong></p>
<ul>
<li>Streaming of transcoded audio and video to the XBox</li>
<li>Browsing through your music collection by album or artist works at least for the media-export plugin. General audio playback should work for every plugin (Using Music library -&gt; Songs)</li>
</ul>
<p><strong>What doesn&#8217;t work:</strong></p>
<ul>
<li>Seeking in transcoded media. This includes stopping and resuming. Pause-resume is fine though</li>
<li>Photo browsing (this is due to a bug in rygel&#8217;s HTTP code)</li>
</ul>
<p><strong>What&#8217;s quirky:</strong></p>
<ul>
<li>The modifications necessary for the XBox to be able to actually see rygel should be added dynamically by evaluating the user-agent of the request. Currently they are hardcoded</li>
<li>Mime-types have to be modified for the XBox, like <code>video/avi</code> for xvid or DivX 5 videos</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jensge.org/2010/01/xbox-360-support-of-rygel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>any to WMV</title>
		<link>http://jensge.org/2009/12/any-to-wmv/</link>
		<comments>http://jensge.org/2009/12/any-to-wmv/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 11:05:53 +0000</pubDate>
		<dc:creator>Jens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NoteToMyself]]></category>
		<category><![CDATA[UPnP]]></category>

		<guid isPermaLink="false">http://jensge.org/?p=360</guid>
		<description><![CDATA[<p>While trying to vamp up XBox 360 support for rygel, I also need a transcoder suitable for the XBox. While H.264 would work it is CPU consuming and hard to get right for the XBox, because it is quite picky. So I decided to go for WMV1/WMA2. Prototype gst-launch commandline:</p>

gst-launch filesrc location=input_file ! decodebin2 name=decoder [...]]]></description>
			<content:encoded><![CDATA[<p>While trying to vamp up XBox 360 support for rygel, I also need a transcoder suitable for the XBox. While H.264 would work it is CPU consuming and hard to get right for the XBox, because it is quite picky. So I decided to go for WMV1/WMA2. Prototype gst-launch commandline:</p>

<div class="wp_syntax"><div class="code"><pre class="sh" style="font-family:monospace;">gst-launch filesrc location=input_file ! decodebin2 name=decoder \
               asfmux name=mux ! filesink location=foo.wmv \
               { decoder. ! queue ! ffenc_wmv1 bitrate=1200 ! mux. } \
               { decoder. ! queue ! audioconvert ! audioresample ! ffenc_wmav2 bitrate=64000 ! mux. }</pre></div></div>

<p>I know that the curly braces are not needed anymore but I still think they improve readability a lot.<br />
<strong>Update:</strong>The resulting file works great for offline playback on the XBox, but live streaming does not work unfortunatly. I had to rely on <code>ffmux_asf</code> to make live transcoding working.</p>
]]></content:encoded>
			<wfw:commentRss>http://jensge.org/2009/12/any-to-wmv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pmp 0.1 released</title>
		<link>http://jensge.org/2009/12/pmp-0-1-released/</link>
		<comments>http://jensge.org/2009/12/pmp-0-1-released/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 13:25:49 +0000</pubDate>
		<dc:creator>Jens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programmieren]]></category>

		<guid isPermaLink="false">http://jensge.org/?p=352</guid>
		<description><![CDATA[<p>I just uploaded pmp 0.1 &#8211; Poor man&#8217;s prism desktop web application creator to github: http://github.com/phako/pmp</p>
<p>A release tarball can be found here: pmp-0.1.tar.gz</p>
<p>What is pmp?</p>
<p>pmp shares some similarities to Mozilla&#8217;s Prism. It creates a &#8220;standalone&#8221; app from a web application. Pmp uses Webkit as its rendering backend.</p>
<p>How do I use it?</p>
<p>To create an edge (that [...]]]></description>
			<content:encoded><![CDATA[<p>I just uploaded pmp 0.1 &#8211; Poor man&#8217;s prism desktop web application creator to github: <a href="http://github.com/phako/pmp">http://github.com/phako/pmp</a></p>
<p>A release tarball can be found here: <a href="http://jensge.org/wp-content/uploads/2009/12/pmp-0.1.tar.gz">pmp-0.1.tar.gz</a></p>
<p><strong>What is pmp?</strong></p>
<p>pmp shares some similarities to Mozilla&#8217;s Prism. It creates a &#8220;standalone&#8221; app from a web application. Pmp uses Webkit as its rendering backend.</p>
<p><strong>How do I use it?</strong></p>
<p>To create an edge (that is pmp&#8217;s terminus for a captured app), run<br />
<code>pmp-create --url=&lt;url to website&gt; --name=&lt;descriptivename&gt;</code><br />
You can also create a desktop icon by passing it the <code>--desktop</code> parameter. If you want to use the site&#8217;s favicon, use <code>--icon=:favicon</code></p>
<p>To run the edge, call <code>pmp-run --name=&lt;DescriptiveName&gt;</code></p>
<p><strong>Known limitations:</strong><br />
It does not work properly with Google&#8217;s apps. Google does some weird URL redirects. I&#8217;m working on that. Apps known to work are Wordpress and TT RSS.</p>
]]></content:encoded>
			<wfw:commentRss>http://jensge.org/2009/12/pmp-0-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making putty look nice on Windows</title>
		<link>http://jensge.org/2009/12/making-putty-look-nice-on-windows/</link>
		<comments>http://jensge.org/2009/12/making-putty-look-nice-on-windows/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 17:24:52 +0000</pubDate>
		<dc:creator>Jens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jensge.org/?p=348</guid>
		<description><![CDATA[<p>I don&#8217;t like the default look of putty on windows, so I usually do two things:</p>

Download the DejaVu fonts
Get this PowerShell skript to tangoify the putty palette
Note: On Windows 7 you might need to enable yourself to be able to execute powershell skripts.

]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t like the default look of <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">putty</a> on windows, so I usually do two things:</p>
<ul>
<li><a href="http://dejavu-fonts.org">Download the DejaVu fonts</a></li>
<li><a href="http://winterdom.com/2009/05/configuring-putty-with-tango">Get this PowerShell skript</a> to tangoify the putty palette<br />
Note: On Windows 7 you might need to enable yourself to be able to execute powershell skripts.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jensge.org/2009/12/making-putty-look-nice-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rygel 0.4.6 released</title>
		<link>http://jensge.org/2009/11/rygel-0-4-6-released/</link>
		<comments>http://jensge.org/2009/11/rygel-0-4-6-released/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 10:43:44 +0000</pubDate>
		<dc:creator>Jens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[UPnP]]></category>

		<guid isPermaLink="false">http://jensge.org/?p=341</guid>
		<description><![CDATA[<p>Rygel 0.4.6 has been released. This is a big step forward to the XBox 360 support as it finally implements search! See the original announcement at Zeenix&#8217; Blog</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://live.gnome.org/Rygel">Rygel</a> 0.4.6 has been released. This is a big step forward to the XBox 360 support as it finally implements search! See the original announcement at <a href="http://zee-nix.blogspot.com/2009/11/gupnp-av-gupnp-vala-and-rygel-releases.html">Zeenix&#8217; Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jensge.org/2009/11/rygel-0-4-6-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->