<?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>Are You Open Source? &#187; Fundstücke</title>
	<atom:link href="http://cassmodiah.de/category/fundstuecke/feed/" rel="self" type="application/rss+xml" />
	<link>http://cassmodiah.de</link>
	<description>SENSE - This is my personal pastebin and makes none!</description>
	<lastBuildDate>Mon, 28 Mar 2011 06:10:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Home Improvement</title>
		<link>http://cassmodiah.de/2010-07-08/home-improvement/</link>
		<comments>http://cassmodiah.de/2010-07-08/home-improvement/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 15:35:33 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=714</guid>
		<description><![CDATA[שָׁלוֹם]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p><a href="http://media.cassmodiah.de/2010/07/auseinandergenommen.jpg"><img src="http://media.cassmodiah.de/2010/07/auseinandergenommen-300x225.jpg" alt="" title="auseinandergenommen" width="300" height="225" class="alignnone size-medium wp-image-715" /></a><br />
<a href="http://media.cassmodiah.de/2010/07/kuehllkoerperverkleinerung.jpg"><img src="http://media.cassmodiah.de/2010/07/kuehllkoerperverkleinerung-300x225.jpg" alt="" title="kuehllkoerperverkleinerung" width="300" height="225" class="alignnone size-medium wp-image-717" /></a><br />
<a href="http://media.cassmodiah.de/2010/07/board_ohne_kuehlkoerper.jpg"><img src="http://media.cassmodiah.de/2010/07/board_ohne_kuehlkoerper-300x225.jpg" alt="" title="board_ohne_kuehlkoerper" width="300" height="225" class="alignnone size-medium wp-image-718" /></a><br />
<a href="http://media.cassmodiah.de/2010/07/luefetereinbau.jpg"><img src="http://media.cassmodiah.de/2010/07/luefetereinbau-300x225.jpg" alt="" title="luefetereinbau" width="300" height="225" class="alignnone size-medium wp-image-720" /></a><br />
<a href="http://media.cassmodiah.de/2010/07/luefter_in_aktion..jpg"><img src="http://media.cassmodiah.de/2010/07/luefter_in_aktion.-300x225.jpg" alt="" title="luefter_in_aktion." width="300" height="225" class="alignnone size-medium wp-image-722" /></a><br />
<a href="http://media.cassmodiah.de/2010/07/testlauf.jpg"><img src="http://media.cassmodiah.de/2010/07/testlauf-300x225.jpg" alt="" title="testlauf" width="300" height="225" class="alignnone size-medium wp-image-723" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2010-07-08/home-improvement/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BeBeBeBeBörnd</title>
		<link>http://cassmodiah.de/2010-06-23/bebebebebornd/</link>
		<comments>http://cassmodiah.de/2010-06-23/bebebebebornd/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 18:43:45 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Linux & Open Source]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Kult]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=702</guid>
		<description><![CDATA[שָׁלוֹם /usr/local/bin/berndget #!/usr/bin/env python import urllib2 import urllib import BeautifulSoup import sys import re import os def stripfilename(url): base = urllib.unquote(os.path.basename(url)) return base def contains(theString, theQueryValue): return theString.find(theQueryValue) &#62; -1 def _reporthook(numblocks, blocksize, filesize): sys.stdout.write(&#34;.&#34;) sys.stdout.flush() request = urllib2.Request(sys.argv[1]) response = urllib2.urlopen(request) soup = BeautifulSoup.BeautifulSoup(response) for a in soup.findAll(&#039;a&#039;): link=a.get(&#039;href&#039;) if (link): if (contains(link, &#34;/download/&#34;)): [...]]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p>/usr/local/bin/berndget</p>
<pre class="brush: python">
#!/usr/bin/env python

import urllib2
import urllib
import BeautifulSoup
import sys
import re
import os

def stripfilename(url):
	base = urllib.unquote(os.path.basename(url))
	return base

def contains(theString, theQueryValue):
	return theString.find(theQueryValue) &gt; -1

def _reporthook(numblocks, blocksize, filesize):
	sys.stdout.write(&quot;.&quot;)
	sys.stdout.flush()	

request = urllib2.Request(sys.argv[1])
response = urllib2.urlopen(request)
soup = BeautifulSoup.BeautifulSoup(response)
for a in soup.findAll(&#039;a&#039;):
	link=a.get(&#039;href&#039;)
	if (link):
		if (contains(link, &quot;/download/&quot;)):
			base=stripfilename(link)
			url=&quot;http://krautchan.net&quot;+link
			print url+&quot; --&gt; &quot;+base
			urllib.urlretrieve(url, base, _reporthook)
			print
</pre>
<p>By Bernd (sometimes under public domain) </p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2010-06-23/bebebebebornd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Redmond] Racism is a weapon of mass destruction</title>
		<link>http://cassmodiah.de/2009-08-27/redmond-racism-is-a-weapon-of-mass-destruction/</link>
		<comments>http://cassmodiah.de/2009-08-27/redmond-racism-is-a-weapon-of-mass-destruction/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 06:19:39 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[persönliches]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[nerv]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=619</guid>
		<description><![CDATA[שָׁלוֹם So long and thanks for all the fish :-) שִׁמְעוֹן]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p><a href="http://media.cassmodiah.de/2009/08/racismatredmond.jpg"><img src="http://media.cassmodiah.de/2009/08/racismatredmond-300x184.jpg" alt="Racism at Redmond " title="Racism at Redmond " width="300" height="184" class="alignnone size-medium wp-image-621" /></a></p>
<p>So long and thanks for all the fish :-)<br />
שִׁמְעוֹן</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2009-08-27/redmond-racism-is-a-weapon-of-mass-destruction/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Linux-User: Community Edition</title>
		<link>http://cassmodiah.de/2009-06-10/linux-user-community-edition/</link>
		<comments>http://cassmodiah.de/2009-06-10/linux-user-community-edition/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 16:26:36 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Linux & Open Source]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[Buch]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=559</guid>
		<description><![CDATA[שָׁלוֹם Heute war eine interessante E-Mail in meinem Postfach: From: &#8220;Linux New Media AG&#8221; To: xxxx Subject: LinuxUser: Heftvorschau und PDF-Community-Edition Date: Wed, 10 Jun 2009 16:23:18 +0200 Aus dem Umfeld der Open-Source-Community als Organ der Linux-Usergroups geboren, hat Linux New Media schon immer mit der Community geteilt &#8211; sei es durch die direkte Unterstützung [...]]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p>Heute war eine interessante E-Mail in meinem Postfach:</p>
<blockquote><p>
From: &#8220;Linux New Media AG&#8221;<br />
To: xxxx<br />
Subject: LinuxUser: Heftvorschau und PDF-Community-Edition<br />
Date: Wed, 10 Jun 2009 16:23:18 +0200</p>
<p>Aus dem Umfeld der Open-Source-Community als Organ der Linux-Usergroups geboren, hat Linux New Media schon immer mit der Community geteilt &#8211; sei es durch die direkte Unterstützung für Usergroups und Veranstaltungen oder das freie Bereitstellen von Inhalten im Web. Auf diesem Weg wollen wir nun einen Schritt weiter gehen und bieten Ihnen deshalb heute die erste Ausgabe der kostenlosen LinuxUser Community-Edition im PDF-Format an. Als kleines Bonbon für Sie als engagiertes Community-Mitglied erfahren Sie hier schon vorab von diesem neuen Linux-E-Zine: Offiziell und für den Rest der Welt starten wir die LinuxUser Community-Edition erst am nächsten Montag.</p>
<p>Die LinuxUser Community-Edition steht unter der Lizenz Creative Commons CC-BY-NC-ND, die es ausdrücklich erlaubt, &#8220;das Werk zu vervielfältigen, zu verbreiten und öffentlich zugänglich machen&#8221;. Sie dürfen die LinuxUser Community-Edition also beliebig kopieren, gedruckt oder als Datei an Freunde und Bekannte weitergeben, auf Ihre Website stellen &#8211; oder was immer ihnen sonst dazu einfällt. Lediglich bearbeiten, verändern oder kommerziell nutzen dürfen Sie sie nicht. Darum bitten wir Sie im Sinn des &#8220;fair use&#8221; &#8211; und machen im Einzelfall auch gern einmal eine Ausnahme von diesen Einschränkungen, falls Sie uns von der Sinnhaftigkeit Ihres Anliegens überzeugen.</p>
<p>Künftig gibt es jeden Monat eine Ausgabe der LinuxUser Community-Edition mit rund einem halben Dutzend Artikeln aus dem aktuellen Heft sowie den Inhaltsangaben von Heft und DVDs. Ein Archiv aller bereits erschienen Community-Edition-PDFs finden Sie unter</p>
<p><a href="http://www.linux-user.de/Community-Edition/">http://www.linux-user.de/Community-Edition/</a></p>
<p>zum Download. Dort können Sie bei Interesse auch einen monatlichen Vorschau-Newsletter bestellen &#8212; mit oder ohne anhängendes PDF. So flattert Ihnen die LinuxUser Community-Edition in Zukunft jeden Monat automatisch per E-Mail ins Haus, wenn Sie das wünschen.</p>
<p>Falls Sie die Zeit erübrigen können, lassen Sie mich doch kurz wissen, wie Ihnen die Community-Edition von LinuxUser gefällt und was Sie sich an Änderungen und Verbesserungen wünschen würden: LinuxUser<br />
Community-Edition ist &#8220;work in progress&#8221; und soll in Zukunft kontinuierlich gepflegt und verbessert werden.</p>
<p>Herzliche Grüße,<br />
Jörg Luther </p>
</blockquote>
<p>So long and thanks for all the fish :-)<br />
שִׁמְעוֹן</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2009-06-10/linux-user-community-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Archlinux: pacgraph!</title>
		<link>http://cassmodiah.de/2009-06-08/archlinux-pacgraph/</link>
		<comments>http://cassmodiah.de/2009-06-08/archlinux-pacgraph/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 16:12:56 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Linux & Open Source]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[Archlinux]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[nerv]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=555</guid>
		<description><![CDATA[שָׁלוֹם There is a cool application in Archlinux that draws a graph of installed packages, called pacgraph! So long and thanks for all the fish :-) שִׁמְעוֹן]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p>There is a cool application in <a href="http://www.archlinux.org/">Archlinux</a> that draws a graph of installed packages, called <a href="http://kmkeen.com/pacgraph/ ">pacgraph</a>!</p>
<p><a href="http://media.cassmodiah.de/2009/06/desktop_olsta.png"><img src="http://media.cassmodiah.de/2009/06/desktop_olsta-300x190.png" alt="Desktop Olsta" title="Desktop Olsta" width="300" height="190" class="alignnone size-medium wp-image-556" /></a></p>
<p>So long and thanks for all the fish :-)<br />
שִׁמְעוֹן</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2009-06-08/archlinux-pacgraph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux on the fast lane</title>
		<link>http://cassmodiah.de/2009-04-14/linux-on-the-fast-lane/</link>
		<comments>http://cassmodiah.de/2009-04-14/linux-on-the-fast-lane/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 21:54:06 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[Kult]]></category>
		<category><![CDATA[lol]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=497</guid>
		<description><![CDATA[שָׁלוֹם Vroooooooom :-) found on mailinglist of hulug So long and thanks for all the fish :-) שִׁמְעוֹן]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p><a href="http://media.cassmodiah.de/2009/04/img_1160.jpg"><img class="size-medium wp-image-498" title="Linux on the fast lane" src="http://media.cassmodiah.de/2009/04/img_1160_1.jpg" alt="Linux on the fast lane" /></a></p>
<p>Vroooooooom :-)<br />
found on mailinglist of <a href="http://hulug.de">hulug</a></p>
<p>So long and thanks for all the fish :-)<br />
שִׁמְעוֹן</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2009-04-14/linux-on-the-fast-lane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>altbacken</title>
		<link>http://cassmodiah.de/2009-02-25/altbacken/</link>
		<comments>http://cassmodiah.de/2009-02-25/altbacken/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 20:05:21 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Linux & Open Source]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[nerv]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=440</guid>
		<description><![CDATA[שָׁלוֹם Aus einer privaten Mailingliste: &#8220;&#8230; Wir haben hier einen etwas älteren Linux-Rechner mit einem nicht mehr ganz aktuellen Yggdrasil Linux&#8230;&#8221; So long and thanks for all the fish :-) שִׁמְעוֹן]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p>Aus einer privaten Mailingliste:<br />
&#8220;&#8230; Wir haben hier einen etwas älteren Linux-Rechner mit einem nicht mehr ganz aktuellen Yggdrasil Linux&#8230;&#8221;</p>
<p>So long and thanks for all the fish :-)<br />
שִׁמְעוֹן</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2009-02-25/altbacken/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FreeBSD &#8211; The Power To ..</title>
		<link>http://cassmodiah.de/2009-01-03/freebsd-the-power-to/</link>
		<comments>http://cassmodiah.de/2009-01-03/freebsd-the-power-to/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 23:24:46 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[BSD]]></category>
		<category><![CDATA[lol]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=397</guid>
		<description><![CDATA[&#8230; Cut Your Hair. שָׁלוֹם Gefunden von Christian in Hamburg! So long and thanks for all the fish :-) שִׁמְעוֹן]]></description>
			<content:encoded><![CDATA[<p>&#8230; Cut Your Hair.</p>
<p>שָׁלוֹם</p>
<p><a href="http://media.cassmodiah.de/2009/01/haarteufel.jpg"><img src="http://media.cassmodiah.de/2009/01/haarteufel-300x201.jpg" alt="haarteufel" title="haarteufel" width="300" height="201" class="alignnone size-medium wp-image-401" /></a></p>
<p>Gefunden von Christian in Hamburg! </p>
<p>So long and thanks for all the fish :-)<br />
שִׁמְעוֹן</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2009-01-03/freebsd-the-power-to/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>[LXDE] auf youtube</title>
		<link>http://cassmodiah.de/2008-11-13/lxde-auf-youtube/</link>
		<comments>http://cassmodiah.de/2008-11-13/lxde-auf-youtube/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 21:08:55 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[LXDE]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[proprietär]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=302</guid>
		<description><![CDATA[שָׁלוֹם Deutsch: Kurzvorstellung des Dateimanagers PCMANFM 03:47min Kurzvorstellung des Bildbetrachters GPicView 01:47min Kurzvorstellung des Taskmanagers LXTask 01:57min Kurzvorstellung des Desktops LXDE 06:54min English: short discripton of the file browser PCMANFM 03:47min short discripton of the fimage viewer GPicView 01:47min short discripton of the task manager LXTask 01:57min short discripton of the desktop environment LXDE 06:54min [...]]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p>Deutsch:<br />
<a href="http://www.youtube.com/watch?v=7mw0OzZ9BmY">Kurzvorstellung des Dateimanagers PCMANFM</a> 03:47min<br />
<a href="http://www.youtube.com/watch?v=mfLnlwebMIM">Kurzvorstellung des Bildbetrachters GPicView</a> 01:47min<br />
<a href="http://www.youtube.com/watch?v=AZdcszyi7Rs">Kurzvorstellung des Taskmanagers LXTask</a> 01:57min<br />
<a href="http://www.youtube.com/watch?v=BM-UcQTOOkc">Kurzvorstellung des Desktops LXDE</a> 06:54min</p>
<p>English:<br />
<a href="http://www.youtube.com/watch?v=jRVoNOETS6U">short discripton of the file browser PCMANFM</a> 03:47min<br />
<a href="http://de.youtube.com/watch?v=ACd3kN3mq_o">short discripton of the fimage viewer GPicView</a> 01:47min<br />
<a href="http://www.youtube.com/watch?v=Ruk6rjAIyRQ">short discripton of the task manager LXTask</a> 01:57min<br />
<a href="http://www.youtube.com/watch?v=Zvel6FB97j0">short discripton of the desktop environment LXDE</a> 06:54min</p>
<p>Videos von <a href="http://www.maces-net.de">Maces</a> </p>
<p>Die Links zu den englischen Videos habe ich im <a href="https://fedoraproject.org/wiki/Features/LXDE">Wiki</a> eingepflegt. </p>
<p>So long and thanks for all the fish :-)<br />
שִׁמְעוֹן</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-11-13/lxde-auf-youtube/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Das GTK+/GNOME-Entwicklerhandbuch</title>
		<link>http://cassmodiah.de/2008-10-20/das-gtkgnome-entwicklerhandbuch/</link>
		<comments>http://cassmodiah.de/2008-10-20/das-gtkgnome-entwicklerhandbuch/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 03:12:55 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Linux & Open Source]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[Buch]]></category>
		<category><![CDATA[Desktop]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=198</guid>
		<description><![CDATA[שָׁלוֹם Dauert nicht mehr lange, dann darf wieder gewünscht werden. Wahlweise kann man sich diesen Wunsch auch selber erfüllen (und das bei Bedarf auch früher) :-) So long and thanks for all the fish :-) שִׁמְעוֹן]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p>Dauert nicht mehr lange, dann darf wieder gewünscht werden.<br />
<a href="http://media.cassmodiah.de/2008/10/41-hs1qfyzl_ss500_.jpg"><img src="http://media.cassmodiah.de/2008/10/41-hs1qfyzl_ss500_-300x300.jpg" alt="" title="Das GTK+/GNOME-Entwicklerhandbuch" width="300" height="300" class="alignnone size-medium wp-image-252" /></a><br />
Wahlweise kann man sich diesen Wunsch auch selber erfüllen (und das bei Bedarf auch früher) :-)</p>
<p>So long and thanks for all the fish :-)<br />
שִׁמְעוֹן</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-10-20/das-gtkgnome-entwicklerhandbuch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baphomets Fluch &#8211; die Rückkehr der Tempelritter</title>
		<link>http://cassmodiah.de/2008-09-29/baphomets-fluch-die-ruckkehr-der-tempelritter/</link>
		<comments>http://cassmodiah.de/2008-09-29/baphomets-fluch-die-ruckkehr-der-tempelritter/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 13:30:21 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Kult]]></category>
		<category><![CDATA[proprietär]]></category>
		<category><![CDATA[Spiele]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=170</guid>
		<description><![CDATA[שָׁלוֹם Die Fan- und Hobbyentwicklergemeinde mindFactory bastelt seit 2001 mit dem &#8220;Segen&#8221; von Revolution Software an einem (inoffiziellem) Nachfolger von &#8220;Baphomets Fluch 2&#8243;. Die ersten beiden Teile des Point&#38;Click-Adventure gehören mittlerweile zu den &#8220;Muss man gespielt haben&#8221;-Klassikern. Broken Sword 2.5 &#8211; The Return Of The Templars große Pluspunkte: - Originalstimmen und professionelle Synchronsprecher - schöne [...]]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p>Die Fan- und Hobbyentwicklergemeinde mindFactory bastelt seit 2001 mit dem &#8220;Segen&#8221; von Revolution Software an einem (inoffiziellem) Nachfolger von &#8220;Baphomets Fluch 2&#8243;. Die ersten beiden Teile des Point&amp;Click-Adventure gehören mittlerweile zu den &#8220;Muss man gespielt haben&#8221;-Klassikern.</p>
<p><a href="http://www.brokensword25.com">Broken Sword 2.5 &#8211; The Return Of The Templars</a><br />
große Pluspunkte:<br />
- Originalstimmen und professionelle Synchronsprecher<br />
- schöne Grafik<br />
- satter Sound<br />
- knifflige und fordernde Rätsel<br />
- lange Spielzeit</p>
<p><a href="http://media.cassmodiah.de/2008/09/shot002.jpg"><img class="alignnone size-thumbnail wp-image-188" title="Broken Sword 2.5 - Screenshot 01" src="http://media.cassmodiah.de/2008/09/shot002-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://media.cassmodiah.de/2008/09/shot022.jpg"><img class="alignnone size-thumbnail wp-image-189" title="Broken Sword 2.5 - Screenshot 02" src="http://media.cassmodiah.de/2008/09/shot022-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://media.cassmodiah.de/2008/09/shot025.jpg"><img class="alignnone size-thumbnail wp-image-190" title="Broken Sword 2.5 - Screenshot 03" src="http://media.cassmodiah.de/2008/09/shot025-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://media.cassmodiah.de/2008/09/shot033.jpg"><img class="alignnone size-thumbnail wp-image-191" title="Broken Sword 2.5 - Screenshot 04" src="http://media.cassmodiah.de/2008/09/shot033-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://media.cassmodiah.de/2008/09/shot017.jpg"><img class="alignnone size-thumbnail wp-image-194" title="Broken Sword 2.5 - Screenshot 05" src="http://media.cassmodiah.de/2008/09/shot017-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://media.cassmodiah.de/2008/09/shot028.jpg"><img class="alignnone size-thumbnail wp-image-195" title="Broken Sword 2.5 - Screenshot 06" src="http://media.cassmodiah.de/2008/09/shot028-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>Gut gemacht mindFactory. Mit wine auch unter Linux spielbar<br />
Kann nicht schreiben, muss (weiter) spielen&#8230;..</p>
<p>So long and thanks for all the fish :-)<br />
שִׁמְעוֹן</p>
<p>(Die Screenshots von der Projekt-Homepage)</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-09-29/baphomets-fluch-die-ruckkehr-der-tempelritter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[FUN] hasthelargehadroncolliderdestroyedtheworldyet</title>
		<link>http://cassmodiah.de/2008-09-11/fun-hasthelargehadroncolliderdestroyedtheworldyet/</link>
		<comments>http://cassmodiah.de/2008-09-11/fun-hasthelargehadroncolliderdestroyedtheworldyet/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 16:55:49 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[lol]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=157</guid>
		<description><![CDATA[http://hasthelargehadroncolliderdestroyedtheworldyet.com &#60;script type=&#34;text/javascript&#34;&#62; if (!(typeof worldHasEnded == &#34;undefined&#34;)) { document.write(&#34;YUP.&#34;); } else { document.write(&#34;NOPE.&#34;); } &#60;/script&#62; [sourcecode]]]></description>
			<content:encoded><![CDATA[<p><a href="http://hasthelargehadroncolliderdestroyedtheworldyet.com">http://hasthelargehadroncolliderdestroyedtheworldyet.com</a></p>
<pre class="brush: jscript">
&lt;script type=&quot;text/javascript&quot;&gt;
if (!(typeof worldHasEnded == &quot;undefined&quot;)) {
document.write(&quot;YUP.&quot;);
} else {
document.write(&quot;NOPE.&quot;);
}
&lt;/script&gt;
</pre>
<p>[sourcecode]<br />
<-- if the lhc actually destroys the earth &#038; this page isn't yet updated<br />
please email mike@frantic.org to receive a full refund --><br />
[/sourcecode]</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-09-11/fun-hasthelargehadroncolliderdestroyedtheworldyet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anatomy Of A Debian Package</title>
		<link>http://cassmodiah.de/2008-09-11/anatomy-of-a-debian-package/</link>
		<comments>http://cassmodiah.de/2008-09-11/anatomy-of-a-debian-package/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 16:47:43 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Linux & Open Source]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[packaging]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=155</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/82mEKd993PA" frameborder="0" allowFullScreen="true"> </iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-09-11/anatomy-of-a-debian-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[XCHAT] simple substitution script</title>
		<link>http://cassmodiah.de/2008-09-09/xchat-simple-substitution-script/</link>
		<comments>http://cassmodiah.de/2008-09-09/xchat-simple-substitution-script/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 19:12:50 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Konfiguration]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=141</guid>
		<description><![CDATA[שָׁלוֹם /home/cassmodiah/.xchat/sss.py /* * ---------------------------------------------------------------------------- * &#34;THE BEER-WARE LICENSE&#34; (Revision 42): * &#60;bjoern.hiller@gmail.com&#62; wrote this file. As long as you retain this notice you * can do whatever you want with this stuff. If we meet some day, and you think * this stuff is worth it, you can buy me a beer in return [...]]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p>/home/cassmodiah/.xchat/sss.py</p>
<pre class="brush: python">
/*
* ----------------------------------------------------------------------------
* &quot;THE BEER-WARE LICENSE&quot; (Revision 42):
* &lt;bjoern.hiller@gmail.com&gt; wrote this file. As long as you retain this notice you
* can do whatever you want with this stuff. If we meet some day, and you think
* this stuff is worth it, you can buy me a beer in return Björn Benjamin Hiller
* ----------------------------------------------------------------------------
*/
# -*- encoding: utf-8 -*-
__module_name__ = &#039;sss&#039;
__module_version__ = &#039;1.0&#039;
__module_description__ = &#039;simple substitution script&#039;

import re, xchat

own_hook = False

def your_msg_cb(word, word_eol, userdata):
  global own_hook
  if own_hook:
    own_hook = False
    return xchat.EAT_NONE
  else:
    text = word_eol[0].replace(&#039;ä&#039;, &#039;ae&#039;).replace(&#039;Ä&#039;, &#039;Ae&#039;)
    text = text.replace(&#039;ö&#039;, &#039;oe&#039;).replace(&#039;Ö&#039;, &#039;Oe&#039;)
    text = text.replace(&#039;ü&#039;, &#039;ue&#039;).replace(&#039;Ü&#039;, &#039;Ue&#039;)
    text = text.replace(&#039;ß&#039;, &#039;sz&#039;)
    own_hook = True
    xchat.command(&#039;SAY %s&#039; % text)
    return xchat.EAT_XCHAT

xchat.hook_command(&#039;&#039;, your_msg_cb)
</pre>
<p>So long<br />
שִׁמְעוֹן</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-09-09/xchat-simple-substitution-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[FADEMEA] Buttons available</title>
		<link>http://cassmodiah.de/2008-09-09/fademea-buttons-available/</link>
		<comments>http://cassmodiah.de/2008-09-09/fademea-buttons-available/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 16:51:42 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[planet.fedoraproject.org]]></category>
		<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=120</guid>
		<description><![CDATA[שָׁלוֹם Nicu Buculei hat für die FAD-EMEA Buttons gebastelt DANKE Nicu :-) DesignService-Request So long שִׁמְעוֹן]]></description>
			<content:encoded><![CDATA[<p>שָׁלוֹם</p>
<p><a href="https://fedoraproject.org/wiki/NicuBuculei">Nicu Buculei</a> hat für die FAD-EMEA Buttons gebastelt<br />
<a href="http://media.cassmodiah.de/2008/09/going-to-fad-emea.png"><img class="size-full wp-image-123" title="going-to-fad-emea" src="http://media.cassmodiah.de/2008/09/going-to-fad-emea.png" alt="I am going to FAD-EMEA" width="200" height="100" /></a> <a href="http://media.cassmodiah.de/2008/09/going-not-to-fad-emea.png"><img class="size-full wp-image-124" title="going-not-to-fad-emea" src="http://media.cassmodiah.de/2008/09/going-not-to-fad-emea.png" alt="I am going not to FAD-EMEA" width="200" height="100" /></a></p>
<p>DANKE Nicu :-)</p>
<p><a href="https://fedoraproject.org/wiki/Artwork/DesignService#.27I.27m_.28not.29_going_to_FADEMEA.27-Bottons_for_Blogs">DesignService-Request</a></p>
<p>So long<br />
שִׁמְעוֹן</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-09-09/fademea-buttons-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fundstück: Fedora ASCII</title>
		<link>http://cassmodiah.de/2008-08-05/fundstuck-fedora-ascii/</link>
		<comments>http://cassmodiah.de/2008-08-05/fundstuck-fedora-ascii/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 18:38:10 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[ASCII]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=39</guid>
		<description><![CDATA[MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWNXK0OkkxxxxxxkkO0KXNWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWN0koc:,&#039;.................,;cox0NWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWN0dc,..............................,cokXWMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMXxl,......................................&#039;cxXWMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMWKd:&#039;............................................&#039;:dOWMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMNk:&#039;..............................&#039;;cldxxxxddlc;&#039;......:kNMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMWx;.............................&#039;;oOXWMMMMMMMMMMMNKkl,.....;xXMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMNkc............................&#039;cxKWMMMMMMMMMMMMMMMMMMMN0d:....;kNMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMW0:.............................l0WMMMMMMMMMMMMMMMMMMMMMMMMMNo&#039;....;OWMMMMMMMMMMMMM MMMMMMMMMMMMMMMMWx&#039;.............................oNMMMMMMMMMMMWNXXNWMMMMMMMMMMMKl,....,dNMMMMMMMMMMMM MMMMMMMMMMMMMMMWx&#039;............................&#039;dNMMMMMMMMMXko:,,&#039;,;cdONMMMMMMW0lc,.....lNMMMMMMMMMMM MMMMMMMMMMMMMMXo&#039;.............................dWMMMMMMMW0l,...........;oOXXXKOolll,.....oNMMMMMMMMMM MMMMMMMMMMMMMNl..............................cXMMMMMMMMO&#039;...............&#039;cllllllllc&#039;.....:XMMMMMMMMM MMMMMMMMMMMMNo..............................&#039;xMMMMMMMMN:.................;lllllllll&#039;......oWMMMMMMMM MMMMMMMMMMMMk...............................,OMMMMMMMMO,.................&#039;cllllllll,......&#039;kWMMMMMMM MMMMMMMMMMMN:...............................,0MMMMMMMMO,.................,lllllllll,.......,0MMMMMMM MMMMMMMMMMMO................................,0MMMMMMMMO&#039;.................:llllllllc&#039;........oMMMMMMM MMMMMMMMMMMd................................,0MMMMMMMMO&#039;...............&#039;:lllllllll;.........cNMMMMMM MMMMMMMMMMWc................................,0MMMMMMMMO,............&#039;,:clllllllll:&#039;.........,0MMMMMM MMMMMMMMMMX:................&#039;,,;;:::lxkOOOOOONMMMMMMMMN0OOOOOkdl::ccllllllllllll;............xMMMMMM MMMMMMMMMMK;.............&#039;;:clllllokNMMMMMMMMMMMMMMMMMMMMMMMMMWXxlllllllllllll:,.............xWMMMMM MMMMMMMMMMK;..........&#039;;cllllllllldNMMMMMMMMMMMMMMMMMMMMMMMMMMMWKdllllllllllc;&#039;..............xMMMMMM MMMMMMMMMMK;........&#039;;clllllllllllo0WMMMMMMMMMMMMMMMMMMMMMMMMMMNOollllllc:;,................,OMMMMMM MMMMMMMMMMK;.......,cllllllllllllcccdO0KKKKKXWMMMMMMMMNKKKKKK0kocc:::;,,&#039;...................:XMMMMMM MMMMMMMMMMK;......;clllllllllc:,&#039;&#039;.....&#039;&#039;&#039;&#039;&#039;;KMMMMMMMMO,&#039;.&#039;&#039;................................oWMMMMMM MMMMMMMMMMK;.....,lllllllllc;&#039;..............,0MMMMMMMMO&#039;...................................&#039;kMMMMMMM MMMMMMMMMMK;....&#039;cllllllllc&#039;................,0MMMMMMMMO,...................................oNMMMMMMM MMMMMMMMMMK;....,lllllllll,.................,0MMMMMMMMO&#039;..................................cNMMMMMMMM MMMMMMMMMMK;....,llllllllc&#039;.................,0MMMMMMMMO&#039;.................................,0MMMMMMMMM MMMMMMMMMMK;....,lllllllll,.................:XMMMMMMMWx&#039;................................:KMMMMMMMMMM MMMMMMMMMMK;....&#039;cllllllll:................&#039;kMMMMMMMMXc................................:XMMMMMMMMMMM MMMMMMMMMMK;.....;lllldkO00o,.............,xWMMMMMMMMk................................cKMMMMMMMMMMMM MMMMMMMMMMK;.....&#039;:llkNWMMMWXx:&#039;.......&#039;:xXWMMMMMMMMK:..............................&#039;dNMMMMMMMMMMMMM MMMMMMMMMMK;......&#039;;oXMMMMMMMMWX0Okkkk0XWMMMMMMMMMWx,.............................&#039;oKWMMMMMMMMMMMMMM MMMMMMMMMMK;........,xWMMMMMMMMMMMMMMMMMMMMMMMMMW0:.............................&#039;c0MMMMMMMMMMMMMMMMM MMMMMMMMMMK;.........&#039;oKWMMMMMMMMMMMMMMMMMMMMMWKo&#039;............................,l0WMMMMMMMMMMMMMMMMMM MMMMMMMMMMK;...........&#039;cxKWMMMMMMMMMMMMMMMWKxc&#039;............................,oKWMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMK;..............&#039;;loxkO00K00Okxdl:&#039;...........................&#039;cdONWMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMK;........................................................&#039;:okXWMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMWl...................................................,:lxOXWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMNkollllllllllllllllllllllllllllllllllllllloooddxkO0XNWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM Gefunden im fedora ssh system]]></description>
			<content:encoded><![CDATA[<pre class="brush: html">
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWNXK0OkkxxxxxxkkO0KXNWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWN0koc:,&#039;.................,;cox0NWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWN0dc,..............................,cokXWMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMXxl,......................................&#039;cxXWMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMWKd:&#039;............................................&#039;:dOWMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMNk:&#039;..............................&#039;;cldxxxxddlc;&#039;......:kNMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMWx;.............................&#039;;oOXWMMMMMMMMMMMNKkl,.....;xXMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMNkc............................&#039;cxKWMMMMMMMMMMMMMMMMMMMN0d:....;kNMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMW0:.............................l0WMMMMMMMMMMMMMMMMMMMMMMMMMNo&#039;....;OWMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMWx&#039;.............................oNMMMMMMMMMMMWNXXNWMMMMMMMMMMMKl,....,dNMMMMMMMMMMMM
MMMMMMMMMMMMMMMWx&#039;............................&#039;dNMMMMMMMMMXko:,,&#039;,;cdONMMMMMMW0lc,.....lNMMMMMMMMMMM
MMMMMMMMMMMMMMXo&#039;.............................dWMMMMMMMW0l,...........;oOXXXKOolll,.....oNMMMMMMMMMM
MMMMMMMMMMMMMNl..............................cXMMMMMMMMO&#039;...............&#039;cllllllllc&#039;.....:XMMMMMMMMM
MMMMMMMMMMMMNo..............................&#039;xMMMMMMMMN:.................;lllllllll&#039;......oWMMMMMMMM
MMMMMMMMMMMMk...............................,OMMMMMMMMO,.................&#039;cllllllll,......&#039;kWMMMMMMM
MMMMMMMMMMMN:...............................,0MMMMMMMMO,.................,lllllllll,.......,0MMMMMMM
MMMMMMMMMMMO................................,0MMMMMMMMO&#039;.................:llllllllc&#039;........oMMMMMMM
MMMMMMMMMMMd................................,0MMMMMMMMO&#039;...............&#039;:lllllllll;.........cNMMMMMM
MMMMMMMMMMWc................................,0MMMMMMMMO,............&#039;,:clllllllll:&#039;.........,0MMMMMM
MMMMMMMMMMX:................&#039;,,;;:::lxkOOOOOONMMMMMMMMN0OOOOOkdl::ccllllllllllll;............xMMMMMM
MMMMMMMMMMK;.............&#039;;:clllllokNMMMMMMMMMMMMMMMMMMMMMMMMMWXxlllllllllllll:,.............xWMMMMM
MMMMMMMMMMK;..........&#039;;cllllllllldNMMMMMMMMMMMMMMMMMMMMMMMMMMMWKdllllllllllc;&#039;..............xMMMMMM
MMMMMMMMMMK;........&#039;;clllllllllllo0WMMMMMMMMMMMMMMMMMMMMMMMMMMNOollllllc:;,................,OMMMMMM
MMMMMMMMMMK;.......,cllllllllllllcccdO0KKKKKXWMMMMMMMMNKKKKKK0kocc:::;,,&#039;...................:XMMMMMM
MMMMMMMMMMK;......;clllllllllc:,&#039;&#039;.....&#039;&#039;&#039;&#039;&#039;;KMMMMMMMMO,&#039;.&#039;&#039;................................oWMMMMMM
MMMMMMMMMMK;.....,lllllllllc;&#039;..............,0MMMMMMMMO&#039;...................................&#039;kMMMMMMM
MMMMMMMMMMK;....&#039;cllllllllc&#039;................,0MMMMMMMMO,...................................oNMMMMMMM
MMMMMMMMMMK;....,lllllllll,.................,0MMMMMMMMO&#039;..................................cNMMMMMMMM
MMMMMMMMMMK;....,llllllllc&#039;.................,0MMMMMMMMO&#039;.................................,0MMMMMMMMM
MMMMMMMMMMK;....,lllllllll,.................:XMMMMMMMWx&#039;................................:KMMMMMMMMMM
MMMMMMMMMMK;....&#039;cllllllll:................&#039;kMMMMMMMMXc................................:XMMMMMMMMMMM
MMMMMMMMMMK;.....;lllldkO00o,.............,xWMMMMMMMMk................................cKMMMMMMMMMMMM
MMMMMMMMMMK;.....&#039;:llkNWMMMWXx:&#039;.......&#039;:xXWMMMMMMMMK:..............................&#039;dNMMMMMMMMMMMMM
MMMMMMMMMMK;......&#039;;oXMMMMMMMMWX0Okkkk0XWMMMMMMMMMWx,.............................&#039;oKWMMMMMMMMMMMMMM
MMMMMMMMMMK;........,xWMMMMMMMMMMMMMMMMMMMMMMMMMW0:.............................&#039;c0MMMMMMMMMMMMMMMMM
MMMMMMMMMMK;.........&#039;oKWMMMMMMMMMMMMMMMMMMMMMWKo&#039;............................,l0WMMMMMMMMMMMMMMMMMM
MMMMMMMMMMK;...........&#039;cxKWMMMMMMMMMMMMMMMWKxc&#039;............................,oKWMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMK;..............&#039;;loxkO00K00Okxdl:&#039;...........................&#039;cdONWMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMK;........................................................&#039;:okXWMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMWl...................................................,:lxOXWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMNkollllllllllllllllllllllllllllllllllllllloooddxkO0XNWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
</pre>
<p>Gefunden im fedora ssh system</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-08-05/fundstuck-fedora-ascii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fundstück: Die Debian Deppen</title>
		<link>http://cassmodiah.de/2008-07-17/fundstuck-die-debian-deppen/</link>
		<comments>http://cassmodiah.de/2008-07-17/fundstuck-die-debian-deppen/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 19:38:41 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[lol]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=35</guid>
		<description><![CDATA[Trolle gibt es überall, leider! :-/]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-36" title="Debian Deppen" src="http://media.cassmodiah.de/2008/07/debiandeppenmailinglist.png" alt="" width="496" height="79" /><br />
Trolle gibt es überall, leider! :-/</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-07-17/fundstuck-die-debian-deppen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greg Kroah Hartman on the Linux Kernel</title>
		<link>http://cassmodiah.de/2008-06-28/greg-kroah-hartman-on-the-linux-kernel/</link>
		<comments>http://cassmodiah.de/2008-06-28/greg-kroah-hartman-on-the-linux-kernel/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 11:38:17 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Linux & Open Source]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Kernel]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=31</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/L2SED6sewRw" frameborder="0" allowFullScreen="true"> </iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-06-28/greg-kroah-hartman-on-the-linux-kernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Die Mathematik der rosa Elefanten</title>
		<link>http://cassmodiah.de/2008-06-17/die-mathematik-der-rosa-elefanten/</link>
		<comments>http://cassmodiah.de/2008-06-17/die-mathematik-der-rosa-elefanten/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 15:21:04 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Mathematik]]></category>
		<category><![CDATA[Multimedia]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=27</guid>
		<description><![CDATA[y^2+z^3-z^4-x^2*z^2-a*2a = 0; a=0,06 Gefunden bei: Zeit Online]]></description>
			<content:encoded><![CDATA[<p><strong>y^2+z^3-z^4-x^2*z^2-a*2a = 0; a=0,06</strong><br />
<img class="alignnone size-full wp-image-26" title="Mathematikelefant" src="http://media.cassmodiah.de/2008/06/mathe-elefant.png" alt="" /><br />
Gefunden bei: <a href="http://www.zeit.de/online/2008/23/bg-matheskulpturen">Zeit Online</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-06-17/die-mathematik-der-rosa-elefanten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GRUB: All I offer is the truth, nothing more</title>
		<link>http://cassmodiah.de/2008-06-16/gruball-i-offer-is-the-truth-nothing-mor/</link>
		<comments>http://cassmodiah.de/2008-06-16/gruball-i-offer-is-the-truth-nothing-mor/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 17:42:52 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[lol]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=21</guid>
		<description><![CDATA[All I offer is the truth, nothing more “This is your last chance. After this, there is no turning back.” He held something in each hand, and revealed what was in the left. “If you take the blue pill, the story ends. You wake up in your bed and believe whatever you want to believe.” [...]]]></description>
			<content:encoded><![CDATA[<p><strong>All I offer is the truth, nothing more</strong><br />
<a href="http://media.cassmodiah.de/2008/06/grub.png"><img class="alignnone size-medium wp-image-25" title="grub linux windows" src="http://media.cassmodiah.de/2008/06/grub-300x225.png" alt="" width="300" height="225" /></a><br />
“This is your last chance. After this, there is no turning back.” He held something in each hand, and revealed what was in the left. “If you take the blue pill, the story ends. You wake up in your bed and believe whatever you want to believe.” He opened his right hand. “But if you take the red pill, and you stay in wonderland. And I show you just how deep the rabbit hole goes.”</p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-06-16/gruball-i-offer-is-the-truth-nothing-mor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Icon War</title>
		<link>http://cassmodiah.de/2008-06-07/the-icon-war/</link>
		<comments>http://cassmodiah.de/2008-06-07/the-icon-war/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 19:59:24 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[lol]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=17</guid>
		<description><![CDATA[Gefunden bei xs4all]]></description>
			<content:encoded><![CDATA[<p><a href='http://cassmodiah.de/icon-war'><img src="http://media.cassmodiah.de/2008/06/iconwar.jpg" alt="The Icon War" title="iconwar" /></a></p>
<p>Gefunden bei <a href="http://www.xs4all.nl/">xs4all</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-06-07/the-icon-war/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geek vs Gang</title>
		<link>http://cassmodiah.de/2008-06-03/geek-vs-gang/</link>
		<comments>http://cassmodiah.de/2008-06-03/geek-vs-gang/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 11:35:50 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[lol]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/2008/06/04/tce-tasche-in-th00rys-bude-2/</guid>
		<description><![CDATA[Gefunden bei Jonathan Carter]]></description>
			<content:encoded><![CDATA[<p><a href='http://media.cassmodiah.de/2008/06/la_gang_signs.jpg'><img src="http://media.cassmodiah.de/2008/06/la_gang_signs-203x300.jpg" alt="" title="LA Gang Signs" width="203" height="300" class="alignnone size-medium wp-image-14" /></a><a href='http://media.cassmodiah.de/2008/06/geek_gang_signs.jpg'><img src="http://media.cassmodiah.de/2008/06/geek_gang_signs-203x300.jpg" alt="" title="Geek Gang Signs" width="203" height="300" class="alignnone size-medium wp-image-15" /></a></p>
<p>Gefunden bei <a href="http://jonathancarter.co.za/">Jonathan Carter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-06-03/geek-vs-gang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TC:E Tasche in Th00rys Bude</title>
		<link>http://cassmodiah.de/2008-06-01/tce-tasche-in-th00rys-bude/</link>
		<comments>http://cassmodiah.de/2008-06-01/tce-tasche-in-th00rys-bude/#comments</comments>
		<pubDate>Sat, 31 May 2008 22:05:13 +0000</pubDate>
		<dc:creator>cassmodiah</dc:creator>
				<category><![CDATA[Fundstücke]]></category>
		<category><![CDATA[Linux & Open Source]]></category>
		<category><![CDATA[Freunde]]></category>
		<category><![CDATA[Spiele]]></category>
		<category><![CDATA[SuL]]></category>

		<guid isPermaLink="false">http://cassmodiah.de/?p=7</guid>
		<description><![CDATA[TC:E@SuL &#160;&#160;&#160;Webseite &#160;&#160;&#160;Th00ry]]></description>
			<content:encoded><![CDATA[<p><a href='http://media.cassmodiah.de/2008/06/tce-tasche-raum.jpg' alt="TCE Tasche" title="TCE Tasche"><img src='http://media.cassmodiah.de/2008/06/tce-tasche-bild.jpg' alt="TCE Tasche" title="TCE Tasche"></a></p>
<p><a href="http://wiki.spielen-unter-linux.de/index.php/True_Combat:_Elite">TC:E@SuL</a> &nbsp;&nbsp;&nbsp;<a href="http://www.truecombatelite.us/">Webseite</a> &nbsp;&nbsp;&nbsp;<a href="http://gg-com.de/">Th00ry</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cassmodiah.de/2008-06-01/tce-tasche-in-th00rys-bude/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

