<?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>Wie ich die Welt sehe</title>
	<atom:link href="http://aboettger.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://aboettger.wordpress.com</link>
	<description>Just another Blog</description>
	<lastBuildDate>Wed, 13 Apr 2011 18:12:01 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='aboettger.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Wie ich die Welt sehe</title>
		<link>http://aboettger.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://aboettger.wordpress.com/osd.xml" title="Wie ich die Welt sehe" />
	<atom:link rel='hub' href='http://aboettger.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Add to local repository</title>
		<link>http://aboettger.wordpress.com/2010/12/07/add-to-local-repository/</link>
		<comments>http://aboettger.wordpress.com/2010/12/07/add-to-local-repository/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 14:46:20 +0000</pubDate>
		<dc:creator>Andreas Böttger</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Maven]]></category>
		<category><![CDATA[Ubuntuusers.de]]></category>

		<guid isPermaLink="false">http://aboettger.wordpress.com/?p=319</guid>
		<description><![CDATA[Auf der Suche nach einer Möglichkeit, alle JARs eines Verzeichnisses in das lokale Maven Repository zu schieben, bin ich auf dieses Script gestoßen: A script to add 3rd party artifacts to your maven repository. Diese Version habe ich leicht abgeändert, quick and dirty: #!/bin/bash # Add 3rd party jars to maven in a batch # [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=319&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Auf der Suche nach einer Möglichkeit, alle JARs eines Verzeichnisses in das lokale Maven Repository zu schieben, bin ich auf dieses Script gestoßen:<br />
<a href="http://blogs.sun.com/warren/entry/a_script_to_add_3rd">A script to add 3rd party artifacts to your maven repository</a>.<br />
Diese Version habe ich leicht abgeändert, quick and dirty:</p>
<p><code><br />
#!/bin/bash<br />
# Add 3rd party jars to maven in a batch<br />
# Usage:  add2maven groupid directory<br />
#<br />
# Edit the mvn command as per your repo setup </p>
<p>if [ $# -lt 2 ]; then<br />
        echo Usage: $0 groupid directory<br />
        exit 1<br />
fi</p>
<p>GROUPID=$1<br />
shift</p>
<p>find $1 -name "*.jar" | while read f;<br />
do<br />
        if [ ! -d $f ]; then<br />
                FILENAME=`echo $f | sed -e 's/\.jar//' | sed -e 's/.*\///'`<br />
                ARTIFACTID=`echo $FILENAME | sed -re 's/[_|-]([0-9]\.).*//g'`<br />
                VERSION=`echo $FILENAME | sed -re 's/.*[a-z][-|_]//'`<br />
                if [ "$VERSION" == "$FILENAME" ]; then<br />
                        VERSION="unknown"<br />
                fi<br />
                mvn install:install-file -DgroupId=$GROUPID -DartifactId=$ARTIFACTID -Dversion=$VERSION -Dpackaging=jar -Dfile=$f<br />
        fi<br />
done</p>
<p></code></p>
<br />Filed under: <a href='http://aboettger.wordpress.com/category/linux/bash/'>Bash</a>, <a href='http://aboettger.wordpress.com/category/maven/'>Maven</a>, <a href='http://aboettger.wordpress.com/category/ubuntuusersde/'>Ubuntuusers.de</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboettger.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboettger.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboettger.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboettger.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboettger.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboettger.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboettger.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboettger.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboettger.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboettger.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboettger.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboettger.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboettger.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboettger.wordpress.com/319/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=319&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboettger.wordpress.com/2010/12/07/add-to-local-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc2b7329bf876553c852389cabeaddc1?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">aboettger</media:title>
		</media:content>
	</item>
		<item>
		<title>Artikel &#8222;Die Git-Revolution&#8220; im Javamagazin 1/2011</title>
		<link>http://aboettger.wordpress.com/2010/11/30/artikel-die-git-revolution-im-javamagazin-12011/</link>
		<comments>http://aboettger.wordpress.com/2010/11/30/artikel-die-git-revolution-im-javamagazin-12011/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 11:34:10 +0000</pubDate>
		<dc:creator>Andreas Böttger</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[SCM]]></category>
		<category><![CDATA[Ubuntuusers.de]]></category>

		<guid isPermaLink="false">http://aboettger.wordpress.com/?p=299</guid>
		<description><![CDATA[Für Revolutionen bin ich zu haben. Um so mehr interessierte mich der Artikel &#8222;Die Git-Revolution&#8220; in der Ausgabe 01/2011 des Javamagazin. Zum Artikel selbst gibt es nicht viel hinzuzufügen. Er führt schnell und verständlich in das Thema ein. Was mich allerdings stört, sind die kleinen Fehler. So fiel mir auf, dass mehrmals das Kommando $ [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=299&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Für Revolutionen bin ich zu haben. Um so mehr interessierte mich der Artikel &#8222;Die Git-Revolution&#8220; in der Ausgabe 01/2011 des <a href="http://www.javamagazin.de/">Javamagazin</a>.<br />
Zum Artikel selbst gibt es nicht viel hinzuzufügen. Er führt schnell und verständlich in das Thema ein. Was mich allerdings stört, sind die kleinen Fehler. So fiel mir auf, dass mehrmals das Kommando <code>$ git add .</code> ohne den abschließenden Punkt verwendet wird. Git reagiert an dieser Stelle vorbildlich und weist den Anwender mit einem Lösungsvorschlag darauf hin.<br />
Ein weitere Unstimmigkeit gibt es auf Seite 61 in der rechten Spalte ganz oben. Dort heißt es, dass das Kommando <code>$ git pull</code> verwendet werden soll. Ohne zusätzliche Konfiguration kann das so aber nicht funktionieren. Ohne einen Eintrag in der Konfigurationsdatei müsste der korrekte Aufruf z.B. so lauten: <code>$ git pull origin development</code></p>
<br />Filed under: <a href='http://aboettger.wordpress.com/category/scm/git/'>Git</a>, <a href='http://aboettger.wordpress.com/category/scm/'>SCM</a>, <a href='http://aboettger.wordpress.com/category/ubuntuusersde/'>Ubuntuusers.de</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboettger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboettger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboettger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboettger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboettger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboettger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboettger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboettger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboettger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboettger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboettger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboettger.wordpress.com/299/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboettger.wordpress.com/299/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboettger.wordpress.com/299/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=299&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboettger.wordpress.com/2010/11/30/artikel-die-git-revolution-im-javamagazin-12011/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc2b7329bf876553c852389cabeaddc1?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">aboettger</media:title>
		</media:content>
	</item>
		<item>
		<title>Flickr</title>
		<link>http://aboettger.wordpress.com/2010/02/11/flickr/</link>
		<comments>http://aboettger.wordpress.com/2010/02/11/flickr/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 17:11:47 +0000</pubDate>
		<dc:creator>Andreas Böttger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://aboettger.wordpress.com/2010/02/11/flickr/</guid>
		<description><![CDATA[This is a test post from , a fancy photo sharing thing. Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=298&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a test post from <a href="http://www.flickr.com/r/testpost"><img alt="flickr" src="http://www.flickr.com/images/flickr_logo_blog.gif" width="41" height="18" border="0" align="absmiddle" /></a>, a fancy photo sharing thing.</p>
<br />Filed under: <a href='http://aboettger.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboettger.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboettger.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboettger.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboettger.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboettger.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboettger.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboettger.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboettger.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboettger.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboettger.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboettger.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboettger.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboettger.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboettger.wordpress.com/298/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=298&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboettger.wordpress.com/2010/02/11/flickr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc2b7329bf876553c852389cabeaddc1?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">aboettger</media:title>
		</media:content>

		<media:content url="http://www.flickr.com/images/flickr_logo_blog.gif" medium="image">
			<media:title type="html">flickr</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8222;Wrath  of the Lich King&#8220; und Ubuntu 9.10</title>
		<link>http://aboettger.wordpress.com/2010/01/07/wrath-of-the-lich-king-und-ubuntu-9-10/</link>
		<comments>http://aboettger.wordpress.com/2010/01/07/wrath-of-the-lich-king-und-ubuntu-9-10/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 22:07:34 +0000</pubDate>
		<dc:creator>Andreas Böttger</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Spiele]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntuusers.de]]></category>
		<category><![CDATA[Wine]]></category>
		<category><![CDATA[World of Warcraft]]></category>

		<guid isPermaLink="false">http://aboettger.wordpress.com/?p=281</guid>
		<description><![CDATA[Ich hatte das zweifelhafte Vergnügen, dass nicht der gesamte Inhalt der DVD nach dem Einhängen im System angezeigt wurde und der Aufruf von Installer.exe mit einem Fehler endete (&#8222;Module not found&#8220; bzw. &#8222;The folder &#8216;&#60;temporary data&#62;&#8217; could not be created&#8220;). Wenn die DVDs mit folgendem Befehl angemeldet werden, lässt sich das Problem umgehen: # /dev/sr0 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=281&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ich hatte das zweifelhafte Vergnügen, dass nicht der gesamte Inhalt der DVD nach dem Einhängen im System angezeigt wurde und der Aufruf von <em>Installer.exe</em> mit einem Fehler endete (&#8222;Module not found&#8220; bzw. &#8222;The folder &#8216;&lt;temporary data&gt;&#8217; could not be created&#8220;). Wenn die DVDs mit folgendem Befehl angemeldet werden, lässt sich das Problem umgehen:<br />
<code><br />
# <em>/dev/sr0</em> und <em>/media/cdrom0/</em> sind natürlich den eigenen Gegebenheiten anzupassen<br />
sudo mount -o ro,unhide,uid=1000,gid=1000 /dev/sr0 /media/cdrom0/<br />
</code><br />
Die erste DVD habe ich in ein Verzeichnisse auf meiner Festplatte installiert. Von der zweiten DVD werden nur die Dateien <em>Installer Tome 4.mpq</em> und <em>Movies.mpq</em> benötigt und ebenfalls in dieses Verzeichnis kopiert.<br />
Beim Aufruf von <em>Installer.exe</em> stand ich jetzt vor dem Problem, dass ich nur die Möglichkeit hatte das Spiel zu starten. Eine Installation war nicht möglich. Um dieses Problem zu umgehen habe ich vor dem Aufrufen von <em>Installer.exe</em> mein WoW-Verzeichnis umbenannt. Nach dem Starten von <em>Installer.exe</em> konnte ich dann die Installation starten. Vor der Bestätigung der Auswahl des Zielverzeichnisses habe ich die Umbenennung des WoW-Verzeichnisses rückgängig gemacht.</p>
<br />Veröffentlicht in Linux, Spiele, Ubuntu, Ubuntuusers.de, Wine, World of Warcraft  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboettger.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboettger.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboettger.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboettger.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboettger.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboettger.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboettger.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboettger.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboettger.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboettger.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboettger.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboettger.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboettger.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboettger.wordpress.com/281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=281&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboettger.wordpress.com/2010/01/07/wrath-of-the-lich-king-und-ubuntu-9-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc2b7329bf876553c852389cabeaddc1?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">aboettger</media:title>
		</media:content>
	</item>
		<item>
		<title>Auf der Suche nach den Verzeichnissen</title>
		<link>http://aboettger.wordpress.com/2009/12/23/auf-der-suche-nach-den-verzeichnissen/</link>
		<comments>http://aboettger.wordpress.com/2009/12/23/auf-der-suche-nach-den-verzeichnissen/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 18:59:54 +0000</pubDate>
		<dc:creator>Andreas Böttger</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntuusers.de]]></category>

		<guid isPermaLink="false">http://aboettger.wordpress.com/?p=277</guid>
		<description><![CDATA[In den Verzeichnissen meiner Musiksammlung haben sich im Laufe der Zeit jede Menge Dateien angsammelt, die selbst keine MP3s sind. Nach dem Verschieben oder löschen der MP3s kann es also vorkommen, dass es Verzeichnisse gibt, die zwar noch Dateien beinhalten, aber keine MP3s mehr. Diese Verzeichnisse will ich loswerden. Folgender Befehl listet schon mal alle [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=277&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In den Verzeichnissen meiner Musiksammlung haben sich im Laufe der Zeit jede Menge Dateien angsammelt, die selbst keine MP3s sind. Nach dem Verschieben oder löschen der MP3s kann es also vorkommen, dass es Verzeichnisse gibt, die zwar noch Dateien beinhalten, aber keine MP3s mehr. Diese Verzeichnisse will ich loswerden.<br />
Folgender Befehl listet schon mal alle Verzeichnisse, in denen außer PNGs nichts enthalten ist:</p>
<p><code>find . -name '*png' -printf '%h' | xargs -0 ls -l --hide=*.png | grep -ZB1 ' 0$'</code></p>
<p>Was noch fehlt ist das Löschen der gelisteten Verzeichnisse und der Umgang mit mehreren Dateitypen gleichzeitig, z.B. PNG, JPG, PDF, &#8230;</p>
<br />Veröffentlicht in Audio, Linux, Tips &amp; Tricks, Ubuntu, Ubuntuusers.de  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboettger.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboettger.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboettger.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboettger.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboettger.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboettger.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboettger.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboettger.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboettger.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboettger.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboettger.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboettger.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboettger.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboettger.wordpress.com/277/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=277&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboettger.wordpress.com/2009/12/23/auf-der-suche-nach-den-verzeichnissen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc2b7329bf876553c852389cabeaddc1?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">aboettger</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu Soundbenachrichtigung vor dem Login abschalten</title>
		<link>http://aboettger.wordpress.com/2009/12/21/ubuntu-soundbenachrichtigung-vor-dem-login-abschalten/</link>
		<comments>http://aboettger.wordpress.com/2009/12/21/ubuntu-soundbenachrichtigung-vor-dem-login-abschalten/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 08:40:30 +0000</pubDate>
		<dc:creator>Andreas Böttger</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntuusers.de]]></category>

		<guid isPermaLink="false">http://aboettger.wordpress.com/?p=271</guid>
		<description><![CDATA[sudo -u gdm gconftool-2 --set --type bool /desktop/gnome/sound/event_sounds false Veröffentlicht in Audio, Linux, Tips &#38; Tricks, Ubuntu, Ubuntuusers.de<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=271&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><code>sudo -u gdm gconftool-2 --set --type bool /desktop/gnome/sound/event_sounds false</code></p>
<br />Veröffentlicht in Audio, Linux, Tips &amp; Tricks, Ubuntu, Ubuntuusers.de  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboettger.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboettger.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboettger.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboettger.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboettger.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboettger.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboettger.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboettger.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboettger.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboettger.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboettger.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboettger.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboettger.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboettger.wordpress.com/271/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=271&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboettger.wordpress.com/2009/12/21/ubuntu-soundbenachrichtigung-vor-dem-login-abschalten/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc2b7329bf876553c852389cabeaddc1?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">aboettger</media:title>
		</media:content>
	</item>
		<item>
		<title>Verwirrung mit sed und awk</title>
		<link>http://aboettger.wordpress.com/2009/12/05/verwirrung-mit-sed-und-awk/</link>
		<comments>http://aboettger.wordpress.com/2009/12/05/verwirrung-mit-sed-und-awk/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 17:29:54 +0000</pubDate>
		<dc:creator>Andreas Böttger</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://aboettger.wordpress.com/?p=268</guid>
		<description><![CDATA[Folgender Befehl zeigt mir das Verzeichnis an, in dem sich ein JPG befindet. Dabei werden Leerzeichen und Ausrufungszeichen maskiert. Das Verzeichnis selbst beinhaltet Leerzeichen und Ausrufungszeichen. $ find . -name &#8216;*jpg&#8217; &#124; awk -F/ &#8216;{ for (i = 1; i &#60; NF; i++) { dir = dir $i &#8222;/&#8220; } print dir }&#8217; &#124; sed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=268&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Folgender Befehl zeigt mir das Verzeichnis an, in dem sich ein JPG befindet. Dabei werden Leerzeichen und Ausrufungszeichen maskiert. Das Verzeichnis selbst beinhaltet Leerzeichen und Ausrufungszeichen.</p>
<p>$ find . -name &#8216;*jpg&#8217; | awk -F/ &#8216;{ for (i = 1; i &lt; NF; i++) { dir = dir $i &#8222;/&#8220; } print dir }&#8217; | sed &#8216;s/[ !]/\\&amp;/g&#8217;</p>
<p>./\!\!\!/Louden\ Up\ Now/</p>
<p>Aber warum gibt es Probleme, wenn ich folgendes versuche?</p>
<p>ls -la `find . -name &#8216;*jpg&#8217; | awk -F/ &#8216;{ for (i = 1; i &lt; NF; i++) { dir = dir $i &#8222;/&#8220; } print dir }&#8217; | sed &#8216;s/[ !]/\\\&amp;/g&#8217;`</p>
<p>ls: Zugriff auf ./\!\!\!/Louden\ nicht möglich: No such file or directory<br />
ls: Zugriff auf Up\ nicht möglich: No such file or directory<br />
ls: Zugriff auf Now/ nicht möglich: No such file or directory</p>
<br />Veröffentlicht in Bash, Linux  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboettger.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboettger.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboettger.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboettger.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboettger.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboettger.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboettger.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboettger.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboettger.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboettger.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboettger.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboettger.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboettger.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboettger.wordpress.com/268/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=268&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboettger.wordpress.com/2009/12/05/verwirrung-mit-sed-und-awk/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc2b7329bf876553c852389cabeaddc1?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">aboettger</media:title>
		</media:content>
	</item>
		<item>
		<title>Kleine Erweiterungen für den gmusicbrowser</title>
		<link>http://aboettger.wordpress.com/2009/11/10/kleine-erweiterungen-fur-den-gmusicbrowser/</link>
		<comments>http://aboettger.wordpress.com/2009/11/10/kleine-erweiterungen-fur-den-gmusicbrowser/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 09:36:14 +0000</pubDate>
		<dc:creator>Andreas Böttger</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[gmusicbrowser]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntuusers.de]]></category>

		<guid isPermaLink="false">http://aboettger.wordpress.com/?p=261</guid>
		<description><![CDATA[Vorgestern habe ich hier über den gmusicbrowser berichtet. Für dieses Programm habe ich mir zwei kleine Ergänzugen gebaut. Im einzelnen ein Layout und eine Möglichkeit sich mittels notify-send über einen Liedwechsel informieren zu lassen. Das Layout Das von mir verwendete Layout basiert auf diesem Layout (eine Übersicht weiterer Layouts lassen sich hier finden). Gestört hat [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=261&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Vorgestern habe ich <a title="gmusicbrowser" href="http://aboettger.wordpress.com/2009/11/08/die-suche-hat-ein-ende-vorerst/" target="_blank">hier</a> über den gmusicbrowser berichtet. Für dieses Programm habe ich mir zwei kleine Ergänzugen gebaut. Im einzelnen ein Layout und eine Möglichkeit sich mittels <em>notify-send</em> über einen Liedwechsel informieren zu lassen.</p>
<h2><strong>Das Layout</strong></h2>
<p>Das von mir verwendete Layout basiert auf <a title="itunesplus" href="http://squentin.free.fr/gmusicbrowser/contrib/itunesplus.layout" target="_blank">diesem</a> Layout (eine Übersicht weiterer Layouts lassen sich <a title="Layouts" href="http://squentin.free.fr/gmusicbrowser/contrib.html" target="_blank">hier</a> finden). Gestört hat mich an dem Originallayout, dass der Slider zur Positionierung in einem laufenden Titel nicht funktionierte. Den Fehler konnte ich beheben. Was ich noch nicht geschafft habe ist, den Fehler zu finden und zu beseitigen, der die Informationen zur aktuellen Liedliste anzeigt. Also die Anzahl der Titel, Gesamtlänge und Gesamtgröße.</p>
<p>Mein Layout sieht im Quellcode folgendermaßen aus:</p>
<pre><span style="color:#000000;">[itunes-like-plus-plus]

####General
Type        = G
Default        = Window size=1120x820 VPfp_list 120 HPfp0 300
VPfp_list 200_550

###main layout with notebook tabs
VBmain        = HBupper _15TBupper

##
HBupper        = _VBupper -HBRight
## Notebook with 3 tabs
TBupper        = _"Queue" VBQueueList _"Library" HPfp_list_src
 _"Context" Context 

VBupper        = _7HBIndic _HBHeader
HBRight        = -ArtistPic(hover_layout=ArtistPopup,
hover_delay=100,tooltip=%a) -10Cover(hover_layout=CoverPopup,
hover_delay=100,tooltip=%l)

HBIndic        = MBmenu 20Sort Filter Queue 10Pos
HBHeader    = HBButtons _ABInfo

HBButtons    = Prev(size=dnd) Play(size=dialog) Next(size=dnd)
 Stop(size=small-toolbar) Vol(size=small-toolbar,button=1) 10Filler0

ABInfo        = FRInfo(shadow=etched-out)
FRInfo        = VBInfo
VBInfo        = _HBSongInfo _7HBScale
HBSongInfo    = _VBSongInfo -Filler1
VBSongInfo    = _2HBTitle _2HBAlbum
HBTitle        = LockArtist _Title_by -Stars
HBAlbum        = LockAlbum _Album -Date
HBScale        = _Scale LabelTime -Length
MBmenu        = MainMenuItem PSortItem PFilterItem QueueItem

VBQueueList    = 3_QueueList(activate=playlist) HBQueueAct
HBQueueAct    = EditListButtons 10QueueActions

HPfp_list_src    = FPane3(nb=1,hide=1,pages=savedtree) _VPfp_list
VPfp_list    = HPfp0 _VBlist

VBlist        = HBstatus _SongTree
HBstatus    = SimpleSearch MBlist Refresh ResetFilter PlayFilter
 QueueFilter -Total
MBlist        = HistItem LSortItem PlayItem
HPfp0        = FPane0(nb=2,hide=1,pages=genre) HPfp1
HPfp1        = FPane1(nb=3,hide=1,pages=artist)
 FPane2(nb=4,hide=1,pages=album)
VSize1        = 47 HBHeader
HSize1        = HBButtons HBRight
HSize2        = LockArtist LockAlbum Filler1
VolumeScroll= HBupper

[CoverPopup]
VBmain        = Cover(minsize=300,maxsize=300,click1=CloseWindow)

[ArtistPopup]
VBmain        = ArtistPic(minsize=300,maxsize=300,click1=CloseWindow)</span></pre>
<p>Um das Layout zu verwenden, müssen die Angaben in eine Datei (z.B. <em>itunesplusplus.layout</em>) abgelegt werden. Die Datei muss sich im Verzeichnis <em>~/.config/gmusicbrowser/layouts/</em> befinden. Nach dem Neustart des gmusicbrowser kann das Layout ausgewählt werden.</p>
<p>&nbsp;</p>
<h2>Die Benachrichtigung</h2>
<p>Um die Benachrichtigungsfunktion verwenden zu können ist zuerst die Erweiterung <em>Jetzt läuft</em> zu aktivieren. Danach kann man einen Befehl eintragen, der bei einem Liedwechsel ausgeführt wird. Ich habe mir ein Miniscript geschrieben, welches an dieser Stelle aufgerufen wird. Der Aufruf des Scripts sieht bei mir also so aus (der Pfad ist natürlich anzupassen):</p>
<p><em>/home/andreas/.local/share/bin/notify %c %t %a %l</em></p>
<p>Das Script selbst sieht folgendermaßen aus und ist wirklich sehr primitiv gehalten:</p>
<pre><span style="color:#000000;">#!/bin/bash
/usr/bin/notify-send -u critical -i "$1" "$2" "von $3 ($4)"</span></pre>
<p>Als Ergebnis erscheint eine Benachrichtigung, die neben dem Titel, dem Künstler und dem Album auch ein Albumcover enthält.</p>
<p>&nbsp;</p>
<br />Veröffentlicht in Audio, gmusicbrowser, Linux, Ubuntuusers.de  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboettger.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboettger.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboettger.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboettger.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboettger.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboettger.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboettger.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboettger.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboettger.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboettger.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboettger.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboettger.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboettger.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboettger.wordpress.com/261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=261&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboettger.wordpress.com/2009/11/10/kleine-erweiterungen-fur-den-gmusicbrowser/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc2b7329bf876553c852389cabeaddc1?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">aboettger</media:title>
		</media:content>
	</item>
		<item>
		<title>Die Suche hat ein Ende, vorerst.</title>
		<link>http://aboettger.wordpress.com/2009/11/08/die-suche-hat-ein-ende-vorerst/</link>
		<comments>http://aboettger.wordpress.com/2009/11/08/die-suche-hat-ein-ende-vorerst/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 18:00:15 +0000</pubDate>
		<dc:creator>Andreas Böttger</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[gmusicbrowser]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntuusers.de]]></category>

		<guid isPermaLink="false">http://aboettger.wordpress.com/?p=257</guid>
		<description><![CDATA[Lange war ich auf der Suche, auf der Suche nach einem Verwaltungsprogramm für meine digitale Musiksammlung. Amarok 1.4 war das letzte Programm mit dem ich ziemlich zufrieden war. Dann kam mein Umstieg von KDE auf Gnome. Ich war weiterhin zufrieden mit Amarok 1.4. Aber dann kam Amarok 2 und ich putzte Amarok von meiner Festplatte [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=257&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lange war ich auf der Suche, auf der Suche nach einem Verwaltungsprogramm für meine digitale Musiksammlung. Amarok 1.4 war das letzte Programm mit dem ich ziemlich zufrieden war. Dann kam mein Umstieg von KDE auf Gnome. Ich war weiterhin zufrieden mit Amarok 1.4. Aber dann kam Amarok 2 und ich putzte Amarok von meiner Festplatte und die Suche nach einem ebenbürtigen Programm begann. Songbird, Rhythmbox, Banshee, Exaile, Amarok 2. Meinen iPod betankte ich inzwischen mit gtkpod, meine Podcasts mit gPodder und ich habe mich daran gewöhnt, dass die Bewertungen und Playcounts nicht mehr automatisch abgeglichen werden. Auch für die Übertragung meiner auf meinem iPod gespielten Titel zu last.fm musste ich jetzt wieder Last.fm verwenden. Alles das konnte Amarok 1.4. Was ich aber nicht vertragen konnte war die Langsamkeit der Programme, die ich nach Amarok 1.4 verwendete. Am Ende traute ich mich schon gar nicht mehr nach etwas zu suchen.</p>
<p>Was ich fand hört auf den Namen gmusicbrowser und das Teil ist schnell, verdammt schnell. Zwar arbeitet es noch nicht mit meinem iPod zusammen, aber das ist angekündigt und wenn ich mir den aktuellen gmusicbrowser ansehe, dann bilde ich mir ein, wieder hoffen zu können. Auch gmusicbrowser kann keine Podcasts, aber seine bestehenden Stärken sind enorm. Die Darstellungsmöglichkeiten sind erschlagend. Die Möglichkeiten der Filter bzw. intelligenten Playlists sind einzigartig. Der gewichtete Zufallsmodus ist eine Offenbarung. Ein Leben ohne gmusicbrowser nicht mehrvorstellbar.</p>
<p><a title="gmusicbrowser" href="http://squentin.free.fr/gmusicbrowser" target="_blank">Hier</a> geht es zu diesem großartigen Projekt.</p>
<br />Veröffentlicht in Audio, gmusicbrowser, Linux, Ubuntu, Ubuntuusers.de  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboettger.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboettger.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboettger.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboettger.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboettger.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboettger.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboettger.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboettger.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboettger.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboettger.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboettger.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboettger.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboettger.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboettger.wordpress.com/257/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=257&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboettger.wordpress.com/2009/11/08/die-suche-hat-ein-ende-vorerst/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc2b7329bf876553c852389cabeaddc1?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">aboettger</media:title>
		</media:content>
	</item>
		<item>
		<title>gUdev &#8211; Die Entwicklung geht weiter</title>
		<link>http://aboettger.wordpress.com/2009/09/28/gudev-die-entwicklung-geht-weiter/</link>
		<comments>http://aboettger.wordpress.com/2009/09/28/gudev-die-entwicklung-geht-weiter/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 21:33:17 +0000</pubDate>
		<dc:creator>Andreas Böttger</dc:creator>
				<category><![CDATA[gUdev]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntuusers.de]]></category>

		<guid isPermaLink="false">http://aboettger.wordpress.com/?p=253</guid>
		<description><![CDATA[Hier habe ich den Stand der aktuellen Entwicklung zu gUdev zusammengefasst. Als nächstes nehme ich mir das geführte Anlegen neuer Regeln vor. Zur Erinnerung, das ganze Projekt ist in Launchpad gehostet. Veröffentlicht in gUdev, Linux, Ubuntuusers.de<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=253&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://aboettger.wordpress.com/gudev-2/" target="_blank">Hier</a> habe ich den Stand der aktuellen Entwicklung zu gUdev zusammengefasst. Als nächstes nehme ich mir das geführte Anlegen neuer Regeln vor. Zur Erinnerung, das ganze Projekt ist in <a href="https://launchpad.net/gudev" target="_blank">Launchpad</a> gehostet.</p>
<br />Veröffentlicht in gUdev, Linux, Ubuntuusers.de  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aboettger.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aboettger.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aboettger.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aboettger.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aboettger.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aboettger.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aboettger.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aboettger.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aboettger.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aboettger.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aboettger.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aboettger.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aboettger.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aboettger.wordpress.com/253/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aboettger.wordpress.com&amp;blog=5019663&amp;post=253&amp;subd=aboettger&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aboettger.wordpress.com/2009/09/28/gudev-die-entwicklung-geht-weiter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc2b7329bf876553c852389cabeaddc1?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">aboettger</media:title>
		</media:content>
	</item>
	</channel>
</rss>
