Do Scheme implementors take hygiene seriously?

Even the vast majority of Scheme systems, the platform that has experimented the most with hygiene, provide unhygienic defmacro-style macros—presumably because not even Scheme implementors take hygiene very seriously.

— Let Over Lambda, Chapter 6
Hygiene is in the standard here.
(via Racket-users)

Battery drain hose location

While installing the power hookup for the Gerbings coat I managed to dislodge the battery drain hose by lifting up the battery (because I wanted to look at it).
Brooke explained that:

The battery vent/drain hose attaches on the right side (as you sit on the bike) and should go to the same place the gas tank filler neck drain hose and the fuel sender drain hose go to. There’s a bracket down near the right foot peg back in somewhere between/near the swing arm and frame. It should be easy to see with the right side panel off the bike.

He was right. Took off the one-screwed-on side panel and the bracket is right there along with the two other tubes. The drain now faces where it should… the ground.
(via C.O.G.)

Custom display sizes with Remote Desktop Connection

Microsoft’s Remote Desktop Connection is a nice piece of software. Wondering how to configure a desktop size so that it would fit perfectly into rotated monitor, I found the directions hereto be very simple:

To set a custom display resolution in an .rdp file

Open the .rdp file in a text editor. Add or change the following settings:

desktopwidth:i:<value>

desktopheight:i:<value>

where <value> is the resolution, such as 1680 or 1050.

The articles goes into detail about other ways to set the values.

Enhanced Ocaml Documentation Version 3.12

The Enhanced Ocaml Documentation is provided by Hendrik Tews; basically it visually highlights any difference between the previous and current version of the documentation. Here is how he does it:

I diff the txt versions of the reference manual and change the html version by hand. For the grammar rule index I use a tool and manual editing.

–Hendrik Tews
Wow. What a labor of love. Be sure to give him a hand!
(via Caml-list)