<?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>Grumble Grumble</title>
	<atom:link href="http://littlesvr.ca/grumble/feed/" rel="self" type="application/rss+xml" />
	<link>http://littlesvr.ca/grumble</link>
	<description>The things that piss me off.</description>
	<lastBuildDate>Fri, 12 Mar 2010 01:23:11 +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>Oh Google, WTF?</title>
		<link>http://littlesvr.ca/grumble/2010/03/11/oh-google-wtf/</link>
		<comments>http://littlesvr.ca/grumble/2010/03/11/oh-google-wtf/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 01:23:11 +0000</pubDate>
		<dc:creator>Andrew Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://littlesvr.ca/grumble/?p=133</guid>
		<description><![CDATA[By Andrew Smith
I have to do research for school. I&#8217;ve been told many a time don&#8217;t use Google. Now Google is giving me a reason to be pissed off.
When the search results come back with PDF files &#8211; I don&#8217;t get to see the link to the PDF where it actually sits, the link I [...]]]></description>
			<content:encoded><![CDATA[<p>By Andrew Smith</p>
<p>I have to do research for school. I&#8217;ve been told many a time don&#8217;t use Google. Now Google is giving me a reason to be pissed off.</p>
<p>When the search results come back with PDF files &#8211; I don&#8217;t get to see the link to the PDF where it actually sits, the link I get is in this form:</p>
<p>http://www.google.ca/url?sa=t&amp;source=web&amp;ct=res&amp;cd=3&amp;ved=0CBcQFjAC&amp;url=http%3A%2F%2Fwww.perforce.com%2Fperforce%2Fconferences%2Fus%2F2009%2FPresentations%2FCohen-CodeReview-slides.pdf&amp;ei=XJWZS4-IMIGSNpSexHo&amp;usg=AFQjCNE2L5ejvkMYs4RMS4mZu9v7nZO9iA</p>
<p>Are you joking? What is the purpose of this? Is it to make me google it every time? Is it to track when I click on the results? Did some asshole think this protects IP? Rather than reformatting that URL for my records I might decide <a href="http://littlesvr.ca/grumble/2009/01/24/bloody-scholarly-papers/">using the library</a> is easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://littlesvr.ca/grumble/2010/03/11/oh-google-wtf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remember how good you are</title>
		<link>http://littlesvr.ca/grumble/2010/01/12/remember-how-good-you-are/</link>
		<comments>http://littlesvr.ca/grumble/2010/01/12/remember-how-good-you-are/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 04:23:10 +0000</pubDate>
		<dc:creator>Andrew Smith</dc:creator>
				<category><![CDATA[Safe For Seneca]]></category>

		<guid isPermaLink="false">http://littlesvr.ca/grumble/?p=130</guid>
		<description><![CDATA[By Andrew Smith
I&#8217;ve been reading about literate programming, and was reminded that most programmers don&#8217;t write comments in their code. Whether to write them or not is a question that&#8217;s asked all the time, in all circles &#8211; starting in school and all the way to teams of masters of the known universe like Linus [...]]]></description>
			<content:encoded><![CDATA[<p>By Andrew Smith</p>
<p>I&#8217;ve been reading about <a href="http://www.literateprogramming.com/">literate programming</a>, and was reminded that most programmers don&#8217;t write comments in their code. Whether to write them or not is a question that&#8217;s asked all the time, in all circles &#8211; starting in school and all the way to teams of masters of the known universe like Linus  (who I&#8217;m assuming is responsible for <a href="http://lxr.linux.no/#linux+v2.6.32/Documentation/CodingStyle#L425">this</a>).</p>
<p>In school I thought comments are good. I&#8217;ve seen a few people who felt the same change their mind once they started writing real software, and I was tempted to drop it myself, but I didn&#8217;t.</p>
<p>I&#8217;ve had the same arguments with myself that you&#8217;re thinking of now. Should I document design, exceptions, explain what complicated code does, go over the assumptions, etc.? This post is not about that, it&#8217;s about something I&#8217;ve realised a few days ago &#8211; a thought that may be slightly original.</p>
<p>Writing comments in my code makes me feel good. I&#8217;m not a design freek and my code goes through a couple of iterations before it&#8217;s even checked into version control, often followed by more restructuring when flaws are found. And then I write comments.</p>
<p>I look over a piece of code and think &#8211; what the hell is this doing, here? Oh &#8211; that&#8217;s to handle the weird case of an idiot unplugging the USB stick before it&#8217;s done. Comment. Man this function is long and hard to read. Several comments throughout telling a story (this being possible explains why it&#8217;s all in one function). Wow, at this moment I can actually grasp how the entire subsystem works &#8211; comments on top of the class and every function. Why is this a member variable and not a local one? Oh yeah, I remember &#8211; that&#8217;s bizarre but it works. Comment.</p>
<p>Did I manage to explain it? As I read my code I remember all the interesting, strange, unfortunate, and neat things I&#8217;ve done. And I write it down in plain english. I feel empowered when I can explain something that appears to be a terrible mess. I think this is why I still do write comments. And I know they&#8217;re useful because when I go back to my code a month later I can actually figure out what&#8217;s where using them.</p>
<p>Maybe it will work for you too?</p>
]]></content:encoded>
			<wfw:commentRss>http://littlesvr.ca/grumble/2010/01/12/remember-how-good-you-are/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APNG is still alive</title>
		<link>http://littlesvr.ca/grumble/2010/01/11/apng-is-still-alive/</link>
		<comments>http://littlesvr.ca/grumble/2010/01/11/apng-is-still-alive/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 07:32:37 +0000</pubDate>
		<dc:creator>Andrew Smith</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Safe For Seneca]]></category>

		<guid isPermaLink="false">http://littlesvr.ca/grumble/?p=125</guid>
		<description><![CDATA[By Andrew Smith
I&#8217;ve been running my more-or-less regular backup of littlesvr.ca, and found that yet again the online APNG assembler data directory is the one taking most of the time. Turns out that even though I cleared it a few months ago there is over 4GB of PNG files in there (half of that &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>By Andrew Smith</p>
<p>I&#8217;ve been running my more-or-less regular backup of littlesvr.ca, and found that yet again the online APNG assembler data directory is the one taking most of the time. Turns out that even though I cleared it a few months ago there is over 4GB of PNG files in there (half of that &#8211; 5800 APNG files).</p>
<p>That&#8217;s really interesting &#8211; it means APNG usage has actually grown in the last year. Partly that might be explained by ongoing support in Firefox, but surely that&#8217;s not the only explanation. I don&#8217;t know what&#8217;s really driving the growth. I just know it isn&#8217;t me.</p>
<p>On the one hand it&#8217;s great that people took over (e.g. Max Stepin has been diligently maintaining the APNG patch for well over a year now) but on the other hand it&#8217;s sad that the project survived without me &#8211; I guess I wasn&#8217;t that important :)</p>
<p>I have been feeling sad about such things lately. I always do my best to bootstrap a project and then pass it on to someone else to maintain. This way I can keep doing new and exciting things while expanding the breadth of my knowledge and skills, and increasing the impact I have overall. But damn it&#8217;s depressing when I&#8217;m in between projects. I feel useless &#8211; not wanted and not needed.</p>
<p>Should I just accept that there is only so much one can do in a lifetime, and specialise in some irrelevant field? Become normal? What a dreadful thought.</p>
]]></content:encoded>
			<wfw:commentRss>http://littlesvr.ca/grumble/2010/01/11/apng-is-still-alive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oh my god, don&#8217;t use plural forms</title>
		<link>http://littlesvr.ca/grumble/2009/11/17/oh-my-god-dont-use-plural-forms/</link>
		<comments>http://littlesvr.ca/grumble/2009/11/17/oh-my-god-dont-use-plural-forms/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 07:19:58 +0000</pubDate>
		<dc:creator>Andrew Smith</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Safe For Seneca]]></category>

		<guid isPermaLink="false">http://littlesvr.ca/grumble/?p=118</guid>
		<description><![CDATA[By Andrew Smith
There is a magic thing called gettext. It&#8217;s magic because it allows some random Joe on the internet with no experience in programming to translate your application into his language. He does this by editing a .po file, then sends it to you, and you just include that file in your build system.
Ok [...]]]></description>
			<content:encoded><![CDATA[<p>By Andrew Smith</p>
<p>There is a magic thing called gettext. It&#8217;s magic because it allows some random Joe on the internet with no experience in programming to translate your application into his language. He does this by editing a .po file, then sends it to you, and you just include that file in your build system.</p>
<p>Ok there is some plumbing you need to enable that, but really it&#8217;s worth it.</p>
<p>In one of my applications I followed the advice in the gettext manual and used plural forms for messages. That is rather than saying &#8220;%d file(s)&#8221; the string had two forms: &#8220;%d file&#8221; (if %d is 1) and &#8220;%d files&#8221; (if %d is not one). This is specified in the po file like so:</p>
<blockquote><p>&#8220;Plural-Forms: nplurals=2; plural= n!=1;\n&#8221;</p>
<p>msgid &#8220;%d file&#8221;<br />
msgid_plural &#8220;%d files&#8221;<br />
msgstr[0] &#8220;&#8221;<br />
msgstr[1] &#8220;&#8221;</p></blockquote>
<p>But of course different languages have different singular/plural rules. For example in Russian 0, 1, 2, and 5 have different plural forms. That means the russian translator has to figure out how this whole system works in order to translate strings with plural forms.</p>
<p>These translators are volunteers. That they do it at all is amazing. Having them read the gettext manual (which doesn&#8217;t have a lot of examples like it should) is disrespectful and unproductive. You will get fewer translations of not-as-good quality if you use plural forms.</p>
<p>I know, I learned this the hard way. One of my programs uses plural forms and another doesn&#8217;t. I have spent way too much time explaining to people how this works, and I am sure some of them ignored what I said and just gave me whatever compiles.</p>
<p>And believe me figuring this out isn&#8217;t easy. I mentioned the russian example &#8211; honestly I have no idea what the rules are exactly (who ever thinks of these things?) and I speak russian, and I maintain the application. How can I ask Joe random to understand this?</p>
<p>There you go. Use plural forms at your own peril. The gettext manual lies, plural forms are not a good thing and the problems they cause are bigger than the one problem they solve. I have just got a new translation, and guess what &#8211; the two strings with plural forms are untranslated. So I have to get a headache explaining this yet again, while kicking myself in the head for buying into the gettext dogma.</p>
]]></content:encoded>
			<wfw:commentRss>http://littlesvr.ca/grumble/2009/11/17/oh-my-god-dont-use-plural-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So this is why they top-post</title>
		<link>http://littlesvr.ca/grumble/2009/11/05/so-this-is-why-they-top-post/</link>
		<comments>http://littlesvr.ca/grumble/2009/11/05/so-this-is-why-they-top-post/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 16:46:23 +0000</pubDate>
		<dc:creator>Andrew Smith</dc:creator>
				<category><![CDATA[Safe For Seneca]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://littlesvr.ca/grumble/?p=107</guid>
		<description><![CDATA[By Andrew Smith
In newsgroups and many mailing lists top-posting (putting your reply above the text you&#8217;re replying to) is a big no-no. You&#8217;ll get flamed even if what you say is very useful, constructive, and nice. I&#8217;ve never quite understood the zealotry, but I figured: whatever, it sort of makes sense &#8211; someone says something, [...]]]></description>
			<content:encoded><![CDATA[<p>By Andrew Smith</p>
<p>In newsgroups and many mailing lists top-posting (putting your reply above the text you&#8217;re replying to) is a big no-no. You&#8217;ll get flamed even if what you say is very useful, constructive, and nice. I&#8217;ve never quite understood the zealotry, but I figured: whatever, it sort of makes sense &#8211; someone says something, and <em>then</em> you reply to it.</p>
<p>But in regular email I have noticed many, many people write their reply at the top of the message. Until recently I had no idea why.</p>
<p>Last week I got a Blackberry. It&#8217;s a nice device, but it has a really small screen compared to a computer. When you open an email on a smartphone, you want to read what matters (the reply in most cases) right away. Scrolling to where the reply begins is painful and very time consuming.</p>
<p>Hm, I nearly posted something educational rather than inflamatory on my blog.. Now if I can just find a way to write blog posts from my Blackberry I may actually post more than once per month. And don&#8217;t give me that retarded <em>Twitter</em> crap.</p>
]]></content:encoded>
			<wfw:commentRss>http://littlesvr.ca/grumble/2009/11/05/so-this-is-why-they-top-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy but impossible way to get rid of spam</title>
		<link>http://littlesvr.ca/grumble/2009/10/14/easy-but-impossible-way-to-get-rid-of-spam/</link>
		<comments>http://littlesvr.ca/grumble/2009/10/14/easy-but-impossible-way-to-get-rid-of-spam/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 04:20:42 +0000</pubDate>
		<dc:creator>Andrew Smith</dc:creator>
				<category><![CDATA[Safe For Seneca]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://littlesvr.ca/grumble/?p=104</guid>
		<description><![CDATA[By Andrew Smith
I&#8217;ve been pondering how one may be able to get rid of spam. Not just what comes into my mailbox, but most spam everywhere. And I found such a simple solution it&#8217;s amazing I haven&#8217;t heard of it before. But of course it will never happen, so that probably explains it.
Spammers rely on [...]]]></description>
			<content:encoded><![CDATA[<p>By Andrew Smith</p>
<p>I&#8217;ve been pondering how one may be able to get rid of spam. Not just what comes into my mailbox, but most spam everywhere. And I found such a simple solution it&#8217;s amazing I haven&#8217;t heard of it before. But of course it will never happen, so that probably explains it.</p>
<p>Spammers rely on that sending even extremely large volumes of spam is nearly free. It takes some effort to find a nice relay and/or create a small botnet, but following that every message a spammer sends is free. I don&#8217;t have the statistics handy, but the &#8216;positive&#8217; response to spam is something like one for every hundred thousand messages sent.</p>
<p>Now imagine it cost five cents to deliver an email. That means to send 100k of messages the spammer would have to pay 5000$, which would make the business not feasible. How easy a solution is that!</p>
<p>And yeah, I know &#8211; gmail filters all the spam for you, and the wrong infrastructure is there, and some people would actually mind paying 5 cents to send an email, but I think it&#8217;s a great idea anyway, even though it is unlikely to happen in this form in my lifetime.</p>
]]></content:encoded>
			<wfw:commentRss>http://littlesvr.ca/grumble/2009/10/14/easy-but-impossible-way-to-get-rid-of-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slackware 13 knows how I feel</title>
		<link>http://littlesvr.ca/grumble/2009/09/15/slackware-13-knows-how-i-feel/</link>
		<comments>http://littlesvr.ca/grumble/2009/09/15/slackware-13-knows-how-i-feel/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 23:43:59 +0000</pubDate>
		<dc:creator>Andrew Smith</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Safe For Seneca]]></category>

		<guid isPermaLink="false">http://littlesvr.ca/grumble/?p=100</guid>
		<description><![CDATA[By Andrew Smith
Here&#8217;s a stupid post, it&#8217;s been a while. I&#8217;ve upgraded Slackware from 12.2 to 13.0 and now it is messing with me. Believe it or not the stupid thing knows when I&#8217;m annoyed and pisses me off even more. Here&#8217;s how it works:
Sometimes my pointer starts jumping all around the screen, for no [...]]]></description>
			<content:encoded><![CDATA[<p>By Andrew Smith</p>
<p>Here&#8217;s a stupid post, it&#8217;s been a while. I&#8217;ve upgraded Slackware from 12.2 to 13.0 and now it is messing with me. Believe it or not the stupid thing knows when I&#8217;m annoyed and pisses me off even more. Here&#8217;s how it works:</p>
<p>Sometimes my pointer starts jumping all around the screen, for no good reason. That&#8217;s not entirely unexpected, I have a crappy wireless mouse &#8211; but sometimes it gets on my nerves. When it does the first thing I do is stop moving and breathing, to see if it moves on its own or it goes nutz. No, it doesn&#8217;t do anything when I freeze.</p>
<p>So I take it easy, and use the mouse for a few seconds normally &#8211; but then it starts messing with me again. I slam my hand on the table, put a firm hand on top of the mouse, and deliberatly move it down &#8211; and it&#8217;s like it dares me to slide it all the way off the table, the pointer keeps jerking back up. Repeat, same thing.</p>
<p>Hardware problem? I thought so too, and replaced the wireless USB mouse with a wired PS2 mouse. Same problem.</p>
<p>You&#8217;ll never guess what it was. Turns out Slackware 13 treats my Microsoft Sidewinder steering wheel as a mouse. So when I press the pedals, it moves the mouse. When I deliberatly move the mouse down I at the same time (without thinking) press the gas pedal, which moves the pointer back up. Great stuff :)</p>
]]></content:encoded>
			<wfw:commentRss>http://littlesvr.ca/grumble/2009/09/15/slackware-13-knows-how-i-feel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop giving out my email address you twats</title>
		<link>http://littlesvr.ca/grumble/2009/07/29/stop-giving-out-my-email-address-you-twats/</link>
		<comments>http://littlesvr.ca/grumble/2009/07/29/stop-giving-out-my-email-address-you-twats/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 03:58:09 +0000</pubDate>
		<dc:creator>Andrew Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://littlesvr.ca/grumble/?p=95</guid>
		<description><![CDATA[By Andrew Smith
Some people don&#8217;t get this, and they&#8217;ll never read this blog post, and there are too many of them to contact individually, so this is just me complaining with no purpose.
When I give you my email address &#8211; I give you my address. I only give it to people because I have no [...]]]></description>
			<content:encoded><![CDATA[<p>By Andrew Smith</p>
<p>Some people don&#8217;t get this, and they&#8217;ll never read this blog post, and there are too many of them to contact individually, so this is just me complaining with no purpose.</p>
<p>When I give you my email address &#8211; I give <em>you</em> <strong>my</strong> address. I only give it to people because I have no desire to filter spam manually, and I have an even lesser desire to have automation delete important mail.</p>
<p>It&#8217;s ok if you share it with someone who would like to get in touch with me. It&#8217;s not ok to put it into any website that&#8217;s not a webmail. I recently got an invitation to facebook. Now facebook knows my address, and I have a feeling some place somewhere it publishes it, or it gives it out to third-party marketers. Or maybe facebook is unusually nice, but you get my point. Do you know what happens as soon as an email address is available in plain text on a public website? I get start getting spam, that&#8217;s what.</p>
<p>I have disposable addresses &#8211; asmithXX and I bounce the number whenever the ammount of spam becomes unbearable. It does happen. my asmith15 (which is published all over the net on mailing list archives and such) now gets 200 spam messages a day, I stopped reading it completely.</p>
<p>Why do you have to fuck up the one address that doesn&#8217;t have a number, the one address that cannot be changed unless I change my name? You insensitive pricks.</p>
<p>Yes no kidding &#8211; I feel strongly about this. But no, this isn&#8217;t the only thing bothering me right now. Expect another post once I figure out how I can express my dissapointment without giving out any details I would rather keep to myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://littlesvr.ca/grumble/2009/07/29/stop-giving-out-my-email-address-you-twats/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>KDE now GPL3 only, wants to scap my contribution?</title>
		<link>http://littlesvr.ca/grumble/2009/06/09/kde-now-gpl3-only-wants-to-scap-my-contribution/</link>
		<comments>http://littlesvr.ca/grumble/2009/06/09/kde-now-gpl3-only-wants-to-scap-my-contribution/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 04:22:59 +0000</pubDate>
		<dc:creator>Andrew Smith</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Safe For Seneca]]></category>

		<guid isPermaLink="false">http://littlesvr.ca/grumble/?p=88</guid>
		<description><![CDATA[By Andrew Smith
I got an email from someone who appears to be helping KDE out with switching their licences. I guess at some point the guys decided that nothing in KDE shall be licenced GPLv2 only, and that&#8217;s the request I got &#8211; change the licence to &#8220;GPL2 or 3&#8243; or &#8220;GPL2 or later&#8221;.
Here are [...]]]></description>
			<content:encoded><![CDATA[<p>By Andrew Smith</p>
<p>I got an email from someone who appears to be helping KDE out with switching their licences. I guess at some point the guys decided that nothing in KDE shall be licenced GPLv2 only, and that&#8217;s the request I got &#8211; change the licence to &#8220;GPL2 or 3&#8243; or &#8220;GPL2 or later&#8221;.</p>
<p>Here are a couple of links describing the process:</p>
<p><a href="http://techbase.kde.org/Policies/Licensing_Policy">http://techbase.kde.org/Policies/Licensing_Policy</a><br />
<a href="http://techbase.kde.org/Projects/KDE_Relicensing">http://techbase.kde.org/Projects/KDE_Relicensing</a></p>
<p>I&#8217;m not surprised to see only people names listed on the second page, no project names. I wonder how much software KDE plans to <em>scrap</em> just because of some overly idealistic dudes with big beards decided the new GPL is much better and must be incompatible with the old GPL.</p>
<p>My piece of code in there is bkisofs &#8211; a library for reading and writing ISO files which is being used by Ark (the KDE archive manager). The integration was not my doing, I only helped &#8211; but the library itself is mine. KDE won&#8217;t explode the funcionality is removed from Ark.</p>
<p>I haven&#8217;t replied to the request yet. On the one hand I don&#8217;t care if it&#8217;s licenced GPL2 or 3, the changes I recall don&#8217;t affect this particular software. On the other hand &#8211; I am opposed to the GPL3 as a matter of principle, and I don&#8217;t like bending over or getting strong-armed into doing things with my volunteer time.</p>
<p>And if I allow this, that will count as a contribution to GPL3 zealotry.</p>
<p>I&#8217;ll go review the GPL3 some time in the next few days. If anyone still reads my blog and has ideas one way or the other &#8211; please share.</p>
]]></content:encoded>
			<wfw:commentRss>http://littlesvr.ca/grumble/2009/06/09/kde-now-gpl3-only-wants-to-scap-my-contribution/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Niagara to Vaughan on a bike, at night</title>
		<link>http://littlesvr.ca/grumble/2009/05/25/niagara-to-vaughan-on-a-bike-at-night/</link>
		<comments>http://littlesvr.ca/grumble/2009/05/25/niagara-to-vaughan-on-a-bike-at-night/#comments</comments>
		<pubDate>Mon, 25 May 2009 14:10:39 +0000</pubDate>
		<dc:creator>Andrew Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://littlesvr.ca/grumble/?p=85</guid>
		<description><![CDATA[By Andrew Smith
Sunday was a nice day, and at about 17:00 I decided to go for a ride to Niagara. Everything went ok on the way there, things look nice in the spring. Got to go onto the hill that you can see south of the QEW, always wanted to do that.
Then it started to [...]]]></description>
			<content:encoded><![CDATA[<p>By Andrew Smith</p>
<p>Sunday was a nice day, and at about 17:00 I decided to go for a ride to Niagara. Everything went ok on the way there, things look nice in the spring. Got to go onto the hill that you can see south of the QEW, always wanted to do that.</p>
<p>Then it started to get dark. And before I know it some idiot turns left in front of me. Luckily he saw me in time and stopped turning, and I&#8217;ve slowed down enough so even if he didn&#8217;t stop I&#8217;d have been ok, but what the hell, is he blind?</p>
<p>A few seconds later I decided to check my headlight. Turned on the high-beam, nothing. Pulled over and sure enough the bulb is dead.</p>
<p>I&#8217;m 200km away from home, with not even enough cash for a motel room (and I have to go to work in the morning anyway), what do I do? I decide to try it &#8211; I rode home all the way, between 21:00 and midnight.</p>
<p>It didn&#8217;t take me long to decide that the QEW is the only way to go. It&#8217;s not that much faster than the smaller roads, but at least there aren&#8217;t any intersections, so I just had to watch the lane changes.</p>
<p>That turned out to be reasonably easy. Stayed in the middle lane most of the way &#8211; it was the slowest one so noone bothered to change into it, and I stayed behind other cars. It got a bit freaky at times where the QEW isn&#8217;t lit up &#8211; I could barely see the road.</p>
<p>In the end I got home with no incidents. Probably didn&#8217;t get pulled over because the cops couldn&#8217;t see me :)</p>
]]></content:encoded>
			<wfw:commentRss>http://littlesvr.ca/grumble/2009/05/25/niagara-to-vaughan-on-a-bike-at-night/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
