<?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>rullzer &#187; Annoying things</title>
	<atom:link href="http://rullzer.com/blog/category/annoying-things/feed/" rel="self" type="application/rss+xml" />
	<link>http://rullzer.com/blog</link>
	<description>an experience beyond</description>
	<lastBuildDate>Thu, 24 Jun 2010 22:23:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sabnzbd behind apache</title>
		<link>http://rullzer.com/blog/2009/09/04/sabnzbd-behind-apache/</link>
		<comments>http://rullzer.com/blog/2009/09/04/sabnzbd-behind-apache/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 12:14:44 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2009/09/04/sabnzbd-behind-apache/">rullzer</span></dc:creator>
				<category><![CDATA[Annoying things]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Programming things]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[SABnzbd]]></category>
		<category><![CDATA[SABnzbdplus]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/?p=172</guid>
		<description><![CDATA[So after upgrading my sabnzbd installation to version 0.4.11, which I by the way the way should create a better ebuild for and do some dependency cleaning but that is a different story.
Like I was saying after upgrading to version 0.4.11 I decided I wanted to close port 8080 (the one sabnzbd is using) to [...]]]></description>
			<content:encoded><![CDATA[<p>So after upgrading my <a href="http://www.sabnzbd.org/">sabnzbd</a> installation to version 0.4.11, which I by the way the way should create a better ebuild for and do some dependency cleaning but that is a different story.</p>
<p>Like I was saying after upgrading to version 0.4.11 I decided I wanted to close port 8080 (the one sabnzbd is using) to the outside word. Now I know apache has some nice proxy functions so it should be easy.</p>
<p>Make sure apache is compiled with the following modules: <strong>apache2_modules_proxy apache2_modules_proxy_http apache2_modules_proxy_balancer</strong></p>
<p>That was the hard part. Now just add a vhost:<br />
<code><br />
<VirtualHost *:80><br />
  ServerName yourserver.com<br />
  <Location /><br />
    order deny,allow<br />
    deny from all<br />
    allow from all<br />
    ProxyPass http://localhost:8080/sabnzbd/<br />
    ProxyPassReverse http://localhost:8080/sabnzbd/a<br />
  </Location><br />
  ErrorLog /var/log/apache2/error.sabnzb.log<br />
  LogLevel warn<br />
  CustomLog /var/log/apache2/access.sabnzb.log combined<br />
</VirtualHost><br />
</code></p>
<p>This assumes that you have sabnzbd listening on <strong>localhost:8080</strong>. Now you probably do not want the whole world watching your downloads (or deleting them or whatever). So we just add some basic apache authentication, use htpasswd2 to create a file with authorized users and add the following lines into the location block.</p>
<p><code><br />
AuthName "Login Required"<br />
AuthType Basic<br />
AuthUserFile <<PASSWORD FILE>><br />
require valid-user<br />
</code></p>
<p>That is all.<br />
Happy downloading!</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2009/09/04/sabnzbd-behind-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Warning Boxes&#8230;</title>
		<link>http://rullzer.com/blog/2008/11/07/javascript-warning-boxes/</link>
		<comments>http://rullzer.com/blog/2008/11/07/javascript-warning-boxes/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 09:31:42 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2008/11/07/javascript-warning-boxes/">rullzer</span></dc:creator>
				<category><![CDATA[Annoying things]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[idiot sites]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/?p=150</guid>
		<description><![CDATA[I&#8217;m pretty sure you all know what I&#8217;m talking about. When you are at some site and you fill in a form. Doesn&#8217;t matter what is is for. And you submit (everything you entered is OK) and a warning box pops up telling me that everything is send.
First of all why is this a Warning? [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m pretty sure you all know what I&#8217;m talking about. When you are at some site and you fill in a form. Doesn&#8217;t matter what is is for. And you submit (everything you entered is OK) and a warning box pops up telling me that everything is send.</p>
<p>First of all why is this a Warning? I mean I know I pressed <strong>Send</strong>. And besides that if it is a waring they should provide me with contact information on how to get my submission removed.</p>
<p>Now apart from the warning box it could be a message telling me everything is inserted into the database. Let say they have some java script in the background that does that and once everything is inserted it gives the warning (still a warning is wrong but OK). However I checked the source of the site and guess what? All the button does is generate the pop-up after which the stuff is submitted.</p>
<p>Now I&#8217;m wondering why people do this? It does not look good, since it is a wrong pop-up box. It does not speed up the process. It is wasting my time. Which in general I do not like.</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2008/11/07/javascript-warning-boxes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bash.org RSS feed</title>
		<link>http://rullzer.com/blog/2008/10/07/bashorg-rss-feed/</link>
		<comments>http://rullzer.com/blog/2008/10/07/bashorg-rss-feed/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 17:25:11 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2008/10/07/bashorg-rss-feed/">rullzer</span></dc:creator>
				<category><![CDATA[Annoying things]]></category>
		<category><![CDATA[Daily news]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Bash.org]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2008/10/07/bashorg-rss-feed/</guid>
		<description><![CDATA[I really like bash.org. However there is no RSS feed available for the latest quotes. This makes me sad. However after a 15 minute php session (which was more than enough php for me) it is working.
Checkout my bash.org rss feed. It updates every 15 minutes. Enjoy  
]]></description>
			<content:encoded><![CDATA[<p>I really like <a href="http://bash.org">bash.org</a>. However there is no RSS feed available for the latest quotes. This makes me sad. However after a 15 minute php session (which was more than enough php for me) it is working.</p>
<p>Checkout my <a href="http://rullzer.com/bash/bash.rss">bash.org rss feed</a>. It updates every 15 minutes. Enjoy <img src='http://rullzer.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2008/10/07/bashorg-rss-feed/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Acer Projector</title>
		<link>http://rullzer.com/blog/2007/12/26/acer-projector/</link>
		<comments>http://rullzer.com/blog/2007/12/26/acer-projector/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 14:41:44 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2007/12/26/acer-projector/">rullzer</span></dc:creator>
				<category><![CDATA[Annoying things]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2007/12/26/acer-projector/</guid>
		<description><![CDATA[First of all Happy Hollidays. Christmas is almost over and I hope you all had a good time. However on this second Christmasday I found myself at my girlfriends parents waiting for the other guests to arrive. Since it would take roughly 3 hours before they would come I figured I&#8217;d better do something. So [...]]]></description>
			<content:encoded><![CDATA[<p>First of all Happy Hollidays. Christmas is almost over and I hope you all had a good time. However on this second Christmasday I found myself at my girlfriends parents waiting for the other guests to arrive. Since it would take roughly 3 hours before they would come I figured I&#8217;d better do something. So after reading up on some blogs and articles I found wondering what to do next.</p>
<p>They their projector popped into my head. It has an USB-port. My laptop has an USB port. It did not take me to long to find out that I could do some nice things whit that. Acer has some software under windows. I was hoping they would have just posted the protocol online. But no. Ofcourse not. After browsing the Acer website and google. I could not find anything usefull about what command to send to the Projector (it does not help that Acer also creates a whole lot hardware). </p>
<p>So It was time to hookup my Laptop to the proejctor. Everything still works. And I was monitory /dev for any changes. The first thing to catch my eye was a bunch of new stuf in /dev/input. A mouse was automatically recognised. And it even worked. Moving some sort of analog stick around made my mouse move! Isn&#8217;t that magical!</p>
<p>However it is nice and all that I can use it as a mouse but who really cares? Now also tty12 was created. Which seems a lot more interesting. However I had ofcourse no idea what to send to the Projetor in order to get response. Now maybe I&#8217;ll hijack a Windows Laptop tomorrow and sniff some of the command send trough the USB port. </p>
<p>Ah well a nice project to work on during this vacation.</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2007/12/26/acer-projector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connection speed</title>
		<link>http://rullzer.com/blog/2007/11/09/connection-speed/</link>
		<comments>http://rullzer.com/blog/2007/11/09/connection-speed/#comments</comments>
		<pubDate>Fri, 09 Nov 2007 11:17:39 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2007/11/09/connection-speed/">rullzer</span></dc:creator>
				<category><![CDATA[Annoying things]]></category>
		<category><![CDATA[Daily news]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2007/11/09/connection-speed/</guid>
		<description><![CDATA[When I&#8217;m in Amsterdam I&#8217;m hooked up to the internet trough Surfnet.  A network that connects all the universities but also takes care of students. However the network is owned by surfnet they do not maintain it here. That is done by some oter company. So now you know a little bit how it [...]]]></description>
			<content:encoded><![CDATA[<p>When I&#8217;m in Amsterdam I&#8217;m hooked up to the internet trough Surfnet.  A network that connects all the universities but also takes care of students. However the network is owned by surfnet they do not maintain it here. That is done by some oter company. So now you know a little bit how it is organized around here.</p>
<p>So 2 days ago something was wrong with the network. Don&#8217;t ask me what but it just was. All of the sudden no 10 mbit line. No it seemed like I was back at my old 56k6 modem. Damn. Pages not loading instantly. Man that is a pain in the ass. I had totally forgotten what it is like. That grabbing the source code for a random package can actually take more tan 1 minute or so :S</p>
<p>Well it is fixed now and I hope it won&#8217;t happen again.</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2007/11/09/connection-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NFS.. different partitions</title>
		<link>http://rullzer.com/blog/2007/11/05/nfs-different-partitions/</link>
		<comments>http://rullzer.com/blog/2007/11/05/nfs-different-partitions/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 13:35:40 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2007/11/05/nfs-different-partitions/">rullzer</span></dc:creator>
				<category><![CDATA[Annoying things]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NFS]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2007/11/05/nfs-different-partitions/</guid>
		<description><![CDATA[So this weekend I had some spare time. So I decided to reconfigure the samba domain so that when we get a new pc for my sister (wich will run gentoo&#8230; No paying for a windows licence) everyone can login everywhere etc. In order to do that I had to move some files around. But [...]]]></description>
			<content:encoded><![CDATA[<p>So this weekend I had some spare time. So I decided to reconfigure the samba domain so that when we get a new pc for my sister (wich will run gentoo&#8230; No paying for a windows licence) everyone can login everywhere etc. In order to do that I had to move some files around. But it works.</p>
<p>Now I wanted to share some extra stuf on the server. For example the music, some files, photo&#8217;s etc. In windows they are all mounted. So I wanted to do the same on my linux boxes. Should be a piece of cake since a have a share dir on the server that holds all the stuff to be shared.</p>
<p>So I shared that dir via NFS. Mounting went easy. However. all the dirs were empty&#8230; Now why is that? Could it be some kind of dark magic? No it is just that NSF (for security probably) can only acces 1 partition per share. So now I have them all shared seperatly. Not a big deal ofcourse. BUt always good to know.</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2007/11/05/nfs-different-partitions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Laptop on the Way</title>
		<link>http://rullzer.com/blog/2007/09/29/laptop-on-the-way/</link>
		<comments>http://rullzer.com/blog/2007/09/29/laptop-on-the-way/#comments</comments>
		<pubDate>Sat, 29 Sep 2007 09:04:08 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2007/09/29/laptop-on-the-way/">rullzer</span></dc:creator>
				<category><![CDATA[Annoying things]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[TNT Laptop]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2007/09/29/laptop-on-the-way/</guid>
		<description><![CDATA[So the laptop is on its way to me. Which is both good and bad&#8230; It is of course good because I want to play with my new Laptop. Get gentoo on it. Ah well you all know what I mean right? But the bad thing is that I have some homework to do this [...]]]></description>
			<content:encoded><![CDATA[<p>So the laptop is on its way to me. Which is both good and bad&#8230; It is of course good because I want to play with my new Laptop. Get gentoo on it. Ah well you all know what I mean right? But the bad thing is that I have some homework to do this weekend.. In other words it now all is a matter of planning. </p>
<p>Now something else. The laptop is send with TNT, <b>the</b> post service in Holland. Now they have a nice track and trace system which allows me to enter the barcode and the postal code and well I know &#8220;where&#8221; the package is. However for some reason they do not have an rss feed on that. That would be something which it is perfect for. Ah well&#8230; I&#8217;m not sending packages that often&#8230; but still</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2007/09/29/laptop-on-the-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paper jam</title>
		<link>http://rullzer.com/blog/2007/09/12/paper-jam/</link>
		<comments>http://rullzer.com/blog/2007/09/12/paper-jam/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 22:44:41 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2007/09/12/paper-jam/">rullzer</span></dc:creator>
				<category><![CDATA[Annoying things]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2007/09/12/paper-jam/</guid>
		<description><![CDATA[So I was at work 2 hour ago and me and a friend needed to print sometime. So we press the nice icon and expect the printer to do his thing. Normally it does so why not today. But it turns out that it is a special day today. The paper was jammed. But not [...]]]></description>
			<content:encoded><![CDATA[<p>So I was at work 2 hour ago and me and a friend needed to print sometime. So we press the nice icon and expect the printer to do his thing. Normally it does so why not today. But it turns out that it is a special day today. The paper was jammed. But not 1 piece of paper. O no. like 5 pieces of paper. Janking it didn&#8217;t do the trick. I torn the paper apart but that didn&#8217;t fix the jam. After looking at the printer for like 3 minutes we came to the conclusion that the only way to get the paper out was to open the printer. </p>
<p>But as it isn&#8217;t supposed to get jammed we had to get the screwdriver out. So after taking almost every screw out of the printer we finally got the part where the paper was jammed. A lot of poking and torning later all the paper was gone and we could put the printer back together. Now the whole point of this story is&#8230;</p>
<p>A printer always finds a way to get the paper jammed.</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2007/09/12/paper-jam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matlab</title>
		<link>http://rullzer.com/blog/2007/09/10/matlab/</link>
		<comments>http://rullzer.com/blog/2007/09/10/matlab/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 15:06:07 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2007/09/10/matlab/">rullzer</span></dc:creator>
				<category><![CDATA[Annoying things]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2007/09/10/matlab/</guid>
		<description><![CDATA[So today I had my first matlab experience. The exercise was not complete so it was a blast&#8230; I can&#8217;t say I like it much so far. I mean matrix computation are easier than I have ever seen. But common. If I have 1 space to after a ; it all goes wrong. Ah well [...]]]></description>
			<content:encoded><![CDATA[<p>So today I had my first matlab experience. The exercise was not complete so it was a blast&#8230; I can&#8217;t say I like it much so far. I mean matrix computation are easier than I have ever seen. But common. If I have 1 space to after a <b>;</b> it all goes wrong. Ah well I&#8217;m currently compiling octave and koctave so I can work also on it at home. But all of a sudden I had to recompile GCC&#8230; with fortran support. The first time I&#8217;ll ever use that&#8230; Ah well. Lets hope after this no more suprises in relation to matlab.</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2007/09/10/matlab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache upgrade</title>
		<link>http://rullzer.com/blog/2007/09/04/apache-upgrade/</link>
		<comments>http://rullzer.com/blog/2007/09/04/apache-upgrade/#comments</comments>
		<pubDate>Mon, 03 Sep 2007 22:35:36 +0000</pubDate>
		<dc:creator><span property="dc:creator" resource="http://rullzer.com/blog/2007/09/04/apache-upgrade/">rullzer</span></dc:creator>
				<category><![CDATA[Annoying things]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rullzer.com/blog/2007/09/04/apache-upgrade/</guid>
		<description><![CDATA[So today it was time for the big Apache update at my home server.
Of course PHP had to be recompiled but other than that Apache started like a brand new car. Or so it seemed.
I tried visiting one of the sites hosted on the server but I got denied. I tried an other site but [...]]]></description>
			<content:encoded><![CDATA[<p>So today it was time for the big Apache update at my home server.<br />
Of course PHP had to be recompiled but other than that Apache started like a brand new car. Or so it seemed.</p>
<p>I tried visiting one of the sites hosted on the server but I got denied. I tried an other site but again denied. After going trough the logs and the (main) config file I only discovered that the permission was denied by Apache. Now it comes. The Apache config file has been split. So I had to check /etc/apache/modules.d as well. It would have been nice to have that in big blinking text after the emerge&#8230; But it turns out that the default settings were that Apache denied everyone&#8230;. now what is that about&#8230;. A webserver which default setup is to deny everyone&#8230;.</p>
<p>But with that it wasn&#8217;t done.<br />
A new issue with the new Apache is that not all the env vars are set correctly. The user you run under is Apache which it should be but the ~ is set to /root. So the svn viewer a friend of mine made wasn&#8217;t working anymore. Now that was fixed in the end by a simple adjustment in the calling of the code. But never the less it is an annoying thing that it isn&#8217;t set correctly. But I&#8217;m probably not the only one with the problem so maybe a new revision is already on its way.</p>
<p>Apache 2.2 is running sweet now. So take your time for it if you are doing the upgrade. But upgrading in general is not a bad idea of course.</p>
]]></content:encoded>
			<wfw:commentRss>http://rullzer.com/blog/2007/09/04/apache-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
