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…
Keyboard Jiggler with Python and Raspberry Pi

Keyboard Jiggler with Python and Raspberry Pi

So I did a pretty simple but amusing little project recently, a bit on a whim. Let's say, I have a few games that it would be useful to just, let idle for experience or whatever. The problem is, that these games also have built-in idle deterrence. Your character falls asleep, or you just time out of the game after five or ten minutes. I initially start off trying to use AutoHotkey, a program that basically does what I wanted here, you program it to press keys at certain intervals, basically just a simple keep-alive movement every couple of minutes.…
Python Logo

Twitter Archive to Markdown

I have been wanting to convert my Twitter Export archive into a more useful format for a while. I had vague dreams of maybe turning them into some sort of digest posts on WordPress but there are a fuckton of tweets (25,000) and it would require a LOT of scrubbing. I could probably manage to find and remove Retweets pretty easily, but then there is the issue of media and getting the images into the digest posts and it's just not worth the hassle. What I can, and did do, is preserve the data is a better, more digestible, and…