Most password apps have built in generators. I generate my own passwords for things I automate on my systems, like rotating passwords for whatever, which I store in my own vaults. This is an example, or one way to do it. You could make it more complex, where you only…
PowerShell console weather script
I wanted a little more detail than some other terminal weather programs provide so I wrote one in PowerShell. I do not consider it complete as I will eventually rewrite error handling, how I handle the data, and add better documentation. It works and can be used to learn or…
Ardour 8 on Ubuntu 24.04 – Set memory unlimited and real-time priority.
Install Ardour 8 from Flathub or build it yourself. Flatpak is not installed on Ubuntu 24.04 so you will need to set it up. This should also work for Renoise if it uses Pipewire. The limits file will not work. When you run Ardour you will likely receive the following…
Quick Linux Install Tip – Drives
One of the best things about Linux is that you can use a drive as home. It’s easy to simply let the Linux installer configure your drives, but is it the best solution? I don”t think so. Either way, this is how I do things. Note: If you just want…
Get Bi-Weekly Paydays And Major US Holidays With PowerShell
Example PowerShell code to generate paydays and holidays with or without full calendar. The Holiday function could be shorter and more elegant, but it works for my needs.
Simple iPhone connection monitor for Linux with GLib/Gio.
A very simple Gio iPhone connection monitor in Python 3. I wrote a crappier version of this awhile ago and revamped it. Hope it’s helpful to someone.
Get Amazon Affiliate Links With Image From Python Using Amazon’s API.
This script will show you how to build an Amazon affiliate link with image from the new API that generates HTML that can be inserted into a blog. I made this as an example for my wife. She ended up using a plugin in WordPress. It uses python-amazon-paapi to do…
How to get your encrypted Amazon e-books to ePub
Capitalism sucks and it is very apparent when you buy Amazon e-books. Don’t think locking books you buy down to Amazon and their eBook readers is good for authors. It is for Amazon investors and Bezos, period. Notice how easy they made if for authors to publish on their platform…
Show HEIC thumbnails in Gnome Files
This is all that is needed to get Apple HEIC image thumbnails in the Gnome file manager. I am currently running Ubuntu 23.04 but this should be similar in most distros using their package managers. It’s so easy a caveman could do it… sudo apt update sudo apt install libheif1…
AutoStart Maestral Dropbox Client In Python Virtual Environment
Update May 1st, 2024: Maestral is now available via pipx. Pipx is similar to virtual environments and simplifies things. First thing, open the terminal and run each command as listed. # = comment… Install pipx: sudo apt install pipx # I am running Ubuntu 24.04 currently. Alter for your system.pipx…