Sending a stream to multiple outputs

I was looking for a way to compare compression ratios with different algorithms, and didn’t want to have to run them in serial. So I started digging and found a nice bash syntax that allows you to do just that. And just for fun, it calculates the sha checksum as well. curl -s https://someserver.com/file.txt | … 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

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

Site-to-Site VPN From Linux to UDM Pro (work in progress)

Finding good documents on how to set up a site-to-site VPN with a Ubiquiti UDM to a non-Ubiquiti node (i.e. linux) has been a challenge. The documents on Ubiquiti’s site are laughably incomplete (and generally way out of date). So I am working through each of the steps and trying to shoe horn in a … Read more