Merry Christmas 2008
The Shabby Trabi.
Garf Technology Christmas card 2008.
Garf Technology Christmas card 2008.
This is a crude but effective way to make one of my favourite Windows applications, Cerious Software’s ThumbsPlus! version 6 or 7 work reasonably well on Linux, by using Codeweavers Crossover. This is something of a bodge and it has come about more by trial and error rather than by rational scientific reasoning – so…
Seems that as London and the midlands – not to mention much of central Europe – sizzle in 40°C temperatures, our planet is to be hit with unusual weather of a different kind: a solar storm. Activity in the upper atmosphere of the sun, known as the ‘corona’, creates huge ‘solar flares’. These generate powerful…
Decided to take visit the flamingoes in Hong Kong’s amazing Botanical Gardens.
Seems as if it were only the day before yesterday, but it is in fact thirty years to the day since GarfNet had its own domain. Granted, this represents a somewhat trivial achievement on the overall scheme of things. Frankly never I actually achieved all the things I hoped I would with GarfNet. Like it…
If you do a google search for “disruptrive technology” and the word “Linux”, you’re likely to get over 50,000 hits. Trouble is that many of the articles that appear are quite old, often going back as far as 2001 and further. A lot has happened in the last few years… For a start, today we…
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…