ImageWell

April 11th, 2003

[Original Link] Some bits of software are really elegant in their simplicity. Imagewell is brilliant – small, simple, useful, and with great online help. Congrats to Xtralean and thanks to John Naughton and John Robb for the link.

Getting at your data

April 3rd, 2003

Possibly the best aspect of OpenOffice is its open file format.. Here’s a very crude quick and easy way on a Unix platform to get at something close to the raw text in an OO document:

   unzip -p mydocument.sxw  content.xml | sed 's/<[^>]*>/ /g'

This extracts the contents of the document as XML, then strips out most XML tags. Could be improved in many ways, but this is fine if you want to run the text through grep, wc etc or just want to get your paragraphs into a text editor. Is any normal user likely to do this? No, but it’s important that it can be done, even on a machine which knows nothing about OpenOffice.

(Here’s why I think this sort of thing is important, by the way.)

Benefits of budget cuts

April 2nd, 2003

[Original Link] From Robert Cringely’s article:

Sun Microsystems recently sponsored a major seminar at George
Washington University in the Washington area and the federal
government’s IT people attended. One source said that the
present administration has so strangled the budgets of
government agencies, especially research and education, that
they’re now considering dumping Microsoft’s licensing schemes
and transitioning to open-source Linux.

Thanks to Scott Weikart for the link.