Porting Playlists With Python

Porting Playlists With Python

I had a brief sting last year where I was using Spotify, but I dumped it, mostly for financial reasons, but also because as much as I like the ability to just, listen to whatever, I kind of dislike the whole "Music as a service" aspect. I can still find new stuff via Youtube and then add it to my list of "Albums to maybe buy eventually". One thing I lost though was my Playlists. I was worried they were just gone, soon after logging in, I swear they hd just vanished, but checking now, they seem to all be…
Python Logo

Python – Simple URL Extractor

This one is pretty basic tier, but more useful than most. I had a website full of links to pages of video files. I wanted a list that I could stick into yt-dlp. I could do a bunch of copy and pasting, or I could use Python to scrape and take all the links. It takes a URL as a CLI Argument, specifically like: > main.py https://website.com It skims the page with Beautiful Soup and spits out a text file with the date-time-url.txt format. Useful if a site changes over time. The site I was scraping was using some relative…
Coding with Perplexity AI – Hirst Painting Drawer

Coding with Perplexity AI – Hirst Painting Drawer

Ive not been using AI a lot, frankly, I find it to be pretty lame for the most part, the images are almost always weirdly uncanny and ugly, and the writing is just bland. I've heard it's pretty good at coding though, and I have not tried using it for code at all. So I decided to give it a go. Specifically, I wanted to use it to augment an existing project from when I was taking that 100 Days of Python course. Specifically, Day 18, the Hirst Painting Project. The full original code is here: import colorgram from turtle import…
Python Logo

Iterating Again, Already

A few days ago I posted about updates to my little FreshRSS script. I already did some fairly quick simple updates, though some didn't quite work out as hoped initially. Firstly, I didn't care for the big blob daily article file it pushed out to the archive. So now it spits out a bunch of individual articles, formatted "YYYY-MM-DD-Article Title.md." this created my first issue. I got a "Filename too long error." So I set up a check to truncate the article title to 100 characters, if its longer than 100 characters. I can't just always slice it, because if…
Python Logo

Code Project – Python – Improved FreshRSS Link Lists

Today, I want to talk about recent improvements I have made on my FreshRSS to Wordpress Digest Python script. And to make a note on what I would like to do next. This is the script I used to produce these Link List Posts on [Blogging Intensifies] and Lameazoid. The Github Repository for it is here. The first version was simple, it pulled from the sharded feed of FreshRSS, collected favorited articles, formatted them a bit, then posted a wordpress post of links. Overtime, I wanted these posts to be prettier, so I added a bit more massaging to the…