Author: Josh Sherman
-
Airbnb style guide with Next.js
Starting a fresh Next.js project the other day, I was happy to see that configuring eslint was part of the bootstrapping process. Where things fell short for me, was the lack of a prompt asking me which style guide I’d like to use. I’m sure the out of the box option is sufficient enough, and…
-
Fix for gnome-keyring 46.0+ disabling ssh-agent
A breaking change landed on my Arch Linux system the other day, revealing itself when trying to use git. Usually something like this would wind up in the Arch Linux home page. Not this time. Booting up on a Monday after my end of the week update, I was trying to push some code and…
-
VPS Showdown – March 2024 – DigitalOcean vs. Linode vs. Vultr
While spring isn’t officially here yet, it’s definitely starting to feel like winter is over. More of the same this month, as we finish off the first quarter of 2024. Next month, I’m hoping to finally get some MongoDB benchmarks into the mix. By the end of the second quarter, Ubuntu 24.04 LTS will be…
-
Cannot load certificate “/etc/ssl/certs/ssl-cert-snakeoil.pem” on Debian
Recently, my media center (an Intel NUC) started to bark about being out of disk space on my root partition. Instead of just biting the bullet and redoing the partitions, I decided to purchase a larger SSD, which led to its own problems. With those problems sorted, I opted to do a fresh installation of…
-
BIOS has detected unsuccessful POST attempt(s) on Intel NUC
After upgrading the SSD on my Intel NUC to a larger size, I was greeted with an error message that took me way too long to find a solution to: This problem was compounded by the fact that my wired keyword refused to work when this error was encountered. Sadly, I vaguely remember running into…
-
Switching to tmux windows numbered 10 and above
I try my best to not horde browser tabs. Occasionally I look up and realize that I have so many open that I now have to scroll. While I attempt to do the same with my tmux windows (and GNU screen too), there are days where I keep opening news ones, well past the 0-9…
-
VPS Showdown – February 2024 – DigitalOcean vs. Linode vs. Vultr
New month with new observations when looking at DigitalOcean vs. Linode vs. Vultr. Even though each provider uses the same Linux kernel version, they all have different patch numbers and dates. Vultr offering the most recent, Linode second, and DigitalOcean with a version seemingly from nearly a year ago. Suspect that each provider has their…
-
Mocha tests hang after tests have finished
Recently, while revisiting a Node.js repository I haven’t contributed to in ages, I encountered a new problem: the Mocha tests would hang instead of exiting. When I asked about the error, it seems it was recently introduced and nobody had pursued tracking down the root cause of the issue. Conveniently, this issue was only happening…
-
How often should you update Arch Linux?
If you run Arch Linux, or any rolling release system with frequent updates, you have probably asked yourself how often should you be updating it. I’ve run Arch Linux off and on over the last decade and have been through a myriad of update frequencies. Recently, having come back to Arch Linux yet again, I…
-
How to generate a JSON compile commands database with CMake
Generating a compile_commands.json file, a JSON database of compile commands, using CMake isn’t something I run into as a web developer. But as somebody that’s recently gotten bitten by the game development bug, this was one of the first things I happened to have run into. I’m not going to bore you too much with…