Digital Garden

Digital Garden

I have essentially completed my Digital Garden project. I say "essentially" because I am sure I will iterate more and its intended to be added to, pruned, and maintained. Its a garden. What is a Digital Garden? Honestly, its a bit nebulous, but its basically, a curated block of resources online. A Wiki is sort of a Digital.Garden, but those tend to be a lot more complex, making them something more. For my part, its just, a collection of sorted links on various topics I am interested in. It started out as just something to sort my Bookmarks into. It…
Vibe Coding Often Sucks

Vibe Coding Often Sucks

I've posted a few simple AI created scripts here in the past few months. Generally these are simple automation tools. Convert X format to Y format. Post some links to social media. Not every project is a winner though and I've found that in many cases, the more complex things get, or the more obscure, the quicker it falls apart. Maybe it's just me, maybe I'm not asking for the right output int he correct way. I wanted to run through some of the failed experiments in "Vibe Coding" I've had. Mostly done using Claude, which is generally one of…
Code Project – Python + AI – Coding with Perplexity AI – Hirst Painting Drawer

Code Project – Python + AI – 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

Code Project – Python – FreshRSS to WordPress V4

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 – FreshRSS to WordPress V3

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…