Month of August 2008

Sins of omission

August is a dull month, but it's nearly over now anyway. So, what we have left unwritten-about:

LIMited traction

From http://www.anothercyclingforum.com/index.php?action=profile;u=2985;sa=showPosts :

I went to Hillingdon Cycle Circuit today [Sunday], to watch (and marshal for) the London Inline Marathon.  It rained.  It started dropping a few drops when I was about five minutes from home, in Clerkenwell, then it started raining seriously at Marble Arch, then it continued to rain seriously more or less all the way there after that.

After the races I got a lift to a friend's house near Twickenham for food and beer (but I repeat myself), then rode back.  Approx 15 miles each way.

I made three useful discoveries about my supposedly wet-weather-capable bike: one, that the braking in the wet is hugely and horrifically pants; two, that a slightly underinflated gatorskin on wet ground has a way of skating over the surface which is most reminiscent of a politician being interviewed on the Today programme; three, that on a damp and humid day my SPD shoes will retain enough water that if I get my feet soaked at 9am the skin will have turned wrinkly by 2pm. 

Still, the racing was good. And the ride back was fun

FRAME IN GOOD CON

From http://www.anothercyclingforum.com/index.php?topic=51025.msg724875#msg724875 :

I was idly speculating on buying a cheap steel bike to fixedise, because turning stupid high gears is probably good skate cross-training for the thighs.  Of course, there is no such thing as a cheap steel bike on e-bay any more, because everyone else within two miles of here (I live in Hoxton) is also doing exactly that.  Looking for bargains in newsagents windows is probably the way forward, but in the meantime I thought I'd try gumtree

Every ad tells a story.  As a cyclist with even a vague grasp on what the different bits are called, you sometimes forget that this is not common knowledge: witness the "very solid" bike with six gears one side, 3 on the other (whu?  won't it overbalance?) - if I'd paid £230 for what looks uncommonly like a knobbly-tyred BSO with bouncy forks, I'd probably have lost enthusiasm for cycling too - or the steed with speed change(gear) in the pipe underneath (in fairness, I think this is a language issue and I'm sure his English is better than my Italian).  This one really caught my eye, though: great to know that it has "good thread on tyres", but looking at the shape of the forks  I wonder if it managed despite that[1] to make friends with a solid object some time in its life.  It's either that or it's an antique from the "hetchins curly" period of frame design ...


[1] yeah yeah, I khow that tread on a road-going bicycle tyre is essentially worthless anyway.  /me hugs his pro2 races

But I repeat myself

I read and write to more forums than I probably have time for, plus usenet plus facebook. Apart from anything else, this often means I forget where I've written something when I later want to refer back to it. So, henceforth if I think it is going to be interesting I can easily blog it as well, by highlighting the relevant bit and clicking on the "Blog this" menu toolbar item in Firefox. It generates a blog entry spookily similar to the two which precede this.

OK, so at the moment that's not entirely true, just because the toolbar button in question is still labelled 'test'. Aside from that, though. It sounds dead simple to implement, and it's only quoting/escaping rules that make it otherwise:

//  ==UserScript==
// @name          Blog to Coruskate
// @namespace     http://www.coruskate.net/
// @description   Create new coruskate blog entry with selected text
// @include       *
// ==/UserScript==
 
unsafeWindow.blog=function () {
    var text=window.getSelection();
    var url=window.location.href;
    if(text) text=text.getRangeAt(0).cloneContents();
    else text='';
    var serializer = new XMLSerializer();
    text = serializer.serializeToString(text);
    var body="From "+url+" :\n"+
    "<blockquote>\n" +
    text +
    "</blockquote>\n";
    ;; cnames have been changed to protect the innocent
    var win=window.open("http://go-away-googlebot.coruskate.net/or/this/bit/newentry?BODY="+
			encodeURIComponent(body));
};
In short, even if I could work out the correct number of percents and ampersands to encode all of that into a javascript: url, I would almost certainly be unable to edit it subsequently. So, that becomes a greasemonkey script and the toolbar bookmark is "javascript:blog()"