Jules Holland on Southampton Common
Jules Holland and UB40 performed on the Common this evening. So I wandered across to take a few snaps.
I’m not a big fan of computer games. Generally I take the view that computers are difficult enough already, without installing software that effectively makes them even more recalcitrant. However, I make an exception for Tux Racer. Originally written back in 2000 by Jasmin Patry, Tux Racer is an open-source winter sports racing video game…
How do I change my Google password is another of those frequently asked questions that customers regularly ask me. It’s one of those “easy when you know how” things. But it is rather nested away amongst all Googles various other settings. So here’s how to do it… Open a browser and go to: https://accounts.google.com. Log in…
Christmas card 2010, “The Old Cemetery in the Snow.” The Old Cemetery runs alongside Southampton Common, about 800 metres from where I live and work. It is a beautiful and peaceful place at any time of year. However, it seems particularly photogenic after a heavy snowfall. Earlier Christmas cards:- https://garfnet.org.uk/cms/category/christmas-cards
Just occasionally one stumbles across a small but very annoying problem, that takes ages to hunt down a fix. However, when you do stumble across the solution, you find it was just one tiny mistake – that should never have been made in the first place. On our site http://www.garfnet.org.uk/coppermine we use a special Coppermine…
I found myself in my wife’s old hometown of Pécs, a small university city and former Roman settlement about 200 km south of the Hungarian capital Budapest. She kindly organised a visit to the Pécsi Sörfőzde or the “Pécs Beer Factory”. This is the largest brewery in the Transdanubian region of Hungary. It also has…
Sometimes in GNU/Linux one needs to set file and directory permissions separately and recursively. This is a way to do it. Set file permissions:- find . -type f -print0 | xargs -0 chmod 644 ; Set directory permissions- find . -type d -exec chmod 755 \{\} \; Note these are powerful commands with which you…