<?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>Blog von Markus Golser</title>
	<atom:link href="http://elmargol.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://elmargol.wordpress.com</link>
	<description>Schwerpunkte: Linux, Free Software, Südtirol, Web2.0 und Links</description>
	<lastBuildDate>Thu, 27 Jan 2011 14:10:49 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='elmargol.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Blog von Markus Golser</title>
		<link>http://elmargol.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://elmargol.wordpress.com/osd.xml" title="Blog von Markus Golser" />
	<atom:link rel='hub' href='http://elmargol.wordpress.com/?pushpress=hub'/>
		<item>
		<title>HOWTO: Scan multiple pages to a PDF file and OCR using tesseract on archlinux</title>
		<link>http://elmargol.wordpress.com/2011/01/27/howto-scan-multiple-pages-to-a-pdf-file-and-ocr-using-tesseract-on-archlinux/</link>
		<comments>http://elmargol.wordpress.com/2011/01/27/howto-scan-multiple-pages-to-a-pdf-file-and-ocr-using-tesseract-on-archlinux/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 13:55:30 +0000</pubDate>
		<dc:creator>elmargol</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://elmargol.wordpress.com/?p=174</guid>
		<description><![CDATA[Dependencies: simple-scan tesseract-svn ﻿﻿﻿imagemagick leptonica pdftk exactimage my bash script Step 1: Use simple-scan and scan everything to a multipage PDF file. Step 2: Apply my script to the .pdf file. DONE #!/bin/bash LANG=&#8220;deu&#8220; FILE=$1 TEMPS=`echo $FILE &#124; md5sum &#124; cut -c 1-32 ` mkdir /tmp/${TEMPS} cd /tmp/${TEMPS} echo &#8222;split pages&#8220; pdftk $FILE burst dont_ask [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=174&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dependencies:</p>
<ul>
<li>simple-scan</li>
<li>tesseract-svn</li>
<li>﻿﻿﻿imagemagick</li>
<li>leptonica</li>
<li>pdftk</li>
<li>exactimage</li>
<li>my bash script</li>
</ul>
<p>Step 1: Use simple-scan and scan everything to a multipage PDF file.<br />
Step 2: Apply my script to the .pdf file.<br />
DONE</p>
<blockquote><p>
#!/bin/bash</p>
<p>LANG=&#8220;deu&#8220;<br />
FILE=$1<br />
TEMPS=`echo $FILE | md5sum | cut -c 1-32 `<br />
mkdir /tmp/${TEMPS}<br />
cd /tmp/${TEMPS}</p>
<p>echo &#8222;split pages&#8220;<br />
pdftk $FILE burst dont_ask output ${TEMPS}_%02d.pdf</p>
<p>for f in ${TEMPS}_*.pdf<br />
do<br />
f=`basename $f .pdf`<br />
echo &#8222;Converting ${f}.pdf to tif&#8220;<br />
	convert -quiet -density 600 -size 210 × 297 -depth 8 &#8222;${f}.pdf&#8220; &#8222;${f}.tif&#8220;<br />
	convert -quiet -density 150 -size 210 × 297 -depth 8 &#8222;${f}.pdf&#8220; &#8222;${f}.jpg&#8220;<br />
done</p>
<p>for f in ${TEMPS}_*.tif<br />
do<br />
f=`basename $f .tif`<br />
echo &#8222;Using tesseract on ${f}.tif &#8230;&#8220;<br />
tesseract &#8222;${f}.tif&#8220; $f -l $LANG hocr<br />
done</p>
<p>for f in ${TEMPS}_*.pdf<br />
do<br />
echo &#8222;adding text to pdf&#8220;<br />
f=`basename $f .pdf`<br />
hocr2pdf -n -o ${f}_n.pdf -i ${f}.tif  &lt; ${f}.html<br />
pdftk ${f}.pdf background ${f}_n.pdf output ${f}_added.pdf<br />
done</p>
<p>echo &quot;Joining Multipagepdf&quot;<br />
pdftk ${TEMPS}_*_added.pdf cat output &quot;${TEMPS}-ocr.pdf&quot;</p>
<p>dirname=`dirname $FILE`<br />
filename=`basename $FILE .pdf`</p>
<p>echo &quot;writing new pdf file&quot;<br />
mv ${TEMPS}-ocr.pdf ${dirname}/${filename}_ocr.pdf </p>
<p>echo &quot;deleting temp files&quot;<br />
rm -rf /tmp/${TEMPS}</p>
</blockquote>
<p><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;line-height:19px;white-space:normal;font-size:13px;">PS: This should work on Ubuntu too</span></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmargol.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmargol.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmargol.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmargol.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmargol.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmargol.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmargol.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmargol.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmargol.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmargol.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmargol.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmargol.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmargol.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmargol.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=174&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmargol.wordpress.com/2011/01/27/howto-scan-multiple-pages-to-a-pdf-file-and-ocr-using-tesseract-on-archlinux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d334162948a0bcd3f6da0df2893449b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elmargol</media:title>
		</media:content>
	</item>
		<item>
		<title>VDR: mplayer can not play quicktime videos over mpegpes</title>
		<link>http://elmargol.wordpress.com/2008/10/31/vdr-mplayer-can-not-play-quicktime-videos-over-mpegpes/</link>
		<comments>http://elmargol.wordpress.com/2008/10/31/vdr-mplayer-can-not-play-quicktime-videos-over-mpegpes/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 16:26:40 +0000</pubDate>
		<dc:creator>elmargol</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[dvb]]></category>
		<category><![CDATA[mplayer]]></category>
		<category><![CDATA[mplayer.sh]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[quicktime]]></category>
		<category><![CDATA[vdr]]></category>

		<guid isPermaLink="false">http://elmargol.wordpress.com/?p=167</guid>
		<description><![CDATA[At the moment you can not play a quicktime movie on your vdr. Mplayer has an annoying bug and chooses the wrong demuxer for quicktime (only if you watch over -vo mpeges) In order to fix this i have a workaround for the mplayer.sh script. if `file -bi  &#8222;$FILE&#8220;&#124; egrep -q &#8222;video/quicktime&#8220;`; then USERDEF=&#8220;$USERDEF -demuxer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=167&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At the moment you can not play a quicktime movie on your vdr.</p>
<p>Mplayer has an <code>annoying</code> bug and chooses the wrong demuxer for quicktime (only if you watch over -vo mpeges)</p>
<p>In order to fix this i have a workaround for the mplayer.sh script.</p>
<p>if `file -bi  &#8222;$FILE&#8220;| egrep -q &#8222;video/quicktime&#8220;`; then<br />
USERDEF=&#8220;$USERDEF -demuxer mov&#8220;<br />
fi</p>
<p>related links:<br />
<a href="http://lists.mplayerhq.hu/pipermail/mplayer-users/2008-October/074966.html">http://lists.mplayerhq.hu/pipermail/mplayer-users/2008-October/074966.html</a><a href="http://bugs.gentoo.org/show_bug.cgi?id=214494"><br />
http://bugs.gentoo.org/show_bug.cgi?id=214494</a><a href="http://bugs.gentoo.org/show_bug.cgi?id=215621"></p>
<p>http://bugs.gentoo.org/show_bug.cgi?id=215621</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmargol.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmargol.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmargol.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmargol.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmargol.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmargol.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmargol.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmargol.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmargol.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmargol.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmargol.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmargol.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmargol.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmargol.wordpress.com/167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=167&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmargol.wordpress.com/2008/10/31/vdr-mplayer-can-not-play-quicktime-videos-over-mpegpes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d334162948a0bcd3f6da0df2893449b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elmargol</media:title>
		</media:content>
	</item>
		<item>
		<title>Einkaufen in Südtirol? Nein danke!</title>
		<link>http://elmargol.wordpress.com/2008/07/25/einkaufen-in-sudtirol-nein-danke/</link>
		<comments>http://elmargol.wordpress.com/2008/07/25/einkaufen-in-sudtirol-nein-danke/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 10:48:34 +0000</pubDate>
		<dc:creator>elmargol</dc:creator>
				<category><![CDATA[Italien]]></category>
		<category><![CDATA[Südtirol]]></category>
		<category><![CDATA[einkaufen]]></category>
		<category><![CDATA[euronics]]></category>

		<guid isPermaLink="false">http://elmargol.wordpress.com/?p=162</guid>
		<description><![CDATA[Es ist schon interessant zu beobachten, wie sich die Wirtschaftstreibenden in Südtirol gegenseitig bei der Arbeit behindern. Am 24. Juli musste Euronics (www.euronics.it) die Filiale schließen, da es Unklarheiten mit der Lizenz gab. Heute am 25. Juli ist die Filiale wieder geöffnet darf aber nur ein begrenztes Produktangebot anbieten. Zwar dürfte die Elektrohandelskette weiterhin Rundfunk- [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=162&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Es ist schon interessant zu beobachten, wie sich die Wirtschaftstreibenden in Südtirol gegenseitig bei der Arbeit behindern.<br />
Am 24. Juli musste Euronics (<a href="http://www.euronics.it/it/index.html">www.euronics.it</a>) die Filiale schließen, da es Unklarheiten mit der Lizenz gab.<br />
Heute am 25. Juli ist die Filiale wieder geöffnet darf aber nur ein begrenztes Produktangebot anbieten.</p>
<blockquote><p>Zwar dürfte die Elektrohandelskette weiterhin Rundfunk- und TV-Geräte, elektronische Rechner, CD&#8217;s, Musikkassetten, Bild- und Tonträger, sowie das nötige Zubehör verkaufen, „der Rest des Warensortimentes darf jedoch bis zur definitiven Entscheidung des Gerichtes nicht mehr angeboten werden“, sagt Gemeindeanwalt Marco Cappello.</p></blockquote>
<p>Meine Meinung dazu: Ich finde Südtirol muss wirklich aufwachen und dafür sorgen das es mehr Konkurrenz gibt. Ich kaufe schon Jahre elektronische Waren im Ausland da ich es nicht einsehe von Südtiroler Kaufleuten über den Tisch gezogen zu werden.Die Preise sind meist total überzogen 30-50% teurer und die Beratung ist in der Regel nicht vorhanden oder unprofessionell.</p>
<p>Passende Links:<br />
<a href="http://www.stol.it/nachrichten/artikel.asp?KatID=c&amp;p=5&amp;ArtID=120640&amp;SID=756586649254979146">Euronics schließt vorerst die Tore</a><a class="titel" href="http://www.stol.it/nachrichten/artikel.asp?KatID=c&amp;p=5&amp;ArtID=120681&amp;SID=533216640193079146"><br />
Teil des Euronics wieder geöffnet</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/elmargol.wordpress.com/162/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/elmargol.wordpress.com/162/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmargol.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmargol.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmargol.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmargol.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmargol.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmargol.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmargol.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmargol.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmargol.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmargol.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmargol.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmargol.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmargol.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmargol.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=162&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmargol.wordpress.com/2008/07/25/einkaufen-in-sudtirol-nein-danke/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d334162948a0bcd3f6da0df2893449b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elmargol</media:title>
		</media:content>
	</item>
		<item>
		<title>Miro 1.2.3rc2 adds support for high quality Youtube downloads</title>
		<link>http://elmargol.wordpress.com/2008/04/22/miro-123rc2-adds-support-for-high-quality-youtube-downloads/</link>
		<comments>http://elmargol.wordpress.com/2008/04/22/miro-123rc2-adds-support-for-high-quality-youtube-downloads/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 08:00:45 +0000</pubDate>
		<dc:creator>elmargol</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[miro]]></category>
		<category><![CDATA[youtube]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mp4]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://elmargol.wordpress.com/?p=160</guid>
		<description><![CDATA[The newest version of Miro can now download high quality video from Youtube. Youtube uses the mp4 video format for this. (Note: not every video is available in HQ most videos are not well encoded by the uploader) You can get the nevest version for Ubuntu Hardy at https://launchpad.net/~teammiro/+archive/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=160&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The newest version of <a href="http://www.getmiro.com">Miro</a> can now download high quality video from <a href="http://www.youtube.com">Youtube</a>. Youtube uses the mp4 video format for this.<br />
<em>(Note: not every video is available in HQ most videos are not well encoded by the uploader) </em></p>
<p><a href="http://elmargol.files.wordpress.com/2008/04/miro_adds_mp4_download.jpg"><img class="alignnone size-full wp-image-159" src="http://elmargol.files.wordpress.com/2008/04/miro_adds_mp4_download.jpg?w=450" alt=""   /></a></p>
<p>You can get the nevest version for <a href="http://www.ubuntu.com/">Ubuntu Hardy</a> at <a href="https://launchpad.net/~teammiro/+archive/">https://launchpad.net/~teammiro/+archive/</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/elmargol.wordpress.com/160/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/elmargol.wordpress.com/160/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmargol.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmargol.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmargol.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmargol.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmargol.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmargol.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmargol.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmargol.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmargol.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmargol.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmargol.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmargol.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmargol.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmargol.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=160&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmargol.wordpress.com/2008/04/22/miro-123rc2-adds-support-for-high-quality-youtube-downloads/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d334162948a0bcd3f6da0df2893449b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elmargol</media:title>
		</media:content>

		<media:content url="http://elmargol.files.wordpress.com/2008/04/miro_adds_mp4_download.jpg" medium="image" />
	</item>
		<item>
		<title>HOWTO: Switch to Gonly mode using openwrt kamikaze</title>
		<link>http://elmargol.wordpress.com/2008/04/10/howto-switch-to-gonly-mode-using-openwrt-kamikaze/</link>
		<comments>http://elmargol.wordpress.com/2008/04/10/howto-switch-to-gonly-mode-using-openwrt-kamikaze/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 09:09:58 +0000</pubDate>
		<dc:creator>elmargol</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[broadcom]]></category>
		<category><![CDATA[kamikaze]]></category>
		<category><![CDATA[openwrt]]></category>

		<guid isPermaLink="false">http://elmargol.wordpress.com/?p=158</guid>
		<description><![CDATA[My wireless lan did not work corretly using the iwl3945 driver. Setting my accesspoint to G mode did fix the isssues. Install wl: ipkg install wl open the config file: vi /lib/wifi/broadcom.sh search for killall: /killall add this line (after the killall line): wl gmode GOnly<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=158&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My wireless lan did not work corretly using the iwl3945 driver. Setting my accesspoint to G mode did fix the isssues.</p>
<p><strong>Install wl: </strong>ipkg install wl<strong><br />
open the config file:</strong> vi /lib/wifi/broadcom.sh<strong><br />
search for killall:</strong> /killall<br />
<strong>add this line (after the killall line):</strong> wl gmode GOnly</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/elmargol.wordpress.com/158/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/elmargol.wordpress.com/158/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmargol.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmargol.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmargol.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmargol.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmargol.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmargol.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmargol.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmargol.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmargol.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmargol.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmargol.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmargol.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmargol.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmargol.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=158&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmargol.wordpress.com/2008/04/10/howto-switch-to-gonly-mode-using-openwrt-kamikaze/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d334162948a0bcd3f6da0df2893449b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elmargol</media:title>
		</media:content>
	</item>
		<item>
		<title>Andy Ross of OK Go discusses Miro and open media</title>
		<link>http://elmargol.wordpress.com/2008/04/03/andy-ross-of-ok-go-discusses-miro-and-open-media/</link>
		<comments>http://elmargol.wordpress.com/2008/04/03/andy-ross-of-ok-go-discusses-miro-and-open-media/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 11:43:15 +0000</pubDate>
		<dc:creator>elmargol</dc:creator>
				<category><![CDATA[miro]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://elmargol.wordpress.com/2008/04/03/andy-ross-of-ok-go-discusses-miro-and-open-media/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=157&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://elmargol.wordpress.com/2008/04/03/andy-ross-of-ok-go-discusses-miro-and-open-media/"><img src="http://img.youtube.com/vi/mHE5048_Idc/2.jpg" alt="" /></a></span>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/elmargol.wordpress.com/157/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/elmargol.wordpress.com/157/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmargol.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmargol.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmargol.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmargol.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmargol.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmargol.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmargol.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmargol.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmargol.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmargol.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmargol.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmargol.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmargol.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmargol.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=157&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmargol.wordpress.com/2008/04/03/andy-ross-of-ok-go-discusses-miro-and-open-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d334162948a0bcd3f6da0df2893449b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elmargol</media:title>
		</media:content>
	</item>
		<item>
		<title>Cali Lewis talks about Miro</title>
		<link>http://elmargol.wordpress.com/2008/04/03/cali-lewis-talks-about-miro/</link>
		<comments>http://elmargol.wordpress.com/2008/04/03/cali-lewis-talks-about-miro/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 11:11:22 +0000</pubDate>
		<dc:creator>elmargol</dc:creator>
				<category><![CDATA[miro]]></category>
		<category><![CDATA[geekbrief]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://elmargol.wordpress.com/?p=156</guid>
		<description><![CDATA[Watch the full show Get Miro<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=156&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="text-align:center; display: block;"><a href="http://elmargol.wordpress.com/2008/04/03/cali-lewis-talks-about-miro/"><img src="http://img.youtube.com/vi/wlecX-rH8G8/2.jpg" alt="" /></a></span><br />
<a href="http://www.geekbrief.tv/gbtv-332-geekbrieftv">Watch the full show</a><br />
<a href="http://www.getmiro.com/">Get Miro</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/elmargol.wordpress.com/156/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/elmargol.wordpress.com/156/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmargol.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmargol.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmargol.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmargol.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmargol.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmargol.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmargol.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmargol.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmargol.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmargol.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmargol.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmargol.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmargol.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmargol.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=156&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmargol.wordpress.com/2008/04/03/cali-lewis-talks-about-miro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d334162948a0bcd3f6da0df2893449b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elmargol</media:title>
		</media:content>
	</item>
		<item>
		<title>Tekzilla covers Miro</title>
		<link>http://elmargol.wordpress.com/2008/04/03/tekzilla-covers-miro/</link>
		<comments>http://elmargol.wordpress.com/2008/04/03/tekzilla-covers-miro/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 10:27:41 +0000</pubDate>
		<dc:creator>elmargol</dc:creator>
				<category><![CDATA[miro]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://elmargol.wordpress.com/?p=155</guid>
		<description><![CDATA[Watch the full show Get Miro<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=155&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="text-align:center; display: block;"><a href="http://elmargol.wordpress.com/2008/04/03/tekzilla-covers-miro/"><img src="http://img.youtube.com/vi/qmlXc3pIuiQ/2.jpg" alt="" /></a></span><br />
<a href="http://revision3.com/tekzilla/rogerc/">Watch the full show</a><br />
<a href="http://www.getmiro.com/">Get Miro</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/elmargol.wordpress.com/155/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/elmargol.wordpress.com/155/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmargol.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmargol.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmargol.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmargol.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmargol.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmargol.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmargol.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmargol.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmargol.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmargol.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmargol.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmargol.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmargol.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmargol.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=155&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmargol.wordpress.com/2008/04/03/tekzilla-covers-miro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d334162948a0bcd3f6da0df2893449b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elmargol</media:title>
		</media:content>
	</item>
		<item>
		<title>Howto: Fix font sizes in Epiphany</title>
		<link>http://elmargol.wordpress.com/2008/03/05/howto-fix-font-sizes-in-epiphany/</link>
		<comments>http://elmargol.wordpress.com/2008/03/05/howto-fix-font-sizes-in-epiphany/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 14:13:05 +0000</pubDate>
		<dc:creator>elmargol</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[epiphany]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://elmargol.wordpress.com/?p=152</guid>
		<description><![CDATA[This Howto changes the font sizes of Epiphany to the default font size of Firefox Epiphany by default uses point and not pixel as the default font size unit. You have to change this: start Epiphany goto: about:config search for: font.size.unit change: pt to px Now you have to change the default font sizes: goto: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=152&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This Howto changes the font sizes of Epiphany to the default font size of Firefox<br />
Epiphany by default uses point and not pixel as the default font size unit.</p>
<p>You have to change this:</p>
<ul>
<li><b>start</b> Epiphany</li>
<li><b>goto:</b> about:config</li>
<li><b>search for:</b> font.size.unit</li>
<li><b>change:</b> pt to px</li>
</ul>
<p><a href="http://elmargol.files.wordpress.com/2008/03/font_settings2.jpg" title="font_settings2.jpg"><img src="http://elmargol.files.wordpress.com/2008/03/font_settings2.thumbnail.jpg?w=450" alt="font_settings2.jpg" /></a></p>
<p>Now you have to change the default font sizes:</p>
<ul>
<li><b>goto:</b> Preferences -&gt; Font &amp; Style</li>
<li><b>change: </b>Minimum size to 10</li>
<li><b>goto: </b>Detailed Font Settings:</li>
<li><b>change the sizes to: </b>16, 12, 10</li>
</ul>
<p><a href="http://elmargol.files.wordpress.com/2008/03/font_settings.jpg" title="font_settings.jpg"><img src="http://elmargol.files.wordpress.com/2008/03/font_settings.thumbnail.jpg?w=450" alt="font_settings.jpg" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/elmargol.wordpress.com/152/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/elmargol.wordpress.com/152/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmargol.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmargol.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmargol.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmargol.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmargol.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmargol.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmargol.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmargol.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmargol.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmargol.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmargol.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmargol.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmargol.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmargol.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=152&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmargol.wordpress.com/2008/03/05/howto-fix-font-sizes-in-epiphany/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d334162948a0bcd3f6da0df2893449b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elmargol</media:title>
		</media:content>

		<media:content url="http://elmargol.files.wordpress.com/2008/03/font_settings2.thumbnail.jpg" medium="image">
			<media:title type="html">font_settings2.jpg</media:title>
		</media:content>

		<media:content url="http://elmargol.files.wordpress.com/2008/03/font_settings.thumbnail.jpg" medium="image">
			<media:title type="html">font_settings.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Interessantes Video über die Vertrauensfrage im Senat</title>
		<link>http://elmargol.wordpress.com/2008/01/27/interessantes-video-uber-die-vertrauensfrage-im-senat/</link>
		<comments>http://elmargol.wordpress.com/2008/01/27/interessantes-video-uber-die-vertrauensfrage-im-senat/#comments</comments>
		<pubDate>Sun, 27 Jan 2008 01:42:56 +0000</pubDate>
		<dc:creator>elmargol</dc:creator>
				<category><![CDATA[Italien]]></category>
		<category><![CDATA[prodi]]></category>
		<category><![CDATA[regierung]]></category>
		<category><![CDATA[senat]]></category>

		<guid isPermaLink="false">http://elmargol.wordpress.com/2008/01/27/interessantes-video-uber-die-vertrauensfrage-im-senat/</guid>
		<description><![CDATA[http://www.tagesschau.de/multimedia/video/video266662.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=146&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tagesschau.de/multimedia/video/video266662.html">http://www.tagesschau.de/multimedia/video/video266662.html</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/elmargol.wordpress.com/146/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/elmargol.wordpress.com/146/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmargol.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmargol.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmargol.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmargol.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmargol.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmargol.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmargol.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmargol.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmargol.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmargol.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmargol.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmargol.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmargol.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmargol.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmargol.wordpress.com&amp;blog=341722&amp;post=146&amp;subd=elmargol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmargol.wordpress.com/2008/01/27/interessantes-video-uber-die-vertrauensfrage-im-senat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d334162948a0bcd3f6da0df2893449b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elmargol</media:title>
		</media:content>
	</item>
	</channel>
</rss>
