this post was submitted on 17 Mar 2025
827 points (99.6% liked)

Programmer Humor

21609 readers
1853 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Monstrosity@lemm.ee 16 points 14 hours ago* (last edited 14 hours ago) (1 children)

I wanted to edit my Ghostty themes but found out a lot of the colors are in #hexadecimal notation. I like #rrggbb percentage style colors (b/c they are easy to tweak by hand) and I couldn't find an online color picker that would output that format, so I used deepseek (free) & now have a scrappy ass one w Python & Tkinter completely via "vibe" coding (I call it Clyde Color Picker. It's adorable).

Pretty awesome when you're just some dumbass who needs a very specific tool and not trying to fleece people.

[–] tiefling@lemmy.blahaj.zone 9 points 13 hours ago* (last edited 13 hours ago) (1 children)

I use AI toolings to generate snippets of bash scripts because I can't be fucked to remember that syntax. Obviously not for anything with high risks or that I can't easily verify. But things like parsing through mass amounts of files

[–] blackbirdbiryani@lemmy.world 5 points 10 hours ago (1 children)

But... bash snippet extensions already exist. The only difference is maybe it doesn't auto name your variables for you. I'd take that over non-deterministic LLM outputs.

[–] Monstrosity@lemm.ee 2 points 6 hours ago* (last edited 6 hours ago)

I have no idea what the hell a bash snippet extension is, but I do know what a local llama.cpp instance running a small model to tell me bash commands on the fly is.

I use it to make .desktop files, too. Isn't that so lazy?