Converting MKV/BluRay Subtitles

Subtitles come in a myriad of formats, and not all of them work in every container format, and not all containers are as easy to work with. Converting Matroska (mkv) files to MP4s cause issues when the mkv has PGS (Blu-Ray) subtitles. PGS subtitles can be embedded in Matroska video files, but not MP4s. But … Read more

Creating a Linux Console Font

A while back, I found a nice TrueType font that mimicked the old DEC terminals. It was made by taking the ROMs of a DEC VT220, and creating the TTF font based on that data. It occurred to me that it would also make a really great replacement for the linux console font, where it … Read more

To Uninstall MacOS Packages

For some bizarre reason, the package management tools for MacOS do not have an option to uninstall in any easy way. However, if you drop into the Terminal, you can do all the steps by hand relatively easily. There is a command called pkgutil that will give you the information you need. To list all … Read more

Setting Up A New Raspberry Pi

Steps I do when I am setting up a new Raspberry Pi. If using the official LCD screen, for some unknown reason, it still defaults to an upside-down orientation when hooked up. This is simple to fix. Edit /boot/config.txt and add the following line: lcd_display=2 The 2 rotates it 180º (the most likely choice for … Read more