Monday, Jan 9, 2023
Here’s a small outline of how I validate used computers as “usable” and “in working condition”. My hope is these steps help computer users spot “lemons” - machines that shouldn’t be depended on because they don’t work all the time.
Basics Before stress testing or examining SMART data, consider the following checklist:
Turn it on and ensure you can access the firmware settings/BIOS. F2 and Delete seem like the most common keys.
Continue reading…
Thursday, Sep 29, 2022
I had a need to host image galleries online. I researched the cost structures of a few providers, then settled on AWS S3 storage and AWS Cloudfront CDN. The twist is I have all the cloud configuration managed in Terraform, so it’s easy to recreate the same sort of setup for various projects.
Hosting provider cost structure After reviewing the bandwidth limits for a static website with a lot of large images, I came up with the following datapoints.
Continue reading…
Wednesday, Jul 27, 2022
For the Lang Party Summer 2022, I wrote a BASIC interpreter. It took a bit of mental gymnastics and learning on my part. In this post I hope to share some of the experience in implementing this interpreter. For the curious, the code lives on GitHub.
Figure 1: A TinyBASIC session in Cool Retro Term
Try it out! Want to try it out? Run raco pkg install --auto tinybasic to install it.
Continue reading…
Wednesday, Jun 8, 2022
Recently I have begun migrating my workstation and laptop from Gentoo to NixOS. There are a great deal of tradeoffs between the two operating systems. Before going into the details, consider where I’m coming from and why I moved away from Gentoo below.
Why was I running Gentoo on workstations?? This is my heuristic for a good operating system:
The Distro must provide facility to modify system packages and maintain their modifications in sync with the upstream distro.
Continue reading…
Sunday, May 15, 2022
Digital Ocean’s App Platform works fairly well with Racket. To activate this service, create a git repository with a Dockerfile in it. Your app will be ran as a container built from the Dockerfile and hosted by Digital Ocean. It appears this platform handles load balancing and scaling. These are good value prospects when considering hosting on this platform.
If you wish to use a custom domain you can also do so, such as was the case with p.
Continue reading…
Monday, Feb 7, 2022
Awhile back I found a stack of audio CDs I wished to digitize. It’s a bit of work to do the following steps quickly and while doing other more cerebral work:
Open the disc tray Insert the disc Wait a few seconds for the disc to be detected by the OS Kick off abcde to rip the CD. Repeat ad infinitum. The solution is to streamline the workflow:
Open the disc tray (first time only) Insert the disc Wait until abcde is finished and ejects the CD, repeat from step #2.
Continue reading…
Saturday, Jan 29, 2022
GitLab has recently locked down the accessibility to free CI/CD minutes. You now need to provide a Credit Card to prove you’re a human. Apparently cryptofriends were using the CI/CD minutes to mine for cryptocurrencies. Huh… if I had lesser ethics I’d probably do the same thing! Kind of brilliant to be honest. Anyway, the end result is if you want users to contribute to your project they need to either provide a CC or better yet, you can set up private GitLab runners.
Continue reading…