
René's old blog
Whatever I feel like posting, whenever
This site goes back some twenty-five years, so it is bound to be full of stale links and irrelevant information. It is, at best, updated irregularly.
-

A few weeks ago we got our Reed Paddle Suits, and we had to try them immediately. The weather was nice and calm – there wasn’t a wind blowing and wave height were to be measured in centimeters – so…
-

Blog moved to WordPress
I finally got my act together at moved this blog to WordPress. There’s still a few lose ends, some uploaded pictures are missing and will have to be added by hand, and the top graphic needs replacing. It’ll probably make…
-
More Kayak Photos
I have picked some of the better photos from the excursions we’ve made, and uploaded them to Flickr. There’s a least a few worth looking at 🙂
-

Finally Kayak Owner
We started paddling mid August, and have since been kayaking two or three times a week, and we’ve logged almost 200 km each in less than three months. Rental kayak costs are mounting and the economy starting pointing towards buying…
-

Suction Cup Camera Mounts
It can be a bit difficult shooting pictures when you’re sitting in your kayak, especially if there’s a bit of action around you, and it can be impractical having the camera dangling around your wrist when paddling or manoeuvring. Fortunately,…
-

Waterproff cameras
If you want to take photos from your kayak, you’ll want a waterproof camera that’s easy to operate. I certainly wouldn’t recommend taking you expensive SLR 🙂 I have search a bit on the net, and apparently there are only…
-
Merry Christmas
I hope you’ll find a lot of Nokia 770s under the trees 🙂
-
Useful guide to everything DNS and Bind
There’s a very useful guide to bind and DNS at http://www.zytrax.com/books/dns/.
-
Emacs wiki
I just stumbled upon http://www.emacswiki.org/cgi-bin/wiki/SiteMap, which looks like a very nice place. I found a newer version of longlines.el, for example.
-
Converting AAC audio files to mp3
This command will convert an AAC audio file to an mp3 audio file: ffmpeg -i input.m4a -acodec mp3 -ac 2 -ab 128 output.mp3 Batch conversion can be done with for i in *.m4a; do ffmpeg -i “$i” -acodec mp3 -ac…
-
Longest Common Prefix in perl
I can’t help finding this slightly elegant. Unfortunately I no longer remember where the idea came from. #!/usr/bin/perl use strict; use warnings; sub longest_common_prefix { my $prefix = shift; for (@_) { chop $prefix while (! /^$prefix/); } return $prefix;…
-
Xterm and the clipboard
It has long been an annoyance that xterm doesn’t follow the same rules with regard to the clipboard as most GTK/Gnome applications. Xterm by default only uses the PRIMARY selection for copy and paste, and follows the implicit selection model…