Author: Josh Sherman
-
No sound from iOS games without headphones connected
While I’ve had iPhones and iPads in the past, and have been back on iOS from Android for the last year, there are still some things that I’m ignorant to. One of those things, is why most of the games I played on my iPhone only played sounds when I…
-
JQL Like Query Operator in Jira
Jira’s query language (JQL) is a query language similar to SQL. That being said, the syntax for doing something similar to SQL’s LIKE statement is nothing like how you’d do it in SQL. While deviating from the syntax that was used for inspiration isn’t uncommon, it’s quite peculiar that the…
-
How to install Node.js 19 on Ubuntu 20.04 LTS
Periodically, I check my site analytics to see which posts are getting the most traffic. It never ceases to amaze me at how many posts documenting older versions of Ubuntu, as far back as 16.04 LTS, still receive regular traffic. While they may not be evergreen forever, there’s something to…
-
Apple TV remote volume not working
We love the Apple TV, but ever since upgrading to the Apple TV Siri Remote, we’ve run into situations where the volume controls just decide they are done working. The speculation is that it has something to do with the hand off to and from Apple AirPods somehow messing things…
-
A month after switching to Debian, I know I made the right call
A bit more than a month ago, I wrote about switching from my beloved Arch Linux to my other beloved, Debian. After taking the month of September to settle in and figured out if I had made a horrible mistake, I’m happy to report that I feel like I made…
-
Using variables in MySQL queries
Variables. One of the cornerstones of most, if not all, programming languages. They save you time by not having to type the same crap over and over. They can be manipulated for your own gain. They can even be used in your MySQL queries. The declaration syntax for variables in…
-
Incrementing and decrementing numbers in Vim
I live on the command-line, and a huge chunk of that time is spent in Vim. Well, Neovim, actually. I do everything from writing code, to writing for my blog, as well as other prose that I have in the works. One thing that comes up pretty regularly, thanks to…
-
Generating lowercase UUIDs with uuidgen on macOS
The implementation of uuidgen on Linux returns all lowercase letters by default. The implementation of uuidgen on macOS returns all uppercase letters by default. This triggers the hell out of me, by default. Usually when I approach consistency between macOS and Linux, both of which I use daily, I will…
-
How to search for installable packages on Debian
The thing that I miss most of all since moving from Arch Linux back over to Debian is the Arch User Repository (AUR). Every package I ever needed was there, sometimes multiple times based on different forks that folks were maintaining. Even without the AUR, Debian has a massive number…
-
Using multiple profiles with aws-cli
One of the best aspects of Amazon Web Services (AWS) is that a full featured command-line utility exists for it. If you’ve ever spent a decent amount of time in the AWS Console (their web interface) then you understand why this is a good thing. As you venture into better…