this post was submitted on 01 Apr 2025
128 points (100.0% liked)

Programmer Humor

23844 readers
2618 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
[–] [email protected] 11 points 2 months ago* (last edited 2 months ago) (2 children)

Lately my approach to dev is “I don’t care about your language feautures, I’m going to treat it like lua and just stuff objects with data and write bare functions to process them”

Unless I need to engineer something complex, everything is dict[any:any].

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

Cool. Where do you work again? Just so I can make sure never to end up there to clean that shit up.

[–] [email protected] 4 points 2 months ago

I'm mostly joking, but most of what I code lately is integrations and data tools where 90% of the thing is configuration and lining up different tools.

It's a lot of load data form yaml, build json, throw that into a tool and the build a report kind of glue. I'll use pydantic and stuff where it makes sense, but I've been spending a lot of time lately between lua and python and javascript.

I used to do more system and engineering stuff which actually required a lot of planning, but that's just not what has paid the bills for me the last few years.

[–] [email protected] 6 points 2 months ago

Man, I love lua, but after switching to a different job on typescript I feel like lua could only benefit with a similar type system. So many bugs avoided just because I know for a fact what a function returns and expects.