this post was submitted on 12 Dec 2023
796 points (99.0% liked)

Programmer Humor

18969 readers
1467 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 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 59 points 8 months ago* (last edited 8 months ago) (15 children)

Every time I commit I have to look through git diff, figure out what the hell I actually did, come up with something intelligent to say about jt, possibly split the commit into multiple commits if I changed multiple things, do some shuffling with git reset and git add...

For some reason all my personal projects are all like 4K SLoC with 50 total commits, all of which include apologies for not doing more smaller commits

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

There's a bigger issue than your commit message if you don't even know what you just coded and are committing.

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

You see, sometimes I code something, go to bed before finishing it, come back, decide not to commit because then I'd have to think of a commit message and I just want to code, start working on an unrelated feature, do that for a couple days, get distracted by life stuff and put the project down for a few weeks/months, rinse and repeat, and then I finally get around to writing a commit message because I'm about to start a huge change and I want a restore point and I'm like. Okay, it's been like 3 months since my last commit, I'm pretty sure my code can now do something it couldn't 3 months ago but come on, I can't even remember what I had for lunch last Thursday

I'm well aware this is terrible practice but I don't know how to stop doing it

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

Commit more often. Maybe work in a different feature branch, and don’t be afraid to commit your half-working crappy code. If it’s a personal project/fork, it’s totally acceptable to commit often with bad commit names and small unfinished changes: you can always amend/squash the commits later. That’s how I tend to work: create a new branch, work on the feature, rebase and merge (fast forward, no merge commit). Also, maybe don’t jump around working on random features :P

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

Jumping around to random features is how my ADHD brain works most efficiently.

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

Good news, TDD is methylphenidate of software development!

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

but...but new feature shiny

Fr tho this is all excellent advice

load more comments (3 replies)
load more comments (6 replies)
load more comments (10 replies)