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 to use a full drive, […]

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 all the heavy lifting. You […]

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 and the lack of editor […]

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 heif-thumbnailer heif-gdk-pixbuf That’s it. You […]

AutoStart Maestral Dropbox Client In Python Virtual Environment

I got an update that hosed Dropbox today. I had installed the client directly from the Dropbox site. I tried their headless install for the hell of it and that did not work either. I did not try the AUR version as I assume I would get the same result. After a little poking around […]

Creating a simple radial percent gauge in Flet

I was cleaning up and found some old gauges I had built years ago. I created the images in Inkscape and likely deleted the Flash and JavaScript code. Anyway, since I am really digging working with Flet I thought it might be cool to re-purpose the images and create a radial gauge in Flet. Setup […]

Tags Example in Flet and Python

Just a quick example of how to create, add and remove hashtags in a Flet app. I needed to create this for an app I am working on and thought I’d share.