this post was submitted on 11 Aug 2024
1 points (100.0% liked)

Programmer Humor

22783 readers
1071 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
 

My latest personal project would look like this:

top 22 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 8 months ago
[–] [email protected] 1 points 8 months ago
[–] [email protected] 1 points 8 months ago* (last edited 8 months ago)

I would add spaghetti in the middle

[–] [email protected] 1 points 8 months ago (2 children)

Sliders. I like OOP and neat little micro services.

[–] [email protected] 1 points 8 months ago

Haha! Complete opposite.

Giant monorepo that's delicately balanced and one wrong move can cause the whole thing to flip over.

(Not arguing over what is better. That's just my life in the past few years, and It's a stupid argument)

[–] [email protected] 1 points 8 months ago

Please edit your image so some of those sliders contain a tenth of an ounce of meat and some of the other ones have a full beef wellington half wedged into a bun.

[–] [email protected] 1 points 8 months ago (1 children)

The most immaculate well researched pickles ever seen.

But I'm getting bored, I should learn how to write, or maybe draw, or maybe dance.

No I got it, I'll shift my focus to an obscure Github program I'm using to test a weird thought I had!

I'll finish this burger later...

[–] [email protected] 1 points 8 months ago

Is that adhd? That's definitely adhd!!!

[–] [email protected] 1 points 8 months ago* (last edited 8 months ago) (1 children)

I learned blender just to make a representation of my code in action ... gif

[–] [email protected] 1 points 8 months ago

A for effort

[–] [email protected] 1 points 8 months ago* (last edited 8 months ago) (1 children)

sorry about the amazing image quality I made this in less than a minute (I didn't even export the image from the editor just screenshotted it lol)

[–] [email protected] 1 points 8 months ago

I made this in less than a minute

Enterprise level doneness

[–] [email protected] 1 points 8 months ago* (last edited 8 months ago)
[–] [email protected] 0 points 8 months ago (1 children)

(This was edited with Krita on my phone, so sorry that it looks a bit shoddy)

[–] [email protected] 1 points 8 months ago (2 children)
[–] [email protected] 1 points 8 months ago

In their defense (maybe a stretch) it could be 1-tab indents with a 1-space display?

I'm trying for their sake.

[–] [email protected] 1 points 8 months ago

I suppose if you read/write code on your phone it might make sense

[–] [email protected] 0 points 8 months ago (1 children)
[–] [email protected] 1 points 8 months ago

I try, but I mostly cry

[–] [email protected] 0 points 8 months ago (1 children)

Apparently, this is a dogfood burger. No idea why that exists, but I'll take it, because I'm definitely dogfooding.

I'm building a build system. And I've got three previous/ongoing projects where I'm directly integrating it.
And yeah, I've noticed that I'm kind of jumping between features, always just building them as far as I need them.

And in particular, I'm not really planning ahead. For exanple, I noticed after the fact that I could easily pull out a whole feature into a separate library, and that would already be useful on its own.

But on the plus side, it's much easier to figure out actual requirements this way.

[–] [email protected] 0 points 8 months ago (1 children)

Do you keep a regular log of the work that you do? Beyond the commit messages I mean.

[–] [email protected] 1 points 8 months ago

I usually keep todo-lists, where I've kind of noted down the next few steps for each feature. And well, those then usually also contain infos for the step I'm currently working on or for previously completed steps.

I rarely actually stick to my planned next steps, but it does help when switching between contexts, if that's why you're asking.