Posted in Geekery on Nov 23rd, 2009
I recently needed to move a very simple ASP site to Apache for archival purposes. There was nothing of importance that the dynamic ASP was doing and as it was just for an archive, it made the most sense to turn it into simple HTML (as the whole site probably should have been in the [...]
Read Full Post »
Posted in Geekery on Nov 16th, 2009
I wanted to convert some high resolution TIFFs that Lisa took of Bill’s paintings recently and came up with this quick and dirty conversion into JPEG: 1for i in *.tif; do tifftopnm "$i" | pnmtojpeg > "${i%.tif}.jpeg"; done That’ll convert all .tif files in a directory to JPEG (using default processing setting). I didn’t have [...]
Read Full Post »
Posted in Geekery on Oct 28th, 2009
I’ve had Evolution hang on start up a few times lately, I keep forgetting what I’ve done to fix it so I’m noting it here. All I’ve needed to do is to kill evolution-data-server and try to start Evolution again, so to fix this issue: 1killall evolution-data-server-2.28
Read Full Post »
Posted in Geekery on Oct 8th, 2009
Apple Remote Desktop allows you to graphically administer remote OS X machines, including OS X Server. Apple uses some custom encryption over the top of the standard VNC protocol so if you are connecting from a Linux client using vncviewer you’ll get the following error message: Server did not offer supported security type To set [...]
Read Full Post »
Posted in Geekery on Sep 10th, 2009
As a proof of concept, yesterday I moved our Confluence installation to Solaris under VMWare from it’s current home on a Linux box. I won’t go into the background as to why I was doing this (most people would be shocked hearing I would move anything from Linux!) but the reason it was a proof [...]
Read Full Post »