<?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>/home/ap0calypse &#187; amusing</title>
	<atom:link href="http://ap0calypse.agitatio.org/articles/category/amusing/feed" rel="self" type="application/rss+xml" />
	<link>http://ap0calypse.agitatio.org</link>
	<description>yet another blog ...</description>
	<lastBuildDate>Fri, 23 Jul 2010 12:21:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>how to search a hash-key using regular-expressions</title>
		<link>http://ap0calypse.agitatio.org/articles/how-to-search-a-hash-key-using-regular-expressions</link>
		<comments>http://ap0calypse.agitatio.org/articles/how-to-search-a-hash-key-using-regular-expressions#comments</comments>
		<pubDate>Fri, 23 Jul 2010 12:21:21 +0000</pubDate>
		<dc:creator>ap0calypse</dc:creator>
				<category><![CDATA[amusing]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://ap0calypse.agitatio.org/?p=286</guid>
		<description><![CDATA[hi,
these days I was encountering a problem, when I was going through 2 veeeeeeery big hashes to find out which of them have similar keys (not really same keys, just slightly different). I thought, that the easiest way would be to go through both hashes in 2 for-loops and check them out one by one. [...]]]></description>
			<content:encoded><![CDATA[<p>hi,</p>
<p>these days I was encountering a problem, when I was going through 2 veeeeeeery big hashes to find out which of them have <em>similar</em> keys (not really same keys, just slightly different). I thought, that the easiest way would be to go through both hashes in 2 for-loops and check them out one by one. Unfortunately, this approach took about 2 minutes to go through (2 minutes seem like an eternity if you are staring at a terminal).</p>
<p>My first approach looked like this:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby"><span style="color:#9966CC; font-weight:bold;">for</span> my <span style="color:#ff6633; font-weight:bold;">$a</span> <span style="color:#006600; font-weight:bold;">&#40;</span>keys <span style="color:#006600; font-weight:bold;">%</span>b<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span>
    <span style="color:#9966CC; font-weight:bold;">for</span> my <span style="color:#ff6633; font-weight:bold;">$c</span> <span style="color:#006600; font-weight:bold;">&#40;</span>keys <span style="color:#006600; font-weight:bold;">%</span>d<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span>
        <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#006600; font-weight:bold;">&#40;</span>$c =~ m<span style="color:#006600; font-weight:bold;">/</span>^$a.<span style="color:#006600; font-weight:bold;">+</span>$<span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span>
            <span style="color:#CC0066; font-weight:bold;">print</span> <span style="color:#996600;">&quot;bingo!<span style="color:#000099;">\n</span>&quot;</span>;
        <span style="color:#006600; font-weight:bold;">&#125;</span>
    <span style="color:#006600; font-weight:bold;">&#125;</span>
<span style="color:#006600; font-weight:bold;">&#125;</span></pre></div></div>

<p>You see, the keys in the second hash (%d) always look like the keys in the first hash (%b) with the only difference, that they contain the key plus some other stuff. So if $a looks like &#8220;abc&#8221;, $c looks like &#8220;abc123&#8243;. Now, if you have 2 hashes with &#8211; let&#8217;s say &#8211; 5000 keys and values, you can easily calculate how long this could take&#8230;. (5000 x 5000 = 25.000.000) &#8230; as I already said: it takes FOREVER!</p>
<p>Now, after some searching around I found a very nice solution on the Linux and Unix Forums from a guy called &#8220;pludi&#8221;. He recommended a grep-approach. Here is now my remodelled version:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby"><span style="color:#9966CC; font-weight:bold;">for</span> my <span style="color:#ff6633; font-weight:bold;">$a</span> <span style="color:#006600; font-weight:bold;">&#40;</span>keys <span style="color:#006600; font-weight:bold;">%</span>b<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span>
    <span style="color:#9966CC; font-weight:bold;">for</span> my <span style="color:#ff6633; font-weight:bold;">$c</span> <span style="color:#006600; font-weight:bold;">&#40;</span>grep <span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#006600; font-weight:bold;">/</span>^$a.<span style="color:#006600; font-weight:bold;">+</span>$<span style="color:#006600; font-weight:bold;">/</span> <span style="color:#006600; font-weight:bold;">&#125;</span> keys <span style="color:#006600; font-weight:bold;">%</span>d<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span>
        <span style="color:#CC0066; font-weight:bold;">print</span> <span style="color:#996600;">&quot;bingo!<span style="color:#000099;">\n</span>&quot;</span>;
    <span style="color:#006600; font-weight:bold;">&#125;</span>
<span style="color:#006600; font-weight:bold;">&#125;</span></pre></div></div>

<p>Voila. Instead of taking 2 minutes, the loop now runs through in 15 seconds. <img src='http://ap0calypse.agitatio.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I love Perl <img src='http://ap0calypse.agitatio.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ap0calypse.agitatio.org/articles/how-to-search-a-hash-key-using-regular-expressions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>android + ASE + Perl = </title>
		<link>http://ap0calypse.agitatio.org/articles/android-ase-perl</link>
		<comments>http://ap0calypse.agitatio.org/articles/android-ase-perl#comments</comments>
		<pubDate>Fri, 02 Jul 2010 12:43:57 +0000</pubDate>
		<dc:creator>ap0calypse</dc:creator>
				<category><![CDATA[amusing]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://ap0calypse.agitatio.org/?p=281</guid>
		<description><![CDATA[just started playing with my new motorola milestone with android 2.1. 
I had no idea how much fun it is to write perl-programs for this nice little device. I use the ASE (android scripting environment) which also supports python, lua, ruby &#8230;
You can get it on their website.
I guess I will write some programs soon [...]]]></description>
			<content:encoded><![CDATA[<p>just started playing with my new motorola milestone with android 2.1. <img src='http://ap0calypse.agitatio.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
I had no idea how much fun it is to write perl-programs for this nice little device. I use the ASE (android scripting environment) which also supports python, lua, ruby &#8230;</p>
<p>You can get it on <a href="http://code.google.com/p/android-scripting/">their website</a>.</p>
<p>I guess I will write some programs soon to see what&#8217;s possible. The only thing that sucks on the milestone is, that the dollar sign is only available via touchpad. That&#8217;s REALLY annoying. :/</p>
]]></content:encoded>
			<wfw:commentRss>http://ap0calypse.agitatio.org/articles/android-ase-perl/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oebbquery &#8211; a small train-connection-retrieval-tool :P</title>
		<link>http://ap0calypse.agitatio.org/articles/oebbquery-a-small-train-connection-retrieval-tool-p</link>
		<comments>http://ap0calypse.agitatio.org/articles/oebbquery-a-small-train-connection-retrieval-tool-p#comments</comments>
		<pubDate>Thu, 17 Jun 2010 12:46:53 +0000</pubDate>
		<dc:creator>ap0calypse</dc:creator>
				<category><![CDATA[amusing]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://ap0calypse.agitatio.org/?p=275</guid>
		<description><![CDATA[ok, today I finished my work at the fancy little script I mentioned yesterday. You can download it now here. Because wordpress for some reason doesn&#8217;t allow me to upload files without a filename-extension (grrr) it now has a txt-ending. please just ignore the extension &#8230;..
you call the script like this:

$ ./oebbquery &#34;Innsbruck Hbf&#34; &#34;Wörgl [...]]]></description>
			<content:encoded><![CDATA[<p>ok, today I finished my work at the fancy little script I mentioned <a href="http://ap0calypse.agitatio.org/articles/how-to-get-train-departure-information-for-your-console-p">yesterday</a>. You can download it now <a href="http://ap0calypse.agitatio.org/wp-content/uploads/2010/06/oebbquery.txt">here</a>. Because wordpress for some reason doesn&#8217;t allow me to upload files without a filename-extension (grrr) it now has a txt-ending. please just ignore the extension &#8230;..</p>
<p>you call the script like this:</p>

<div class="wp_syntax"><div class="code"><pre class="bash">$ .<span style="color: #000000; font-weight: bold;">/</span>oebbquery <span style="color: #ff0000;">&quot;Innsbruck Hbf&quot;</span> <span style="color: #ff0000;">&quot;Wörgl Hbf&quot;</span>
Connections from Innsbruck Hbf to Wörgl Hbf:
&nbsp;
Departure  Arrival  Duration  Changes  Train<span style="color: #7a0874; font-weight: bold;">&#40;</span>s<span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000;">15</span>:<span style="color: #000000;">13</span>      <span style="color: #000000;">15</span>:<span style="color: #000000;">59</span>     <span style="color: #000000;">0</span>:<span style="color: #000000;">46</span>     <span style="color: #000000;">0</span>        rex 
<span style="color: #000000;">15</span>:<span style="color: #000000;">28</span>      <span style="color: #000000;">16</span>:<span style="color: #000000;">24</span>     <span style="color: #000000;">0</span>:<span style="color: #000000;">56</span>     <span style="color: #000000;">0</span>        s 
<span style="color: #000000;">15</span>:<span style="color: #000000;">54</span>      <span style="color: #000000;">16</span>:<span style="color: #000000;">28</span>     <span style="color: #000000;">0</span>:<span style="color: #000000;">34</span>     <span style="color: #000000;">0</span>        oec</pre></div></div>

<p>Please be sure to use the correct names of the stations. for example: &#8220;wörgl&#8221; doesn&#8217;t work, but &#8220;Wörgl Hbf&#8221; works. You have to use the names provided by the oebb-website.</p>
<p>the output looks now like this:<br />
<img src="http://ap0calypse.agitatio.org/wp-content/uploads/2010/06/blubb.jpg" alt="blubb" title="blubb" width="448" height="499" class="alignnone size-full wp-image-278" /></p>
<p>have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://ap0calypse.agitatio.org/articles/oebbquery-a-small-train-connection-retrieval-tool-p/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>how to get train departure information for your console :P</title>
		<link>http://ap0calypse.agitatio.org/articles/how-to-get-train-departure-information-for-your-console-p</link>
		<comments>http://ap0calypse.agitatio.org/articles/how-to-get-train-departure-information-for-your-console-p#comments</comments>
		<pubDate>Wed, 16 Jun 2010 14:13:44 +0000</pubDate>
		<dc:creator>ap0calypse</dc:creator>
				<category><![CDATA[amusing]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://ap0calypse.agitatio.org/?p=271</guid>
		<description><![CDATA[hi guys,
I just spent 2 hours on a little project here. With this little script written in Perl by using LWP you now have the possibility to view train-connections from A to B in your terminal. You can then use this output to process it with conky or just any application you want. Here is [...]]]></description>
			<content:encoded><![CDATA[<p>hi guys,</p>
<p>I just spent 2 hours on a little project here. With this little script written in Perl by using LWP you now have the possibility to view train-connections from A to B in your terminal. You can then use this output to process it with conky or just any application you want. Here is a screenshot:</p>
<p><img src="http://ap0calypse.agitatio.org/wp-content/uploads/2010/06/trains.jpg" alt="trains" title="trains" width="491" height="610" class="alignnone size-full wp-image-272" /></p>
<p>As you can see, i used it to display it with conky by executing it once every 600 seconds.</p>
<p>As soon as I have cleaned up the code to make it easier to read, you can download it here.</p>
]]></content:encoded>
			<wfw:commentRss>http://ap0calypse.agitatio.org/articles/how-to-get-train-departure-information-for-your-console-p/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>endorsing calcurse :)</title>
		<link>http://ap0calypse.agitatio.org/articles/endorsing-calcurse</link>
		<comments>http://ap0calypse.agitatio.org/articles/endorsing-calcurse#comments</comments>
		<pubDate>Wed, 02 Sep 2009 09:42:14 +0000</pubDate>
		<dc:creator>ap0calypse</dc:creator>
				<category><![CDATA[amusing]]></category>
		<category><![CDATA[artistic]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://ap0calypse.agitatio.org/?p=249</guid>
		<description><![CDATA[Today I found a very nice ncurses-based calendar tool named calcurse. At first it is a bit hard to get used to it, but once you figured out how it works, you&#8217;ll love it.
Friends of console applications will love it anyway  . I have always been searching for a reasonable console tool for this [...]]]></description>
			<content:encoded><![CDATA[<p>Today I found a very nice ncurses-based calendar tool named calcurse. At first it is a bit hard to get used to it, but once you figured out how it works, you&#8217;ll love it.<br />
Friends of console applications will love it anyway <img src='http://ap0calypse.agitatio.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . I have always been searching for a reasonable console tool for this task. Now I found one <img src='http://ap0calypse.agitatio.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here is the link to the website:<br />
<a href="http://culot.org/calcurse/">calcurse</a></p>
<p>I&#8217;m using it as my primary calendar application to get an overview of my daily tasks and events.</p>
<p>Here a screenshot of me entering my university lessons <img src='http://ap0calypse.agitatio.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> :<br />
<div id="attachment_251" class="wp-caption alignnone" style="width: 310px"><a href="http://ap0calypse.agitatio.org/wp-content/uploads/2009/09/calcurse.png"><img src="http://ap0calypse.agitatio.org/wp-content/uploads/2009/09/calcurse-300x166.png" alt="entering stuff in calcurse" title="calcurse" width="300" height="166" class="size-medium wp-image-251" /></a><p class="wp-caption-text">entering stuff in calcurse</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://ap0calypse.agitatio.org/articles/endorsing-calcurse/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>one step forward</title>
		<link>http://ap0calypse.agitatio.org/articles/one-step-forward</link>
		<comments>http://ap0calypse.agitatio.org/articles/one-step-forward#comments</comments>
		<pubDate>Mon, 24 Aug 2009 09:50:42 +0000</pubDate>
		<dc:creator>ap0calypse</dc:creator>
				<category><![CDATA[amusing]]></category>
		<category><![CDATA[biology]]></category>
		<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://ap0calypse.agitatio.org/?p=244</guid>
		<description><![CDATA[hi guys,
in near future you&#8217;ll see more articles because I decided to quit my current job and start to study biology  .
I&#8217;m going to do my job until 23th of September.
]]></description>
			<content:encoded><![CDATA[<p>hi guys,</p>
<p>in near future you&#8217;ll see more articles because I decided to quit my current job and start to study biology <img src='http://ap0calypse.agitatio.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>I&#8217;m going to do my job until 23th of September.</p>
]]></content:encoded>
			<wfw:commentRss>http://ap0calypse.agitatio.org/articles/one-step-forward/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>huntersim 0.1 &#8211; my first simulation</title>
		<link>http://ap0calypse.agitatio.org/articles/huntersim-01-my-first-simulation</link>
		<comments>http://ap0calypse.agitatio.org/articles/huntersim-01-my-first-simulation#comments</comments>
		<pubDate>Wed, 24 Jun 2009 11:08:35 +0000</pubDate>
		<dc:creator>ap0calypse</dc:creator>
				<category><![CDATA[amusing]]></category>
		<category><![CDATA[artistic]]></category>
		<category><![CDATA[biology]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://ap0calypse.agitatio.org/?p=229</guid>
		<description><![CDATA[hi guys,
some days ago I decided to write a little simulation in Perl. Well, &#8230; here is the result (huntersim-0.1). The package contains a README where everything should be explained.
Have FUN!
UPDATE:
Because people want to see pics:



]]></description>
			<content:encoded><![CDATA[<p>hi guys,</p>
<p>some days ago I decided to write a little simulation in Perl. Well, &#8230; here is the result (<a href="http://ap0calypse.agitatio.org/wp-content/uploads/2009/06/huntersim-01tar.gz">huntersim-0.1</a>). The package contains a README where everything should be explained.</p>
<p>Have FUN!</p>
<p>UPDATE:</p>
<p>Because people want to see pics:</p>
<p><a href="http://ap0calypse.agitatio.org/wp-content/uploads/2009/06/screen-huntersim.png"><img class="alignnone size-medium wp-image-232" title="screen-huntersim" src="http://ap0calypse.agitatio.org/wp-content/uploads/2009/06/screen-huntersim-300x164.png" alt="" width="300" height="164" /></a></p>
<p><a href="http://ap0calypse.agitatio.org/wp-content/uploads/2009/06/huntersim-01tar.gz"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ap0calypse.agitatio.org/articles/huntersim-01-my-first-simulation/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Happy Towel-Day 2009!</title>
		<link>http://ap0calypse.agitatio.org/articles/happy-towel-day-2009</link>
		<comments>http://ap0calypse.agitatio.org/articles/happy-towel-day-2009#comments</comments>
		<pubDate>Mon, 25 May 2009 06:33:01 +0000</pubDate>
		<dc:creator>ap0calypse</dc:creator>
				<category><![CDATA[amusing]]></category>
		<category><![CDATA[artistic]]></category>
		<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://ap0calypse.agitatio.org/?p=218</guid>
		<description><![CDATA[I hope you all enjoy the towel day this year. Wear your towel!
Maybe I&#8217;ll post some pictures later  
]]></description>
			<content:encoded><![CDATA[<p>I hope you all enjoy the towel day this year. Wear your towel!<br />
Maybe I&#8217;ll post some pictures later <img src='http://ap0calypse.agitatio.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ap0calypse.agitatio.org/articles/happy-towel-day-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oh &#8230; I nearly forgot</title>
		<link>http://ap0calypse.agitatio.org/articles/oh-i-nearly-forgot</link>
		<comments>http://ap0calypse.agitatio.org/articles/oh-i-nearly-forgot#comments</comments>
		<pubDate>Mon, 20 Apr 2009 07:57:43 +0000</pubDate>
		<dc:creator>ap0calypse</dc:creator>
				<category><![CDATA[amusing]]></category>
		<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://ap0calypse.agitatio.org/?p=204</guid>
		<description><![CDATA[&#8230;. the towel-day 
Wear your towel! Know where it is!
To remind my readers (me, me &#8230; and me) about this incredibly important event, I&#8217;ll put this picture on top of the blog.

]]></description>
			<content:encoded><![CDATA[<p>&#8230;. the towel-day <img src='http://ap0calypse.agitatio.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Wear your towel! Know where it is!</p>
<p>To remind my readers (me, me &#8230; and me) about this incredibly important event, I&#8217;ll put this picture on top of the blog.</p>
<p><a href="http://www.towel-day.com/de" target="_blank"><img src="http://www.towel-day.com/counter.png" alt="Towel Day - Keine Panik" border="0"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ap0calypse.agitatio.org/articles/oh-i-nearly-forgot/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2.6.28.3 + slackware + eee = </title>
		<link>http://ap0calypse.agitatio.org/articles/26283-slackware-eee</link>
		<comments>http://ap0calypse.agitatio.org/articles/26283-slackware-eee#comments</comments>
		<pubDate>Fri, 06 Feb 2009 11:28:40 +0000</pubDate>
		<dc:creator>ap0calypse</dc:creator>
				<category><![CDATA[amusing]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://ap0calypse.agitatio.org/?p=166</guid>
		<description><![CDATA[I&#8217;m just posting a small article to tell you that my EEE 701 now works like a charm. I was messing around with the kernel for a couple of days now to find out why my webcam didn&#8217;t work until yesterday, when I discovered that I disabled it in the BIOS-settings &#8230; Yeah, I know, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just posting a small article to tell you that my EEE 701 now works like a charm. I was messing around with the kernel for a couple of days now to find out why my webcam didn&#8217;t work until yesterday, when I discovered that I disabled it in the BIOS-settings &#8230; Yeah, I know, &#8230; I&#8217;m an idiot &#8230; Oh rly? &#8230; Ya&#8230;. Rly!</p>
<p>Well, everything works now. I&#8217;m currently playing around with <a href="http://motion.sourceforge.net">motion</a>, a nice tool for capturing pictures from a webcam. </p>
<p>Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://ap0calypse.agitatio.org/articles/26283-slackware-eee/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
