<?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>Fusselwurm &#187; Uncategorized</title>
	<atom:link href="http://www.fusselwurm.de/wp/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fusselwurm.de/wp</link>
	<description>geek licence revoked</description>
	<lastBuildDate>Tue, 13 Apr 2010 10:09:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>compiling Critterding</title>
		<link>http://www.fusselwurm.de/wp/2010/01/12/compiling-critterding/</link>
		<comments>http://www.fusselwurm.de/wp/2010/01/12/compiling-critterding/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 10:29:03 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[critterding]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[src]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/?p=316</guid>
		<description><![CDATA[wanted to install critterding, but there doesnt seem to be an ubuntu package. had to install some packages: sudo apt-get install autoconf libtool g++ libfreetype6-dev libsdl-dev downloaded sources, went to source directory: touch aclocal.m4 # necessary? autoreconf -fi ./configure make now execute: src/critterding yay!]]></description>
			<content:encoded><![CDATA[<p>wanted to install <a href="http://critterding.sourceforge.net/">critterding</a>, but there doesnt seem to be an ubuntu package.</p>
<p>had to install some packages:</p>
<p><code>sudo apt-get install autoconf libtool g++ libfreetype6-dev libsdl-dev</code></p>
<p>downloaded sources, went to source directory:</p>
<p><code><br />
touch aclocal.m4 # necessary?<br />
autoreconf -fi<br />
./configure<br />
make<br />
</code></p>
<p>now execute:</p>
<p><code>src/critterding</code></p>
<p>yay!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2010/01/12/compiling-critterding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ECMAScript5 &#8230; möp.</title>
		<link>http://www.fusselwurm.de/wp/2009/12/24/ecmascript5-mop/</link>
		<comments>http://www.fusselwurm.de/wp/2009/12/24/ecmascript5-mop/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 21:28:21 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ecmascript]]></category>
		<category><![CDATA[highlighting]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/?p=290</guid>
		<description><![CDATA[Dadumdidum&#8230; ECMAScript5 (&#8220;JavaScript&#8221;) gefällt mir. Und weil&#8217;s so schön ist, implementier ich schon mal die neuen Arraymethoden&#8230; bspw.: if (typeof Array.prototype.indexOf === 'undefined') { /** * 15.4.4.14 * NOTE the second parameter fromIndex is not explicitly stated so that the * method's length property becomes 1 * * @param searchElement array element to be searched [...]]]></description>
			<content:encoded><![CDATA[<p>Dadumdidum&#8230; <a href="http://www.ecma-international.org/publications/standards/Ecma-262.htm">ECMAScript5</a> (&#8220;JavaScript&#8221;) gefällt mir. Und weil&#8217;s so schön ist, implementier ich schon mal die neuen Arraymethoden&#8230; bspw.:</p>
<pre class="brush: jscript;">
if (typeof Array.prototype.indexOf === 'undefined') {

	/**
	* 15.4.4.14
	* NOTE the second parameter fromIndex is not explicitly stated so that the
	*      method's length property becomes 1
	*
	* @param searchElement array element to be searched for
	* @param fromIndex (optional, integer)
	*/
	Array.prototype.indexOf = function (f) {
		var l = this.length,
			i = arguments[1] || 0;

		i += (i &lt; 0) ? l : 0;

		for (i = Math.max(i, 0); i &lt; l; i += 1) {
			if (this[i] === f) {
				return i;
			}
		}
		return -1;
	};
}
</pre>
<p>&#8230;außerdem gefällt mir dieses Syntax-Highlighting hier :D<br />
to be extended&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2009/12/24/ecmascript5-mop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>direct speech highlighting for reading books</title>
		<link>http://www.fusselwurm.de/wp/2009/05/21/direct-speech-highlighting-for-reading-books/</link>
		<comments>http://www.fusselwurm.de/wp/2009/05/21/direct-speech-highlighting-for-reading-books/#comments</comments>
		<pubDate>Thu, 21 May 2009 13:14:10 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[highlighting]]></category>
		<category><![CDATA[kate]]></category>
		<category><![CDATA[katepart]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[syntax]]></category>
		<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/?p=214</guid>
		<description><![CDATA[I&#8217;m reading a book, and it&#8217;s, well, a plain text file. The lack of structure bothers me. I&#8217;m using Kate, and Kate offers a simple way of adding syntax highlighting. So I wrote a very small highlighting definition for Kate, which allows me to view quotes in a slightly different color (provided that actual quotation [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m reading a book, and it&#8217;s, well, a plain text file. The lack of structure bothers me.<br />
I&#8217;m using Kate, and Kate offers <a href="http://kate-editor.org/article/writing_a_kate_highlighting_xml_file">a simple way</a> of adding syntax highlighting.<br />
So I wrote a <a href="http://www.fusselwurm.de/wp/wp-content/uploads/2009/05/ebook_txt.xml">very small highlighting definition for Kate</a>, which allows me to view quotes in a slightly different color (provided that actual quotation marks are used, not apostrophes). Yes, it does nested quotes.<br />
I may improve it sometime, but for now I&#8217;m happy.</p>
<p>Usage: </p>
<p>copy the <a href="http://www.fusselwurm.de/wp/wp-content/uploads/2009/05/ebook_txt.xml">file</a> to ~/.kde/share/apps/katepart/syntax/<br />
In Kate, select Extras->Highlighting->Other->eBook txt</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2009/05/21/direct-speech-highlighting-for-reading-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kultur</title>
		<link>http://www.fusselwurm.de/wp/2009/03/02/kultur/</link>
		<comments>http://www.fusselwurm.de/wp/2009/03/02/kultur/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 17:47:34 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[!Kultur]]></category>
		<category><![CDATA[Banause]]></category>
		<category><![CDATA[Musik]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/2009/03/02/kultur/</guid>
		<description><![CDATA[RL-Dialog vor fünfzehn Minuten&#8230; Moritz: wasn das fürn Soundtrack? Moritz: Operation Flashpoint 2? Moritz: Gothic3? Jakob: Bilder einer Ausstellung...]]></description>
			<content:encoded><![CDATA[<p>RL-Dialog vor fünfzehn Minuten&#8230;<br />
<code><br />
Moritz: wasn das fürn Soundtrack?<br />
Moritz: Operation Flashpoint 2?<br />
Moritz: Gothic3?<br />
Jakob: Bilder einer Ausstellung...<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2009/03/02/kultur/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Interessante Grenzführung&#8221; &#8230;</title>
		<link>http://www.fusselwurm.de/wp/2008/09/02/interessante-grenzfuhrung/</link>
		<comments>http://www.fusselwurm.de/wp/2008/09/02/interessante-grenzfuhrung/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 20:30:11 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/?p=116</guid>
		<description><![CDATA[&#8230;meinte Jakob eben zu mir. Recht hat er.]]></description>
			<content:encoded><![CDATA[<p>&#8230;meinte Jakob eben zu mir. Recht hat er.<br />
<a href="http://www.google.com/googlebooks/chrome/big_12.html"><img src="http://www.fusselwurm.de/wp/wp-content/uploads/2008/09/googlemaps.png" alt="map missing some borders in Europe" title="Google Chrome Comic" class="alignnone wp-image-117" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2008/09/02/interessante-grenzfuhrung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>life</title>
		<link>http://www.fusselwurm.de/wp/2008/06/20/life/</link>
		<comments>http://www.fusselwurm.de/wp/2008/06/20/life/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 21:21:03 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/?p=97</guid>
		<description><![CDATA[what keeps you alive makes you get up each morning but the hope for things that wont ever be true ? so what should i do instead give up hope and be content with whatever i have no i say dont be cowed fight for there is life in it.]]></description>
			<content:encoded><![CDATA[<p>what keeps you alive<br />
makes you get up<br />
each morning<br />
but the hope<br />
for things<br />
that wont<br />
ever be<br />
true<br />
?<br />
so<br />
what<br />
should<br />
i do instead<br />
give up hope<br />
and be content<br />
with whatever i have<br />
no i say dont be cowed<br />
fight for there is life in it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2008/06/20/life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
