Road trip to Hungary, part 17
The final leg, Belgium and then Calais on the north coast of France
The trip that was planned to be about 1700 km each way in fact was over 5500 km, mostly due to our various detours.
The trip that was planned to be about 1700 km each way in fact was over 5500 km, mostly due to our various detours.
Well they say absolute power corrupts. On the other hand the two companies are quite different. The corporate ethos and the attitude towards creativity are almost complete opposites. For example, I never heard any Google execs reported as using expressions such a “embrace, extend and extinguish“… http://en.wikipedia.org/wiki/ Embrace,_extend_and_extinguish And I think or at least I…
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…
Yes. Fully searchable archive currently lives here http://www.garfnet.org.uk/new_mill
This is the fourth article in a series of case studies illustrating the difficulty one has purchasing a PC in the UK without being forced to pay a “Microsoft Tax”. We use Linux on all our PC’s and have done so for several years. Therefore we do not need, nor should we be forced to…
Raspberry π4 for ZoneMinder Part 1 – Raspberry π4 8GB for Zoneminder Part 2 – Update: Raspberry π4 8GB for Zoneminder Part 3 – Another update: Raspberry π4 for Zoneminder (you are here) My π4 Zoneminder has been running for just over two months. Overall I’m pretty happy with it. The main issue I had…
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…