Made mit ein Mac

Axel Springer, the German publishing group, has announced that it is switching all of its 10,000 employees to Macs over the next five years.

More rejoicing in the Apple marketing department, one imagines…

Pooter posts

Oh, and talking of trying old classics in new media… Kevan Davis has made George Grossmith’s The Diary of a Nobody available as a blog at diaryofanobody.net. Nicely done.

I wonder if Pooter would have approved.

Click and clack

Mmm. A classic American public radio show – Car Talk – is making its way onto television, in a new series using animated versions of its hosts, the Magliozzi brothers. I’m quite a fan, though only an occasional listener, but I really wonder about its viability in that medium.

Still, I wish them all the best… after thirty years of making people laugh, they deserve all the success they can get.

CNN has the story. Those of us in other parts of the world can hear the radio show on the Car Talk site.

Illuminati

OK – apologies for the rant… Is it just me, or have light bulbs really gone downhill in recent years? It seems as if scarcely a week goes by without me having to replace one.

I’m sure it wasn’t like that in my childhood. I don’t think we have more in our house than my parents had in theirs, or that we use them more. Perhaps we have a higher proportion of ‘strange’ ones – spotlights, candles, globes… and these varieties haven’t evolved to the same degree as the common-or-garden species?

The worst ones seem to be Philips, but most of the places we shop don’t seem to sell anybody else’s any more. The Philips spotlight bulb I’ve just replaced after a couple of months claimed to have a one year lifetime (based on 3 hours’ use per day). Even if it had managed that, it doesn’t seem like a great achievement, in this day and age.

The low-energy ones often do rather better, as they should, given their cost, but I’m too fond of dimmer switches to be able to change to those in any wholehearted way, and I’m still rather dubious about whether the true environmental benefits over their lifetime, if any, justify the cost and inconvenience…

So tell me, am I just becoming old and cranky, or does somebody still make a good old 60-watter the way they used to when I were a lad?

Seeking the bubble reputation

Adrian van den Heever tells me he has been wondering what to do with all those bottles of champagne he opens but doesn’t finish in one evening; it seems a pity to let the fizz go to waste. The obvious solution – inviting me around to help polish them off – doesn’t work quite so well now he’s in Palo Alto.

So he sought out local expertise and found that some research on the subject had been done at Stanford – almost within walking distance, which is probably just as well.

This is what they found out.

Internet independence

I was visiting the London office of a large internet company today and was planning to demonstrate CODA to them, so was a little distressed when I arrived to discover that their corporate internet connection was down, and they had no connectivity!

It all worked out well, though, because somebody in the group had recently bought a Netgear MBM621 – a 3G-to-ethernet router.

We plugged the CODA kit and my laptop into this, and It Just Worked ™. What’s more, the performance was remarkably good. It would be interesting to see whether it worked well outside the confines of central London, but in this situation, it was a real godsend.

This type of device could be a game-changer; exhibition centres often charge exhibitors phenomenal amounts for internet connections at their stands, for example. That little scam may not be viable for much longer.

Netgear call this little box a ‘modem’, but it’s more of a router; it does DHCP and NAT, and the only downside I could see was that it only has one ethernet port, so you need a switch if you’re plugging in more than one device.

Well worth investigating if you need to set up an impromptu network somewhere.

SSH ProxyCommand

Here’s an exceedingly useful feature of SSH which I only discovered recently.

Imagine that you have a single ‘gateway’ machine on your network which you can connect to from outside using SSH; I do this all the time. You can then use that machine to connect to other machines inside your network in a variety of ways: using the port-forwarding abilities of SSH (the -L and -R options), for example, or simply by running another SSH command from the gateway machine once you’ve connected to it.

But there’s a much tidier way to do it, using the ProxyCommand option.

To connect to internalmachine.mynet.com, just add something like the following to your ~/.ssh/config:

Host internalmachine.mynet.com
     ProxyCommand ssh gateway.mynet.com exec nc %h %p

then you can ssh directly to internalmachine.mynet.com from outside. SSH will connect to the gateway machine and run ‘nc’ to forward the SSH session to the internal machine.

And, of course, you can use it for things layered over SSH, like checkouts from Git or Subversion repositories. Very tidy! I also sometimes add -C to the ssh command so that any access done this way is automatically compressed, even in situations where it was hard to specify that explicitly.

If you’re unlucky enough to find yourself stuck behind a web proxy with no other outgoing access, one very nice-looking use of ProxyCommand is the Corkscrew utility by Pat Padgett.

Hope this is helpful to someone!

Update: there are a few useful extra tips in the comments.

Technology quiz

Here’s a question for you. Which company was responsible for building the first business computer?

IBM, perhaps? Data General? DEC? or Lyons (the British tea company)?

Yes! Well guessed! It was Lyons.

The New York Times tells the story of David Caminer, who worked with Maurice Wilkes to create the LEO, and who died this month.

Build version numbering with Git

The ‘Git’ version-control system is used to develop the Linux kernel, amongst other things, and it’s the most powerful one I’ve used. (And I’m old enough to remember SCCS :-)) It takes some work to get your head around Git, but we’re now using it to develop our CODA system, and it’s been well worth it.

Michael came up with a nice way to number our build versions and has written it up on his blog – might be of interest if you’re using Git already.

If you aren’t, Randall Schwarz’s talk is a good intro.

Mobile thinking

Gordon Brown said recently that improving social mobility is a “national crusade” in which Labour has not made enough progress.

I thought the BBC’s The Week In Westminster programme had some interesting comments from Matthew Taylor, a former advisor to Tony Blair:

I think we should be more critical than we are about the concept of ‘social mobility’, and I think we should set it against the concept of ‘equity’. You can have a society which is socially mobile but very unequal; you can equally have a society that isn’t terribly mobile but where there are high levels of equality, and probably, the evidence suggests, the thing that makes us content overall as a society is more equality than it is mobility, because the pure concept of social mobility means that for everybody who goes up, someone comes down, and generally speaking we’re more frightened about coming down than we are excited about going up.

Politicians talk about social mobility because it’s so much easier to talk about than ‘redistribution’, and because people only understand social mobility as an ‘upward’ concept. If people really thought through was was meant, for example, by a society that was quite happy to let unintelligent middle-class children not succeed then I think people might not see this concept through such rose-tinted spectacles.

For the next few days you can hear the interview here. This segment starts around 21:56 mins in.

© Copyright Quentin Stafford-Fraser