New Old Stock IBM OS/2 Warp 3.0

Abort Retry Fail has a really nice post on opening and installing a new old stock Red Spine release of OS/2 Warp 3.0.

Now, while I’ve played around with OS/2 Warp 4.0 and 4.52 as part of Period Sites in Period Browsers, Warp 3.0 is not one I’ve yet reached.

And how uncanny it looks! Familiar but alien. Windows 3.1 but not. I should really get an instance of this up and running just so I can really feel – rather than just see – the differences between how I expect it to work and how it does work…

Anyway, I strongly suggest going and having a read of the article and a look at the pretty pictures.

Converting PDFs to JPEG sequences using imagemagick

Imagemagick (available from all good package managers) has the ability to split a .pdf file into a set of numbered images via the following incantation…

convert -quality 100 -density 200 -colorspace sRGB <PathToPDF> -flatten <PathToOutputDirectory/>Page-%02d.jpeg

…where, of course, ‘%02d’ represents the auto-numbering element of the incantation.