<?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>spielwiese. &#187; computer</title>
	<atom:link href="http://spielwiese.fontein.de/category/computer/feed/" rel="self" type="application/rss+xml" />
	<link>http://spielwiese.fontein.de</link>
	<description>my playground. without sand though.</description>
	<lastBuildDate>Thu, 29 Jul 2010 20:04:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>colorful gallery.</title>
		<link>http://spielwiese.fontein.de/2010/07/28/colorful-gallery/</link>
		<comments>http://spielwiese.fontein.de/2010/07/28/colorful-gallery/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 15:03:21 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[spielwiese]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2552</guid>
		<description><![CDATA[as once announced, i worked on spielwiese&#8216;s gallery system. it is now featured by a c++ backend which generates the galleries as well as the thumbnails (if they aren&#8217;t already there), both in grayscale and color! so far, the galleries are shown as before (with some exceptions, mostly in the beginning of the blog though), [...]]]></description>
			<content:encoded><![CDATA[<p>as <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2010/04/05/a-trip-to-finland-part-2-helsinki/comment-page-1/#comment-3500">once announced</a>, i worked on <i>spielwiese</i>&#8216;s gallery system. it is now featured by a c++ backend which generates the galleries as well as the thumbnails (if they aren&#8217;t already there), both in grayscale and color! so far, the galleries are shown as before (with some exceptions, mostly in the beginning of the blog though), but on every page you can find a clickable text in the footer, on the very bottom of the page, called &ldquo;change colors!&rdquo;: this toggles the thumbnails between grayscale and colors! unfortunately, this currently does not remembers the value (by setting a cookie), so if you reload the page everything will be grayscale again. but the most important part, namely the backend, is there! and maybe it will remember the state before the end of this day :)</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2010/07/28/colorful-gallery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>encrypting partitions with luks.</title>
		<link>http://spielwiese.fontein.de/2010/02/24/encrypting-partitions-with-luks/</link>
		<comments>http://spielwiese.fontein.de/2010/02/24/encrypting-partitions-with-luks/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 01:05:59 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[external hard disk]]></category>
		<category><![CDATA[hard disk encryption]]></category>
		<category><![CDATA[luks]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=2093</guid>
		<description><![CDATA[since i&#8217;m always forgetting what to do to encrypt a harddisk, and have to rely on other sites (which might go offline once), i decided to sum everything up in a post. parts can already be found here in this blog. note that the disk device name can differ from computer to computer, so i [...]]]></description>
			<content:encoded><![CDATA[<p>since i&#8217;m always forgetting what to do to encrypt a harddisk, and have to rely on other sites (which might go offline once), i decided to sum everything up in a post. parts can already be found <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2009/08/28/backups-again/">here</a> in this blog.<br />
note that the disk device name can differ from computer to computer, so i used <code>/dev/sdx</code> in this description which you have to change to the right name.</p>
<h3>creation.</h3>
<p>first, connect the disk and unmount it. then, delete all existing partitions and create a linux primary partition (or do whatever else you want):</p>
<blockquote><p><code>$ sudo fdisk /dev/sdx</code></p></blockquote>
<p>then it is recommended to clear the partition with random data:</p>
<blockquote><p><code>$ sudo dd if=/dev/urandom of=/dev/sdx1</code></p></blockquote>
<p>note that this step takes a lot of time.<br />
then, make <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/LUKS">luks</a> aware of the drive, open it with luks and format it:</p>
<blockquote><p><code>$ sudo cryptsetup --verbose --cipher "aes-cbc-essiv:sha256" --key-size 256 --verify-passphrase luksFormat /dev/sdx1<br />
$ sudo cryptsetup luksOpen /dev/sdx1 encrdisk<br />
$ sudo mke2fs -v /dev/mapper/encrdisk<br />
$ sudo cryptsetup luksClose encrdisk</code></p></blockquote>
<p>this creates an <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Ext2">ext2 file system</a>. now you should be able to unplug the drive and reconnect it, and ubuntu should ask you for a passphrase to unlock the disk. feel free to add <code>-L "label"</code> (at most 16 characters; see the man page for more details); ubuntu will try to mount the disk as /media/label then.</p>
<h3>mounting and unmounting.</h3>
<p>to mount:</p>
<blockquote><p><code>$ sudo cryptsetup luksOpen /dev/sdx1 encrdisk<br />
$ sudo mount /dev/mapper/encrdisk /mnt</code></p></blockquote>
<p>to unmount:</p>
<blockquote><p><code>$ sudo unmount /mnt<br />
$ sudo cryptsetup luksClose encrdisk</code></p></blockquote>
<p>note that for example newer ubuntu versions automatically ask for a passphrase and performs luksOpen / mount / unmount / luksClose for you.</p>
<h3>checking.</h3>
<p>basically, you just have to open the partition, run the usual file system check, and close it:</p>
<blockquote><p><code>$ sudo cryptsetup luksOpen /dev/sdx1 encrdisk<br />
$ sudo fsck -v -C -n /dev/mapper/encrdisk<br />
$ sudo cryptsetup luksClose encrdisk</code></p></blockquote>
<h3>passphrase management.</h3>
<p>note that luks has a storage of several passphrases, which can all be used to open the partition. one can add and remove phrases to/from this list.<br />
to add a passphrase:</p>
<blockquote><p><code>$ cryptsetup luksAddKey /dev/sdx1</code></p></blockquote>
<p>to remove a passphrase (you have to enter the passphrase to be removed):</p>
<blockquote><p><code>$ cryptsetup luksRemoveKey /dev/sdx1</code></p></blockquote>
<p>to remove the passphrase from a slot (useful if you forgot one of the passphrases and want to remove it):</p>
<blockquote><p><code>$ cryptsetup luksKillSlot /dev/sdx1 0</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2010/02/24/encrypting-partitions-with-luks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>worst article on operating systems ever (read by me).</title>
		<link>http://spielwiese.fontein.de/2009/10/02/worst-article-on-operating-systems-ever-read-by-me/</link>
		<comments>http://spielwiese.fontein.de/2009/10/02/worst-article-on-operating-systems-ever-read-by-me/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 07:34:00 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1851</guid>
		<description><![CDATA[a friend of mine just send me a link to this article, which compares the operating systems windows 7, osx and the linux distribution kubuntu. i must admit that it&#8217;s the worst article i ever read on such a subject, containing so many mistakes. this annoys me enough to write a blog post about the [...]]]></description>
			<content:encoded><![CDATA[<p>a friend of mine just send me a link to <a href="http://spielwiese.fontein.de/forward.php?r=http://www.focus.de/digital/computer/chip-exklusiv/tid-15712/windows-mac-os-linux-betriebssysteme-im-haertetest_aid_440818.html">this article</a>, which compares the operating systems <i>windows 7</i>, <i>osx</i> and the linux distribution <i>kubuntu</i>. i must admit that it&#8217;s the worst article i ever read on such a subject, containing so many mistakes.<br />
this annoys me enough to write a blog post about the article, trying to point out errors. all quotes are from the version retrieved on october 2nd, 08:55 in the morning (german time).</p>
<blockquote><p>
&ldquo;Microsoft sorgte im Gegensatz zu den Konkurrenten immer für einen schnellen Patch&rdquo;
</p></blockquote>
<p>in the past, there have been critical bugs in windows which have been known for more than half a year before they have been fixed. more precisely, i remember a bug which allowed to remotely shut down windows (presenting a 60 seconds or so countdown which could not be canceled, followed by an automatic shutdown) which could be triggered by sending a bad packet to a windows computer (without a firewall, which was the default configuration at that time for windows). that&#8217;s definitely not fast, and at that time there was nothing one could do against it but installing third party software (like a personal firewall).</p>
<blockquote><p>
&ldquo;Bei Mac OS X prüft – wie bei Windows 7 – ein eingebauter Update-Manager in bestimmten Zeitabschnitten auf Aktualisierungen. Unter Kubuntu muss der User selbst daran denken.&rdquo;
</p></blockquote>
<p>this is not true: ubuntu has an update manager as well, which checks regularly (every day i think?) and allows the user to install the updates. i think it can also be configured to automatically install updates. moreover, kubuntu installes updates for all installed programs (at least the ones supported by the program manager &ndash; which are usually all which a standard user uses.)</p>
<blockquote><p>
&ldquo;Gegenüber Linux haben die großen Anbieter Microsoft und Apple allerdings einen Sicherheitsnachteil: Bevor die Updates an die User gehen, durchlaufen die Bugfixes viele Qualitäts- und Kompatibilitätskontrollen. Der Vorteil der Linux-Community: Oft gibt es schon nach Stunden den ersten Patch – der kann allerdings auch das System instabil machen.&rdquo;
</p></blockquote>
<p>well, in theory. there have been cases where patches from microsoft have been broken; at the moment i&#8217;m too lazy to search for that. and having fast patches for certain (very annoying) problems is a good thing as well. and, no one is forced to install the patches right away. if one waits a few days, possible errors in the patches are usually corrected.</p>
<blockquote><p>
&ldquo;Apple und Linux gehen sogar noch einen fatalen Schritt weiter: Bei OS-XRechnern ist die Firewall von Haus aus deaktiviert, und wer unter Kubuntu geschützt sein will, muss je nach Distribution die Firewall sogar noch extra nachinstallieren.&rdquo;
</p></blockquote>
<p>apparently, the author did not notice that he is looking at a very special distribution of linux, called <i>kubuntu</i>, and not at the family of all linux distrubutions, when he wrote &ldquo;je nach Distribution&rdquo;. but more seriously, i have some doubts that the author knows what a firewall really does, what the difference between a so called <i>personal firewall</i> and a &ldquo;real&rdquo; firewall is, and why one does (not) need one (under linux, all ports are closed by default). for linux, there is usually no need to install a firewall.<br />
the conclusion of the <i>security</i> discussion,</p>
<blockquote><p>
&ldquo;Der Punktsieg geht hier knapp an Windows 7. Denn dieses ist das einzige System, das bereits heute zeigt, dass es sich im Kampf gegen Hacker einigermaßen durchsetzen kann. Wer hingegen mit OS X oder Kubuntu unterwegs ist, hat keine Firewall, keinen Virenscanner und teilweise lange Zeit ein ungepatchtes System.&rdquo;
</p></blockquote>
<p>is therefore worth to be ignored.</p>
<blockquote><p>
&ldquo;Der Nachteil von Kubuntu ist jedoch, dass es je nach Distribution rund zehn Gigabyte auf der Festplatte verbraucht.&rdquo;
</p></blockquote>
<p>first, kubuntu is a distribution, not a family of distributions. dear author, distinguishing between linux and kubuntu is not <i>that</i> hard. moreover, the full installation of kubuntu installes a <i>huge</i> amount of programs, including <i>open office</i>, a cd/dvd burning program, and lots of games, just to name a few. if you install all such programs under windows, it will surely use more than 10 gb. way more than that. so this comparism does not make sense.</p>
<blockquote><p>
&ldquo;Bei seinen Programmierern bestand ein Gigabyte aus 109 Bytes und nicht aus 230 Bytes.&rdquo;
</p></blockquote>
<p>i don&#8217;t know if this is the author&#8217;s fault, but apparently the person who put the article into the focus system did <i>not</i> compare it with the original, to make sure everything is fine. the 109 should be 10<sup>9</sup> and the 230 should be 2<sup>30</sup> &ndash; a <i>huge</i> difference.</p>
<blockquote><p>
&ldquo;Der Grund: Das Dateisystem von Snow Leopard ist optimal auf das System abgestimmt und insgesamt besser als das Windows-7-FAT-Dateisystem.&rdquo;
</p></blockquote>
<p>i seriously doubt that windows 7 is using a fat-based file system per default. standard for the last windows version (and for windows nt for a longer time now) is ntfs. the author should definitely know this.</p>
<blockquote><p>
&ldquo;Windows und OS X nehmen sich beim Kopf-an-Kopf- Rennen nicht viel: 48,22 Frames pro Sekunde (fps) schafft Windows 7, OS X 48,76 fps. Kubuntu hinkt mit nur 43,55 fps hinterher.&rdquo;
</p></blockquote>
<p>here, the author is missing an important detail: what exactly is measured? a benchmark? a game? a custom application?</p>
<blockquote><p>
&ldquo;In der Rubrik „Performance“ heißen die Gewinner damit Windows 7 und Mac OS X. Das Apple-System kann schneller Dateien kopieren, während Windows 7 schneller CSS-Websites anzeigt.&rdquo;
</p></blockquote>
<p>this is not wrong, but i seriously doubt that the file copying really influences the standard users of computers. just think. how many gigabytes you are copying each day? (and besides that, &ldquo;css-websites&rdquo; is a very funny expression&#8230;)</p>
<blockquote><p>
&ldquo;Beim Mac OS X fehlt sogar ein Programm fürs Daten-Backup. Wer hier Files sichern will, muss auf das mächtige Time Machine zurückgreifen. Damit sichert das Mac-OS das komplette System auf eine externe Festplatte.&rdquo;
</p></blockquote>
<p>i don&#8217;t get this: first, the author says that osx has no backup software. then, he says how great the included backup software is. i mean, seriously, wtf?</p>
<blockquote><p>
&ldquo;Kubuntu bietet nur ein einfaches Backup-Tool. Ein komplettes Image des Systems [...] sind damit nicht möglich.&rdquo;
</p></blockquote>
<p>i don&#8217;t know what kind of (gui) backup tools are included with kubuntu, but (almost?) every linux system ships with rsync and tar, two command line programs allowing backups. obviously these are not for the standard user, but they are included. and have been included for a long time.</p>
<blockquote><p>
&ldquo;Bei der Installation von Programmen gewinnt OS X haushoch: Einfach das gewünschte Tool in den Programmordner ziehen, fertig. Für die Deinstallation einfach den Ordner löschen – simpler geht’s nicht. Keine über die Platte verteilten DLLs, keine Registry-Einträge.&rdquo;
</p></blockquote>
<p>for the (relatively) short time i was using osx, i noticed that not all programs fall in this category. there are programs (for example, some from apple) which do install stuff at various places in the system and which cannot be installed that easily.</p>
<blockquote><p>
&ldquo;Kubuntu bietet nur wenige Standardtreiber. Speziell auf die Hardware angepasste Versionen gibt es kaum und wenn, sind sie nur von Informatikstudenten installierbar.&rdquo;
</p></blockquote>
<p>first, apparently, the author has <i>no clue</i> about the difference between computer scientists and computer technicians. this is really embarrasing.<br />
second, linux contains a huge amount of drivers, in particular for older hardware. nowadays one often has linux drivers for older hardware, for which no windows 7 or osx drivers exist. on the other hand, windows has a huge amount of drivers for modern hardware which osx and linux do not have &ndash; but mostly because the manufacturers of the hardware do not produce these drivers. to the end user, this makes no difference, but one could expect that the author mentions this somehow.<br />
well. considering how much information this article contained, a non-trivial amount is wrong or dangerously imprecise. hence, if you need information, do <i>not</i> use this article as a source.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/10/02/worst-article-on-operating-systems-ever-read-by-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>learning programming.</title>
		<link>http://spielwiese.fontein.de/2009/08/28/learning-programming/</link>
		<comments>http://spielwiese.fontein.de/2009/08/28/learning-programming/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 20:13:03 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1832</guid>
		<description><![CDATA[while talking with a friend about learning programming, i searched for course material for the best programming course i ever had so far, namely dibo&#8216;s &#8220;programmierkurs java&#8221; (which i praised so often when it comes to this topic). while looking, i found a new website by dibo, called programmierkurs java, which features the lectures (both [...]]]></description>
			<content:encoded><![CDATA[<p>while talking with a friend about learning programming, i searched for course material for the best programming course i ever had so far, namely <a href="http://spielwiese.fontein.de/forward.php?r=http://www-is.informatik.uni-oldenburg.de/~dibo/">dibo</a>&#8216;s &ldquo;programmierkurs java&rdquo; (which i praised so often when it comes to this topic). while looking, i found a new website by dibo, called <a href="http://spielwiese.fontein.de/forward.php?r=http://www.programmierkurs-java.de/">programmierkurs java</a>, which features the lectures (both slides and video recordings!) and exercises. in case you want to learn programming and understand german well enough, take a look there!<br />
ok, so much for advertising. when taking to the friend, another topic was &ldquo;what is the right programming language to begin with?&rdquo; in this case, the canidates java and c++ were named. i would definitely go for java, even though i prefer to use c++ myself for most things i program, as java is more allergic to programming errors: if you try to access an array out of the boundaries, it will throw an exception and will not result in unexpected behaviour. moreover, it is widely available (for free!) and easy to set up, there is a huge amount of (good and bad) literature about it, it is not too far off from the real world programming languages which one might use later (in case one wants to learn more than one language, it might also be a good idea to start with something more esoteric, like functional programming). moreover, it can be used both imperatively (which is in particular useful in the beginning) and object oriented (which one shouldn&#8217;t touch too early, in my opinion).</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/08/28/learning-programming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>backups, again.</title>
		<link>http://spielwiese.fontein.de/2009/08/28/backups-again/</link>
		<comments>http://spielwiese.fontein.de/2009/08/28/backups-again/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 03:34:53 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[crypto]]></category>
		<category><![CDATA[external hard disk]]></category>
		<category><![CDATA[hard disk encryption]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1826</guid>
		<description><![CDATA[i got another external hard drive today. the main reason is that i want to encrypt my (current) backup harddisk, which requires reformatting the disk. but if i do so, i&#8217;m left with nothing but the original data on the laptop, and no backup. in case something goes terribly wrong, i&#8217;m screwed. i just created [...]]]></description>
			<content:encoded><![CDATA[<p>i got another external hard drive today. the main reason is that i want to <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Dm-crypt">encrypt</a> my (current) <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2008/09/05/backups/">backup</a> harddisk, which requires reformatting the disk. but if i do so, i&#8217;m left with nothing but the original data on the laptop, and no backup. in case something goes terribly wrong, i&#8217;m screwed. i just created an <a href="http://spielwiese.fontein.de/forward.php?r=http://embraceubuntu.com/2006/01/24/use-an-encrypted-usb-drivepartition/">encrypted partition</a> on the disk; this is really pretty easy and not much command line typing is required, in particular if everything is set up: then linux will ask me for the password as soon as i plug the usb cable in, and automatically mount it using that password. that&#8217;s how it should be. and so far, it works perfect.<br />
currently, <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Rsync">rsync</a> is mirroring my home directory onto the disk. as soon as it is done, i will copy some stuff from the other backup disk over (like my server&#8217;s backups) which i don&#8217;t have on the laptop&#8217;s harddisk (which is 180 gb smaller than each of the backup disks), and after that, my old backup disk will be reformatted as well and also filled.<br />
after that, i will deposit one of the backup drives somewhere outside my appartment: in case something goes wrong (like house burns down, someone decides to break in, &#8230;), i still have a backup somewhere. and, as it is encrypted, nobody but me can read it. (even if someone breaks in here, and steals both laptop and backup, they can&#8217;t access the data without my password. and yes, i am aware of <a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/538/">xkcd</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/08/28/backups-again/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>wikipedia &#8211; pro and contra. and some related ranting.</title>
		<link>http://spielwiese.fontein.de/2009/08/11/wikipedia-pro-and-contra-and-some-related-ranting/</link>
		<comments>http://spielwiese.fontein.de/2009/08/11/wikipedia-pro-and-contra-and-some-related-ranting/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 05:28:59 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[knowledge]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1772</guid>
		<description><![CDATA[as you may have noticed, i use wikipedia a lot &#8211; both for linking to descriptions of terms i use in this blog, and for looking up stuff myself which i encounter somewhere, may it be offline or online. usually, chances are good that wikipedia offers at least some kind of description which answers my [...]]]></description>
			<content:encoded><![CDATA[<p>as you may have noticed, i use <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Wikipedia">wikipedia</a> a lot &ndash; both for linking to descriptions of terms i use in this blog, and for looking up stuff myself which i encounter somewhere, may it be offline or online. usually, chances are good that wikipedia offers at least some kind of description which answers my questions, or at least helps me getting an idea. but from time to time, it happens that you try to look something up on wikipedia, only to find out that such an article existed but was deleted &ndash; for example, because it was &ldquo;not relevant&rdquo;. i can understand that people do not want to see wikipedia flooded by biographies of john doe and jane roe &ndash; only a handful people are interested in these, probably most notably john doe and jane roe themselves.<br />
but there are cases where i simply can&#8217;t understand the decision. for example, there is the chilenian doom metal band <a href="http://spielwiese.fontein.de/forward.php?r=http://www.metal-archives.com/band.php%3Fid=6469">mar de grises</a>, which i discovered by chance in zurich&#8217;s now deceased <i>knochenhaus</i>. according to <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Wikipedia:Articles_for_deletion/Mar_de_Grises">the wikipedia deletion log</a>, it is &ldquo;not noteable&rdquo; and failes some <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Wikipedia:MUSIC">guidelines</a>. so, who decides what is noteable and what is not? and, after all, the <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Wikipedia:Simplified_ruleset">simplified ruleset</a> explicitly mentiones</p>
<blockquote><p class="quote">ignore all rules &#8211; rules on wikipedia are not fixed in stone. the spirit of the rule trumps the letter of the rule. the common purpose of building an encyclopedia trumps both.</p>
</blockquote>
<p>i can pretty well understand that not every small band hobby band project should be mentioned &ndash; in particular the ones which sound bad and dissolve quickly with none or almost no productions. but that&#8217;s not the case for mar de grises. besides that, the deletion log also mentiones other problems with the article (namely, being badly written and failling to provide references for some claims), but why not throw these parts out or reduce the article to a <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Wikipedia:Stub">stub</a>?<br />
two other examples, this time from the <a href="http://spielwiese.fontein.de/forward.php?r=http://de.wikipedia.org/">german wikipedia</a>, are <a href="http://spielwiese.fontein.de/forward.php?r=http://de.wikipedia.org/wiki/Wikipedia:Löschkandidaten/25._März_2009#Sinnlos_im_Weltraum_.28gel.C3.B6scht.29">sinnlos im weltraum</a> and <a href="http://spielwiese.fontein.de/forward.php?r=http://de.wikipedia.org/wiki/Wikipedia:Löschkandidaten/5._April_2009#Lord_of_the_Weed_.28gel.C3.B6scht.29">lord of the weed</a>, two <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Fandub">fandubs</a>. according to the <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Fandub#History">english wikipedia</a>, <i>sinnlos im weltraum</i> (a redub of a <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Star_Trek:_The_Next_Generation">star trek</a> series), dating back to 1994, is one of the first such projects, essentially starting the whole genre of fandubs. i don&#8217;t know how many people know it, probably a huge number. <i>lord of the weed</i> (a redub of the beginning of 2001&#8242;s <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/The_Lord_of_the_Rings:_The_Fellowship_of_the_Ring">lord of the rings</a>) is also rather well-known; i don&#8217;t remember how often i saw it &ndash; at least ten times. well, it is obviously true that these movies haven&#8217;t been shown in movie theaters or on television &ndash; as they contain copyrighted material (i.e. the original movie), used without permission. for the same reason, they haven&#8217;t been shown on film festivals, you can&#8217;t buy them on dvd. they are also not listed on the <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/IMDB">imdb</a>. but &ndash; so what? does that make them not noteable? irrelevant?<br />
on the other hand, a lot of totally trashy movies &ndash; which, compared to <i>sinnlos im weltraum</i> and <i>lord of the weed</i>, are really crappy and lame &ndash; are featured on media, two good examples are a music video by <a href="http://spielwiese.fontein.de/forward.php?r=http://de.wikipedia.org/wiki/Grup_Tekkan">grup tekkan</a> and the infamous <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Star_Wars_Kid">star wars kid</a>, making a fool out of himself. these are pushed by media as <a href="http://spielwiese.fontein.de/forward.php?r=http://www.welt.de/webwelt/article235989/YouTube_Videos_die_man_sehen_muss.html">&ldquo;youtube movies you have to see&rdquo;</a> or are even shown on tv. and they can be found on wikipedia. even though they are real crap. in the case of <i>star wars kid</i>, the really embarrassing movie was uploaded by &ldquo;friends&rdquo; of its actor and will probably haunt him for a very long time. to make this even better, a lot of online versions of famous newspapers or magazines feature this video as well, showing it to an even wider audience. and i thought the use of a <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Pillory">pillories</a> are outlawed in modern countries.<br />
anyway. i&#8217;m still using wikipedia, even though of these reasons. and i even created an account at the english wikipedia and started writing an article about <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Infrastructure_(number_theory)">infrastructures (number theory)</a>. as so far, nobody else dared to write something on this subject, and a google search only gives documents featuring other kinds of infrastructures, or scientific articles about this subject, i thought it would be time to add something to the web. i&#8217;ve started a series of posts on my <a href="http://spielwiese.fontein.de/forward.php?r=http://math.fontein.de/infrastructures/">math blog</a> on infrastructures, but as google usually ranks wikipedia articles higher, i decided to also add something to wikipedia. so far, it is more a stub and far from being a complete article, but at least provides some information and several references to literature.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/08/11/wikipedia-pro-and-contra-and-some-related-ranting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>making sloooow internet fast.</title>
		<link>http://spielwiese.fontein.de/2009/06/17/making-sloooow-internet-fast/</link>
		<comments>http://spielwiese.fontein.de/2009/06/17/making-sloooow-internet-fast/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 02:44:03 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[calgary]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[shaw cable]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1721</guid>
		<description><![CDATA[a few days ago my hispeed internet started to be slow. after a short time, i got the impression that the network itself was fine, but the dns lookups are slow. some minutes ago, i decided to investigate this problem a bit more in detail. indeed, host turns out to be really slow when looking [...]]]></description>
			<content:encoded><![CDATA[<p>a few days ago my <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2009/06/09/moving-and-internet/">hispeed internet</a> started to be slow. after a short time, i got the impression that the network itself was fine, but the <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Domain_Name_System">dns</a> lookups are slow. some minutes ago, i decided to investigate this problem a bit more in detail. indeed, <a href="http://spielwiese.fontein.de/forward.php?r=http://linux.die.net/man/1/host"><code>host</code></a> turns out to be really slow when looking up domain names, and if i enter an ip address in firefox instead of a domain name, accessing the page is really fast. searching the net for this problem, i found nothing except a <a href="http://spielwiese.fontein.de/forward.php?r=http://www.dslreports.com/faq/12253">list of shaw dns servers</a>. the ones listed there for calgary differ from the ones entered in <a href="http://spielwiese.fontein.de/forward.php?r=http://linux.die.net/man/5/resolv.conf"><code>/etc/resolv.conf</code></a>; more precisely, the last byte reads 143 and 145 instead of 133 and 135. to try it out, i changed the values, and voila, <code>host</code> ran in hispeed again. restarting firefox also allowed to access the world wide web fast, again.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/06/17/making-sloooow-internet-fast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>another project.</title>
		<link>http://spielwiese.fontein.de/2009/05/04/another-project/</link>
		<comments>http://spielwiese.fontein.de/2009/05/04/another-project/#comments</comments>
		<pubDate>Mon, 04 May 2009 05:52:01 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[latex]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1622</guid>
		<description><![CDATA[i finally started another project: a math blog. the aim of this one is to write about mathematical things which interest me, for example things related to my research. the formulae will be rendered with latex; mathml is simply unuseable so far. an example post shows a feature with i added to my wp-latex enhancer [...]]]></description>
			<content:encoded><![CDATA[<p>i finally started another project: a <a href="http://spielwiese.fontein.de/forward.php?r=http://math.fontein.de/">math blog</a>. the aim of this one is to write about mathematical things which interest me, for example things related to my research. the formulae will be rendered with <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2009/02/28/wordpress-and-latex/">latex</a>; <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2007/09/16/mathml/">mathml</a> is simply unuseable so far.<br />
an <a href="http://spielwiese.fontein.de/forward.php?r=http://math.fontein.de/2009/05/04/fundamental-theorem-of-algebra/">example post</a> shows a feature with i added to my wp-latex enhancer plugin: (primitive) environments for definitions, theorems, proofs, etc., including a very basic labeling system allowing hyperlinks which jump to the right environment; for example, <a href="http://spielwiese.fontein.de/forward.php?r=http://math.fontein.de/2009/05/04/fundamental-theorem-of-algebra/#fundlemma">here&#8217;s</a> a link to a lemma in the post. the post features my favourite proof of the fundamental theorem of algebra, using complex analysis.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2009/05/04/another-project/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>moving.</title>
		<link>http://spielwiese.fontein.de/2008/11/20/moving-2/</link>
		<comments>http://spielwiese.fontein.de/2008/11/20/moving-2/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 23:09:57 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[random lyrics]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[spielwiese]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1260</guid>
		<description><![CDATA[spielwiese moved to a new server today. it&#8217;s way faster now, as you might have already noticed. unfortunately, the ad rotator plugin which i used to display the random lyrics stopped working, probably it doesn&#8217;t like the php version running here. maybe i&#8217;ll replace it at some point&#8230;]]></description>
			<content:encoded><![CDATA[<p>spielwiese moved to a new server today. it&#8217;s way faster now, as you might have already noticed. unfortunately, the ad rotator plugin which i used to display the random lyrics stopped working, probably it doesn&#8217;t like the php version running here. maybe i&#8217;ll replace it at some point&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/11/20/moving-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ubuntu reloaded.</title>
		<link>http://spielwiese.fontein.de/2008/10/26/ubuntu-reloaded/</link>
		<comments>http://spielwiese.fontein.de/2008/10/26/ubuntu-reloaded/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 22:36:43 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[thinkpad]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1159</guid>
		<description><![CDATA[well. the thinkpad i ordered some more time ago has arrived some time ago, and finally i got around to set it up. well, with the newest release candidate of ubuntu. the 64 bit version, of course. even after all the trouble i had last year, i couldn&#8217;t think of a better linux distro&#8230; (i [...]]]></description>
			<content:encoded><![CDATA[<p>well. the <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2008/09/18/screwed/">thinkpad</a> i ordered some more time ago has arrived some time ago, and finally i got around to set it up. well, with the newest release candidate of ubuntu. the 64 bit version, of course. even after all the <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2007/11/04/ubuntu-goes-crazy/">trouble</a> i had last year, i couldn&#8217;t think of a better linux distro&#8230; (i want apt, and i don&#8217;t want to compile everything by myself &ndash; which rules out fedora and gentoo.)<br />
anyway. i installed it. and: it worked. everything&#8217;s fine. well, so far, of course, i don&#8217;t know if this will change. and even setting up the <a href="http://spielwiese.fontein.de/forward.php?r=http://users.piuha.net/martti/comp/ubuntu/en/cryptolvm.html">hdd realtime encryption</a> on installation worked like a charm.<br />
well. let&#8217;s see how it continues&#8230; :)</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/10/26/ubuntu-reloaded/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>the optimal blog software.</title>
		<link>http://spielwiese.fontein.de/2008/10/11/the-optimal-blog-software/</link>
		<comments>http://spielwiese.fontein.de/2008/10/11/the-optimal-blog-software/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 19:28:50 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[do it yourself]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ranting]]></category>
		<category><![CDATA[vision]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1093</guid>
		<description><![CDATA[while i was searching for a plug-in which allows access control to posts based on users and/or user groups, i stumbled about many different plug-ins, some of them very promising, but either dead, not updated for a long time, or simply not exactly usable by producing a long list of php error messages already in [...]]]></description>
			<content:encoded><![CDATA[<p>while i was searching for a plug-in which allows access control to posts based on users and/or user groups, i stumbled about many different plug-ins, some of them very promising, but either dead, not updated for a long time, or simply not exactly usable by producing a long list of php error messages already in the admin screen after activating them. grrreat. well, of course, i could also try to <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2007/10/30/do-it-yourself/">do it myself</a>, as usual. but hey, that sucks: i&#8217;d be better of writing my own blog software.<br />
well, i talked about the problem a bit with <a href="http://spielwiese.fontein.de/forward.php?r=http://www.kornels-welt.de/blog/">kornel</a>, and we concluded that an optimal blog system would be a very slim piece of software, just providing the very basic features, i.e. managing posts, comments and pages, users and user groups/roles/whatever, and access privileges, while everything else&mdash;such as galleries, embedding videos, gadgets, comfortable post editors, &#8230;&mdash;is implemented as plugins.<br />
anyone want&#8217;s to do this, and produce a well-documented, slim, bug-free blog system with a good plugin interface, together with a few standard plugins? :)</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/10/11/the-optimal-blog-software/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>screwed.</title>
		<link>http://spielwiese.fontein.de/2008/09/18/screwed/</link>
		<comments>http://spielwiese.fontein.de/2008/09/18/screwed/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 09:55:53 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[data loss]]></category>
		<category><![CDATA[failure]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[ranting]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1090</guid>
		<description><![CDATA[yesterday evening, i wanted to grab a few cds. while cdparanoia was running, i copied a text file to another place. then, i noticed that the content of the copy was garbled. a quick check showed that the content of the original file wasn&#8217;t. tried it again, the same result. and again. then, i stopped [...]]]></description>
			<content:encoded><![CDATA[<p>yesterday evening, i wanted to grab a few cds. while cdparanoia was running, i copied a text file to another place. then, i noticed that the content of the copy was garbled. a quick check showed that the content of the original file wasn&#8217;t. tried it again, the same result. and again. then, i stopped cdparanoia, and after that, copying worked. well. after restarting cdparanoia, copying still worked fine. so i stopped thinking about this and continued working &ndash; which was a fatal error.<br />
this morning, when i turned the macbook on again, the desktop was pretty garbled and the dock was at the wrong position and had the wrong size and the wrong content, i.e. everything i changed since i first got my macbook was gone. moreover, skype wanted to know a user name and a password, and adium seemed to have forgotten a lot of things i taught it, too. after starting the terminal (which is not so easy to find, if it&#8217;s not in your dock) i quickly checked some files i created yesterday &ndash; all garbled! what the heck. the older files seem to be ok. after some more trying around, it turned out that some other files from yesterday evening (namely, the music which i ripped) was fine, too. so, what happened? i don&#8217;t know. well, most of the files which were garbled i had backuped on the institute&#8217;s server, so that wasn&#8217;t a problem. but there was one file, called <i>termine.txt</i>, where i collected all appointments for the next months, which i changed yesterday evening and which i created in the last few days in long hours, and which i hadn&#8217;t backuped yet: now it&#8217;s garbled, too. screwed.<br />
well. i don&#8217;t know what happened or whose fault it was. but for me, garbling data is something which an operation system should <b>never ever</b> do. well, good for me that i ordered a thinkpad yesterday, so i&#8217;ll switch back to linux soon anyway, hoping it will be less annoying&#8230; after all, all big data losses i had in the last years, which weren&#8217;t related to dying hard disks, happened on osx.</p>
<p>well, after this rant, something more constructive. one thing what could have happened is that for some reason, something screwed up with the realtime disk encryption i enabled on the macbook. maybe, for some reason, a screwed up dma transfer (maybe initiated by cdparanoia?) somehow managed to screw this up. just guessing.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/09/18/screwed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>backups.</title>
		<link>http://spielwiese.fontein.de/2008/09/05/backups/</link>
		<comments>http://spielwiese.fontein.de/2008/09/05/backups/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 15:48:33 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[file systems]]></category>
		<category><![CDATA[ranting]]></category>
		<category><![CDATA[stone age]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/?p=1069</guid>
		<description><![CDATA[today i was again thinking on backup solutions. my current backup harddisks use ext2 resp. ext3, a linux file system. but now i&#8217;m forced to use osx, as my linux machine completely died. it turns out that osx can read ext2/ext3 using ext2fsx, but that one is pretty instable and already killed one ext2 partition [...]]]></description>
			<content:encoded><![CDATA[<p>today i was again thinking on backup solutions. my current backup harddisks use <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Ext2">ext2</a> resp. <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Ext3">ext3</a>, a linux file system. but now i&#8217;m forced to use osx, as my linux machine completely died. it turns out that osx can read ext2/ext3 using <a href="http://spielwiese.fontein.de/forward.php?r=http://sourceforge.net/projects/ext2fsx/">ext2fsx</a>, but that one is pretty instable and already killed one ext2 partition of mine (note: don&#8217;t mount anything as writeable!). i began looking for a file system which both osx and linux can write and read (and which is known to be stable). but&#8230; so far, i found: nothing. well, except <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/FAT32">fat32</a>. i mean, hey, what the heck?! it can&#8217;t be that fat32 is the only one supported by both of them; fat32 is a relict from the stone age of computing, nothing which you want to use on a modern computer. well, maybe, but only if you store your stuff in <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Tar_(file_format)">tar files</a>, another pretty antique, but at least somehow useful thing. this makes it pretty much impossible to browse the backup data, to see what&#8217;s in it, to easily extract certain files, but at least provides a working alternative. but, well, is this really the only one?!<br />
another reason why we&#8217;re still in the stone age of computing&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/09/05/backups/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>music &amp; mac.</title>
		<link>http://spielwiese.fontein.de/2008/05/24/music-mac/</link>
		<comments>http://spielwiese.fontein.de/2008/05/24/music-mac/#comments</comments>
		<pubDate>Sat, 24 May 2008 21:32:19 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[failure]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[ranting]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2008/05/24/music-mac/</guid>
		<description><![CDATA[sometimes, i really hate computers. in particular, when wanting to hear music on my macbook, which runs osx. so far, i haven&#8217;t found any good music player. the first thing i tried is itunes. it seems to be nice, but it&#8217;s support for an externally managed music library (i want to synchronize the library between [...]]]></description>
			<content:encoded><![CDATA[<p>sometimes, i <i>really</i> hate computers. in particular, when wanting to hear music on my macbook, which runs osx. so far, i haven&#8217;t found any good music player.<br />
the first thing i tried is <i>itunes</i>. it seems to be nice, but it&#8217;s support for an externally managed music library (i want to synchronize the library between several computers, whence i cannot let <i>itunes</i> organize the library) is sucking. there is a way to scan an existing directory with music, but it is incredibly slow. maybe one second per file? at least, this is not acceptable.<br />
on linux, i&#8217;m using <a href="http://spielwiese.fontein.de/forward.php?r=http://amarok.kde.org/">amarok</a>, which has a lot of bugs, but runs pretty neat otherwise. (so far the best thing i found.) version 2.0 is supposed to be available on osx, too, but i&#8217;ve waiting for that one since more than a year, and it&#8217;s still not there. there&#8217;s a version which you can compile yourself, but it will compile for more than 24 hours, as it requires all the kde libraries. i don&#8217;t want to do that.<br />
another choice is <a href="http://spielwiese.fontein.de/forward.php?r=http://www.exaile.org/">exaile</a>, an amarok clone for gtk (gnome), which i have to try under linux. at least, under osx, i&#8217;ve not been able to run it, i have several python versions installed due to <a href="http://spielwiese.fontein.de/forward.php?r=http://www.finkproject.org/">fink</a> and <a href="http://spielwiese.fontein.de/forward.php?r=http://darwinports.com/">darwinports</a>, but it needs some more libraries and i don&#8217;t want to spend hours or days or weeks to find out which ones and how to install them.<br />
well, and then, there&#8217;s <a href="http://spielwiese.fontein.de/forward.php?r=http://www.xmms.org/">xmms</a>, a <i>winamp 2.x</i> clone, more or less dead for a long time. but i got it installed (via <i>fink</i> or <i>darwinport</i>, forgot which one), but my version features non-readable mp3 id3 tags and certain other quirks. but at least, it runs and plays music.<br />
it really, <i>really</i> annoys me that it seems not to be able to install a decent player without spending lots of time. why on earth no one is able to provide a precompiled package for <i>amarok</i>? or make <i>exaile</i> run on osx? or any other more or less decent music player? why just <i>itunes</i> and <i>xmms</i>?!<br />
i have even considered throwing osx away and installing something like <a href="http://spielwiese.fontein.de/forward.php?r=http://www.ubuntu.com/">ubuntu</a> on my macbook, but that also sucks, as <i>ubuntu</i> might have problems with the wireless network, and then i have to find out how to set up an encrypted hard disk, which is possible but requires some more work than just five minutes.<br />
when does the new age of computing begins, where one does not has so much trouble anymore?<br />
i&#8217;m completely pissed of. seriously.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/05/24/music-mac/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>spam.</title>
		<link>http://spielwiese.fontein.de/2008/05/17/spam/</link>
		<comments>http://spielwiese.fontein.de/2008/05/17/spam/#comments</comments>
		<pubDate>Sat, 17 May 2008 00:20:36 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[annoying]]></category>
		<category><![CDATA[blackness]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[spielwiese]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2008/05/17/spam/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/05/17/spam/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>dissolve.</title>
		<link>http://spielwiese.fontein.de/2008/05/14/dissolve/</link>
		<comments>http://spielwiese.fontein.de/2008/05/14/dissolve/#comments</comments>
		<pubDate>Wed, 14 May 2008 04:37:03 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[annoying]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[macbook]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2008/05/14/dissolve/</guid>
		<description><![CDATA[i just observed that my macbook starts to dismantle itself: i mean, hey, it&#8217;s just little older than one year. what the heck?!]]></description>
			<content:encoded><![CDATA[<p>i just observed that my macbook starts to dismantle itself:</p>
<p><p class='center' id='lazygal-1'><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/photos/2008/05/macbook-1.jpeg"><img src="http://spielwiese.fontein.de/photos/2008/05/macbook-1-bw.jpeg" width="220" height="196" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/photos/2008/05/macbook-2.jpeg"><img src="http://spielwiese.fontein.de/photos/2008/05/macbook-2-bw.jpeg" width="220" height="129" alt="" /></a></p></p>
<p>i mean, hey, it&#8217;s just little older than one year. what the heck?!</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/05/14/dissolve/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>quadcopter.</title>
		<link>http://spielwiese.fontein.de/2008/04/07/quadcopter/</link>
		<comments>http://spielwiese.fontein.de/2008/04/07/quadcopter/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 17:44:02 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[flying]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[quadcopter]]></category>
		<category><![CDATA[toy]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2008/04/07/quadcopter/</guid>
		<description><![CDATA[yesterday i was visiting a friend who built a quadcopter, and we went to a nearby meadow to let it fly. well, i didn&#8217;t had a chance to let it fly, i would have probably wrecked it anyway, but my friend spend some time flying with it and could do it pretty good. the quadcopter [...]]]></description>
			<content:encoded><![CDATA[<p>yesterday i was visiting a friend who built a <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Quadcopter">quadcopter</a>, and we went to a nearby meadow to let it fly. well, i didn&#8217;t had a chance to let it fly, i would have probably wrecked it anyway, but my friend spend some time flying with it and could do it pretty good. the quadcopter is equipped with <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/GPS">gps</a> and an <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Altimeter">altimeter</a> and, if in the right mode, tries to keep it&#8217;s position, despite the wind. quite cool. it also has a <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Compass">compass</a> to ensure that it&#8217;s orientation won&#8217;t change unintentionally if you tilt it or fly forwards. anyway, it produces a lot of wind and can fly upwards pretty fast.<br />
maybe i need <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2008/01/15/me-and-my-new-toy/">another</a> new toy&#8230; :)</p>
<p><p class='center' id='lazygal-2'><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/photos/2008/04/copter-1.jpeg"><img src="http://spielwiese.fontein.de/photos/2008/04/copter-1-bw.jpeg" width="220" height="204" alt="" /></a><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/photos/2008/04/copter-2.jpeg"><img src="http://spielwiese.fontein.de/photos/2008/04/copter-2-bw.jpeg" width="220" height="193" alt="" /></a><br /><a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/photos/2008/04/copter-3.jpeg"><img src="http://spielwiese.fontein.de/photos/2008/04/copter-3-bw.jpeg" width="220" height="165" alt="" /></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/04/07/quadcopter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>nostalgia.</title>
		<link>http://spielwiese.fontein.de/2008/03/07/nostalgia/</link>
		<comments>http://spielwiese.fontein.de/2008/03/07/nostalgia/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 23:36:12 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[nostalgia]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2008/03/07/nostalgia/</guid>
		<description><![CDATA[i&#8217;ve been in irc the first time for&#8230; hmm&#8230; let me think. maybe four years? or five? well, anyway, a really long time. joined a few channels. some didn&#8217;t exist anymore. some do. lots of nicks which sound familiar, some which i have met once in real life, some even remember me. some people died. [...]]]></description>
			<content:encoded><![CDATA[<p>i&#8217;ve been in <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/IRC">irc</a> the first time for&#8230; hmm&#8230; let me think. maybe four years? or five? well, anyway, a really long time. joined a few channels. some didn&#8217;t exist anymore. some do. lots of <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Nickname">nicks</a> which sound familiar, some which i have met once in real life, some even remember me. some people died. lots are still alife, and around. memories coming up&#8230; old feelings, long time hidden in some corners&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/03/07/nostalgia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>finally, &#8230;</title>
		<link>http://spielwiese.fontein.de/2008/02/24/finally/</link>
		<comments>http://spielwiese.fontein.de/2008/02/24/finally/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 20:11:39 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2008/02/24/finally/</guid>
		<description><![CDATA[&#8230; my blog really has 100% valid xhtml 1.0 transitional code. until now, there were some exceptions: a wordpress bug which generated invalid xhtml code if you have more than one blogroll category (which will be fixed in the next version; i wrote a quick hack to fix the one i&#8217;m using); the youtube code [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230; my blog really has 100% valid <a href="http://spielwiese.fontein.de/forward.php?r=http://www.w3.org/TR/xhtml1/">xhtml 1.0</a> transitional code. </p>
<p class="center"><a href="http://spielwiese.fontein.de/forward.php?r=http://validator.w3.org/check%3Furi=referer"><img src="http://spielwiese.fontein.de/photos/2008/02/valid-xhtml10.png" alt="valid xhtml 1.0 transitional" height="31" width="88" /></a></p>
<p>until now, there were some exceptions:</p>
<ul>
<li>a wordpress <a href="http://spielwiese.fontein.de/forward.php?r=http://trac.wordpress.org/ticket/5971">bug</a> which generated invalid xhtml code if you have more than one blogroll category (which will be fixed in the next version; i wrote a quick hack to fix the one i&#8217;m using);</li>
<li>the <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2008/02/19/vivaldi-played-by-two-e-guitars/">youtube code snippet</a> was quite a mess, i fixed it using some hints from the <a href="http://spielwiese.fontein.de/forward.php?r=http://validator.w3.org/">w3c validator</a> page and by some tipps by <a href="http://spielwiese.fontein.de/forward.php?r=http://www.kornels-welt.de/blog/">kornel</a>, as wordpress tended to screw up my code by inserting tags and, thus, rendering it invalid; i fixed that by using installing a <a href="http://spielwiese.fontein.de/forward.php?r=http://alexking.org/projects/wordpress/readme%3Fproject=wp-unformatted">plugin</a> which allows to format specific posts completely yourself;</li>
<li>certain small bugs in my posts which were completely my faults (these will probably show up from time to time, but i&#8217;m trying to eliminate them asap).</li>
</ul>
<p>maybe i&#8217;ll once try to force wordpress to generate xhtml 1.0 strict code, but that&#8217;s probably too much work; probably i can hack something together myself in less time which fits better to my needs and which generates such code :)</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/02/24/finally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>structures.</title>
		<link>http://spielwiese.fontein.de/2008/01/09/structures/</link>
		<comments>http://spielwiese.fontein.de/2008/01/09/structures/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 23:32:58 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[beauty]]></category>
		<category><![CDATA[fractals]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2008/01/09/structures/</guid>
		<description><![CDATA[mathematics is nothing but the search for structures. beautiful structures. i myself tend to think i understood something if i manage to have a picture of it in my head, some geometric interpretation. sometimes it&#8217;s more easy to understand something if one can somehow draw it, by hand, or using a computer, which can sometimes [...]]]></description>
			<content:encoded><![CDATA[<p>mathematics is nothing but the search for structures. beautiful structures. i myself tend to think i understood something if i manage to have a picture of it in my head, some geometric interpretation. sometimes it&#8217;s more easy to understand something if one can somehow draw it, by hand, or using a computer, which can sometimes give insights which would not be possible without it; the best example maybe is the beautiful <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Mandelbrot_set">mandelbrot set</a>. most visualizations are by no means as impressive as the mandelbrot set, unless the viewer is acquainted with the underlying mathematics. like the following one, produced by the programs i wrote yesterdays and today, whose beauty probably won&#8217;t unfold if you don&#8217;t know what it depicts:</p>
<p><p class='center' id='lazygal-3'><img src="http://spielwiese.fontein.de/photos/2008/01/grid.png" width="294" height="216" alt="" /></p></p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2008/01/09/structures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>even more done.</title>
		<link>http://spielwiese.fontein.de/2007/11/22/even-more-done/</link>
		<comments>http://spielwiese.fontein.de/2007/11/22/even-more-done/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 22:16:02 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[blackness]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2007/11/22/even-more-done/</guid>
		<description><![CDATA[my project took a step forward during the last week: i added an rss feed, a category system and a comment system. so everything i planned is done. i guess that i&#8217;ll stop programming now and continue to produce more content. well, if i get some good ideas, that is. or at least more realizable [...]]]></description>
			<content:encoded><![CDATA[<p>my <a href="http://spielwiese.fontein.de/forward.php?r=http://blackness.fontein.de/">project</a> took a step forward during the last week: i added an rss feed, a category system and a comment system. so everything i <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2007/10/30/do-it-yourself/">planned</a> is <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2007/11/11/done-for-now/">done</a>. i guess that i&#8217;ll stop programming now and continue to produce more content. well, if i get some good ideas, that is. or at least more realizable ideas&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2007/11/22/even-more-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>safari&#8217;s javascript.</title>
		<link>http://spielwiese.fontein.de/2007/11/07/safaris-javascript/</link>
		<comments>http://spielwiese.fontein.de/2007/11/07/safaris-javascript/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 23:34:24 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2007/11/07/safaris-javascript/</guid>
		<description><![CDATA[is there a reason why a variable in javascript shouldn&#8217;t be called &#8220;name&#8221;? i thought, &#8220;no&#8221;, and simply used that name. well, until i found out that this breaks safari&#8230; while it works perfectly fine under firefox. took me an hour to figure that out&#8230; thank you whoever is responsible for this, i really love [...]]]></description>
			<content:encoded><![CDATA[<p>is there a reason why a variable in javascript shouldn&#8217;t be called &ldquo;name&rdquo;? i thought, &ldquo;no&rdquo;, and simply used that name. well, until i found out that this breaks safari&#8230; while it works perfectly fine under firefox. took me an hour to figure that out&#8230; thank you whoever is responsible for this, i really love wasting my time with such things&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2007/11/07/safaris-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu goes crazy&#8230;</title>
		<link>http://spielwiese.fontein.de/2007/11/04/ubuntu-goes-crazy/</link>
		<comments>http://spielwiese.fontein.de/2007/11/04/ubuntu-goes-crazy/#comments</comments>
		<pubDate>Sun, 04 Nov 2007 20:45:01 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[feelings]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2007/11/04/ubuntu-goes-crazy/</guid>
		<description><![CDATA[turns out that upgrading to the newest version of ubuntu was not a good idea. not because of the visual effects, not because of the tracker, (probably) not because of ubuntu itself, but because of a very strange and annoying bug which is really killing my productivity: at random points, in particular if i&#8217;m using [...]]]></description>
			<content:encoded><![CDATA[<p>turns out that <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de/2007/11/04/ubuntu-gutsy-gibbon/">upgrading to the newest version</a> of ubuntu was not a good idea. not because of the visual effects, not because of the tracker, (probably) not because of ubuntu itself, but because of a very strange and annoying bug which is really killing my productivity: at random points, in particular if i&#8217;m using firefox, it &ldquo;forgets&rdquo; that i released a key, like the short cut for closing a tab or for switching to the next tab. and there&#8217;s basically no way to stop it except killing firefox. the problem also appeared in other applications, though almost never. i&#8217;d guess that it is connected to how much the program keeps the cpu busy, and firefox is pretty good at doing that&#8230; so, what to do? i don&#8217;t know&#8230; a first few google searches haven&#8217;t helped me a bit&#8230; probably i have to spend even more time digging out information on this&#8230; i really hate wasting time like this.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2007/11/04/ubuntu-goes-crazy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ubuntu gutsy gibbon.</title>
		<link>http://spielwiese.fontein.de/2007/11/04/ubuntu-gutsy-gibbon/</link>
		<comments>http://spielwiese.fontein.de/2007/11/04/ubuntu-gutsy-gibbon/#comments</comments>
		<pubDate>Sun, 04 Nov 2007 12:18:06 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[blackness]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2007/11/04/ubuntu-gutsy-gibbon/</guid>
		<description><![CDATA[just upgraded to newest ubuntu. upgrading went pretty smooth, smoother than i expected after last time&#8217;s experience. i tried the new visual effects (seeing this screenshot, i&#8217;m wondering why i didn&#8217;t had this custom choice), and disabled them after a few minutes. for me, most of them are too annoying (i&#8217;m switching between windows and [...]]]></description>
			<content:encoded><![CDATA[<p>just upgraded to newest <a href="http://spielwiese.fontein.de/forward.php?r=http://www.ubuntu.net/">ubuntu</a>. upgrading went pretty smooth, smoother than i expected after last time&#8217;s experience. i tried the new <a href="http://spielwiese.fontein.de/forward.php?r=http://www.ubuntu.com/files/GutsyImages/Effects-Options.jpg">visual effects</a> (seeing this screenshot, i&#8217;m wondering why i didn&#8217;t had this <i>custom</i> choice), and disabled them after a few minutes. for me, most of them are too annoying (i&#8217;m switching between windows and desktops all the time). well. the user interface feels slower than before (even after deactivating the visual effects), but it&#8217;s still ok. the <a href="http://spielwiese.fontein.de/forward.php?r=https://wiki.ubuntu.com/Tracker">tracker</a> is annoying, eating up system performance and it&#8217;s ignoring the preferences (which say: don&#8217;t run), but after deinstalling it, everything&#8217;s fine. for now.<br />
now i have to find out how to install a local version of <a href="http://spielwiese.fontein.de/forward.php?r=http://www.apache.org/">apache</a> with <a href="http://spielwiese.fontein.de/forward.php?r=http://www.php.net/">php</a>, and of <a href="http://spielwiese.fontein.de/forward.php?r=http://www.mysql.com/">mysql</a>, to make working on my project a bit easier&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2007/11/04/ubuntu-gutsy-gibbon/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>do it yourself.</title>
		<link>http://spielwiese.fontein.de/2007/10/30/do-it-yourself/</link>
		<comments>http://spielwiese.fontein.de/2007/10/30/do-it-yourself/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 22:58:10 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[blackness]]></category>
		<category><![CDATA[do it yourself]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2007/10/30/do-it-yourself/</guid>
		<description><![CDATA[every time i plan to start a new project, let it be a web project, a programming job, a latex document (or a combination of those), i&#8217;m thinking hard on whether to use something already existing as a base or whether to do everything myself, from the scratch. for latex documents, i usually reuse macros [...]]]></description>
			<content:encoded><![CDATA[<p>every time i plan to start a new project, let it be a web project, a programming job, a latex document (or a combination of those), i&#8217;m thinking hard on whether to use something already existing as a base or whether to do everything myself, from the scratch. for latex documents, i usually reuse macros i&#8217;ve written myself. for programs, i use libraries like <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/OpenGL">opengl</a> and <a href="http://spielwiese.fontein.de/forward.php?r=http://www.zlib.net/">zlib</a> (two random names coming to my mind, there are of course a lot more), i reuse my own code, and write the rest from scratch. for this blog, i used <a href="http://spielwiese.fontein.de/forward.php?r=http://wordpress.org/">wordpress</a>, for usage statistics i use <a href="http://spielwiese.fontein.de/forward.php?r=http://www.phpopentracker.de/">phpopentracker</a>. and, of course, i use <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/PHP">php</a> and <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/MySQL">mysql</a> as backends. even though i could implement the whole stuff myself. if i just would have enough time&#8230; but i don&#8217;t, and so i have to cope with all the restrictions, specialities, whatever these programs and libraries are throwing at me.<br />
the reason why i&#8217;m thinking about this at the moment is a new project of mine i&#8217;m thinking about, which i&#8217;m planning to code more or less from the scratch (using, of course, some backend stuff like <i>php</i>, <i>mysql</i>, <i>phpopentracker</i>, you name it). i just started drawing some sketches, like its logical structure with hints on the physical implementation. sometimes i wonder whether i should spend more time on such things. despite there probably already exists a system which does exactly what i want, making one yourself is way more fun. although its also way more work.<br />
let&#8217;s see if i manage to pull this one through&#8230; wish me luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2007/10/30/do-it-yourself/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>xkcd.</title>
		<link>http://spielwiese.fontein.de/2007/10/10/xkcd/</link>
		<comments>http://spielwiese.fontein.de/2007/10/10/xkcd/#comments</comments>
		<pubDate>Wed, 10 Oct 2007 21:49:10 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[daily life]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[comics]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2007/10/10/xkcd/</guid>
		<description><![CDATA[yesterday i started reading the xkcd archives (maybe you&#8217;ve already noticed that yesterday). if you don&#8217;t know xkcd, it&#8217;s a webcomic &#8220;of romance, sarcasm, math, and language&#8221;. here are the ones i found particularly interesting, funny, or whatever: pi equals. reminds me of the classic &#8220;help, i&#8217;m trapped in a fortune cookie factory!&#8221; joke. what [...]]]></description>
			<content:encoded><![CDATA[<p>yesterday i started reading the <a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/">xkcd</a> archives (maybe you&#8217;ve already noticed that yesterday). if you don&#8217;t know xkcd, it&#8217;s a webcomic <i>&ldquo;of romance, sarcasm, math, and language&rdquo;</i>. here are the ones i found particularly interesting, funny, or whatever:</p>
<ul>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/10/">pi equals</a>. reminds me of the classic <i>&ldquo;help, i&#8217;m trapped in a fortune cookie factory!&rdquo;</i> joke.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/17/">what if</a>.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/22/">barrel &ndash; part 3</a>. i wouldn&#8217;t say <i>&ldquo;wow!&rdquo;</i> in that situation, though.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/26/">fourier</a>. poor cat.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/46/">secrets</a>.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/55/">useless</a>. standard approachs suck for love.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/74/">su doku</a>. even i can solve these.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/84/">national language</a>.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/99/">binary heart</a>. if you check the parity of the read ones in every column, you&#8217;ll notice most of them are even. is this a coincidence? (and don&#8217;t ask why i stumbled about that&#8230;)</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/101/">laser scope</a>. sometimes the primitive word jokes are the best.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/113/">riemann-zeta</a>. about love &amp; primes. this one is not only for number theorists.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/167/">nihilism</a>. squirrels! cool!</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/177/">alice and bob</a>. the real story of eve.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/184/">matrix transform</a>. if i&#8217;d ever had to solve linear algebra exercises again, i&#8217;d try to turn this one in.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/223/">valentine&#8217;s day</a>. nothing to add.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/231/">cat proximity</a>. yay, how true. meow!</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/257/">code talkers</a>. another one on cryptography.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/276/">fixed width</a>. nerd talk on irc. i don&#8217;t know what scares me more, laughing about this one or thinking that i&#8217;m probably knowing people who would really do this.</li>
<li><a href="http://spielwiese.fontein.de/forward.php?r=http://xkcd.com/327/">exploits of a mom</a>. well. if you don&#8217;t know what an sql injection attack is, read about it <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Sql_injection_attack">here</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2007/10/10/xkcd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>big brother (is watching you).</title>
		<link>http://spielwiese.fontein.de/2007/09/02/big-brother-is-watching-you/</link>
		<comments>http://spielwiese.fontein.de/2007/09/02/big-brother-is-watching-you/#comments</comments>
		<pubDate>Sat, 01 Sep 2007 23:57:50 +0000</pubDate>
		<dc:creator>felix</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[1984]]></category>
		<category><![CDATA[anonymous]]></category>
		<category><![CDATA[big brother]]></category>
		<category><![CDATA[ip address]]></category>
		<category><![CDATA[log files]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[tracking]]></category>

		<guid isPermaLink="false">http://spielwiese.fontein.de/2007/09/02/big-brother-is-watching-you/</guid>
		<description><![CDATA[leaving traces is easy. just think on how many fingerprints you leave outside your home every day. and this does not only apply to your real life, but also to your online life. every little thing you do in the internet leaves traces at many different places. for example, think of typing in a url [...]]]></description>
			<content:encoded><![CDATA[<p>leaving traces is easy. just think on how many fingerprints you leave outside your home every day.<br />
and this does not only apply to your real life, but also to your online life. every little thing you do in the internet leaves traces at many different places. for example, think of typing in a url like <a href="http://spielwiese.fontein.de/forward.php?r=http://spielwiese.fontein.de">spielwiese.fontein.de</a> in your browser and pressing enter. first, your browser will put that address in its history (for the pedants out there: i&#8217;m fully aware that there are situations in which this does not happen. as i don&#8217;t want to blow up this article with technicalities, i&#8217;ll simply ignore that.), so days later you can still see that you visited that page. you&#8217;ll also find copies of the page in your browser cache. back to the incident itself. in order to access the site, your browser has to establish a connection with my web server and send a request for that site. this request is relayed though different places, every one able to see that you (identifyable by your ip number, which can be traced back to you by your internet provider) requested this specific site (except in case you&#8217;re accessing pages using https, in that case, the intermediate relays just know your ip address and the ip address of the destination server).<br />
finally, in any case, my web server will receive your request to deliver the page / from my domain to you. and, as most web servers do, it will note that down into it&#8217;s logfile, so i can see that you accessed my site. in fact, i see a lot more. usually, in the request, your browser sends a lot of additional information: for example, a string identifying the user agent. for example, this could be</p>
<blockquote class="cite"><p>Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.6) Gecko/20070802 SeaMonkey/1.1.4</p></blockquote>
<p>it usually also includes information on your operating system (in this case, linux) and the exact version of your browser. usually, the browser will also send on which site you were before (the so called referer). this information will be sent for any web page you click on, and for every image or other object contained in that page. hence, i am, without any tricks, able to track you on your way through my web page, and i can see where you&#8217;re coming from.<br />
being a bit more clever, i can find out a lot more. for example, i could modify the urls of outgoing links on my page to go though some kind of `gate&#8217;, like the forward.php which you might have noticed. then, if you click any link on my site which leaves it, your browser will first contact my webserver to retrieve the forward.php output (which will tell your browser `go to that other site&#8217;) and, surprise!, it will leave an entry in the web server&#8217;s log that you clicked that link. so i also know where you&#8217;re going from my site. next, there&#8217;s a lot more information on you which one can find out using <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Javascript">javascript</a>, like your screen&#8217;s resolution. i&#8217;m including a little script on my site which tells the browser to include a little picture, simply consisting of one complete transparent pixel, on every page of my site. to the images url, it adds the screen resolution. so by looking into my server&#8217;s log, i can see your screen resolution&mdash;at least if you haven&#8217;t turned javascript off, but most people have it turned on anyway.<br />
so, now i have a big log file containing a lot of information: which user came from where, looked at which sites, left where, used which browser, which operating system and which screen resolution, at which time. if i feed this log file into an analysis tool, it will gather the information and present them to me in a useable way&mdash;whatever that might mean.<br />
are you surprised? some of you won&#8217;t be, i know. anyone interested in this subject can find out about this on lots of places on the web (for example, look <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Web_analytics">here</a>). and, in fact, one can do much better than me. first, by using <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/HTTP_cookie">cookies</a>, i could identify you uniquely and connect your different sessions to see how your surfing behaviour varies over a larger time scale. then, i could combine the data from several servers. if i would have data from enough servers, i could throw together a very detailed survey on what you are doing on the web. in that case, i&#8217;m your <a href="http://spielwiese.fontein.de/forward.php?r=http://en.wikipedia.org/wiki/Big_Brother_%28Nineteen_Eighty-Four%29">big brother</a>, watching (almost) every step you do online. luckily, for you, i&#8217;m not doing that. but other people do. for example, the big web advertisement companies, which have their advertisements on a huge amount of web servers, can see you everytime you view such a web page (if you&#8217;re not using an ad blocker). or assume that your web page is using the service of another server which tracks statistics for you. many people are using such services (may it be in the form of a simple counter), so the provider of the service knows when you are looking at which site. and now assume that some of these data collectors cooperate. sharing their huge amount of data. a creepy thought, isn&#8217;t it?</p>
]]></content:encoded>
			<wfw:commentRss>http://spielwiese.fontein.de/2007/09/02/big-brother-is-watching-you/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
