this post was submitted on 12 Dec 2023
7 points (100.0% liked)

Programmer Humor

19519 readers
319 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
 
all 36 comments
sorted by: hot top controversial new old
[–] [email protected] 0 points 11 months ago

For me, it was my boss gave me a programming task which he knew would take hours or a day or two... and then 15 minutes later tells me to "switch focus" and do a menial task that any of my five coworkers could do πŸ€¦β€β™‚οΈ

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

Oh god I feel so called out. I wish I paid more attention to my commit messages but I’m usually too busy fixing the directory structure and refactoring. Sigh.

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

reminds me of what youtube was doing to firefox users for awhile.

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

git commit -m "break codec sync if UA = firefox/gecko"

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

do git commit -v and then just summarize the diff you have in your editor in a human readable form.

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

Don't just summarize the content though, summarize the rationale or how things connect. I can read your diff myself to see what changed, I want to know the logical connections, the reason you did X and not Y, etc.

Or just say "stuff" and provide that context in the PR description separately, no need to overdo the commit log on a feature branch if you're using squash merges from your PR.

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

P1000x this.

I can read a diff.

I need to know why.

No, a code comment isn't good enough, it's out of date after the next commit.

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

Code comments for "why"s that persist. Commits for why's that are temporary.

If you need to run X before Y, add a comment. If you added X before why because it was easier, leave it in a commit

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

If you need to run X before Y...

Add a test that asserts that.

[–] [email protected] 0 points 11 months ago* (last edited 11 months ago)

git commit -m β€œchanged somethings β€œ

git push origin master

[–] [email protected] 0 points 11 months ago (2 children)

Just use What The Commit.

You can also create a git alias:

git config --global alias.yolo '!git add -A && git commit -m "$(curl --silent --fail https://whatthecommit.com/index.txt)"'

Now you can just type 'git yolo' to create a commit!

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

"Make Sure You Are Square With Your God Before Trying To Merge This"

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

"patch mode" - Patch mode allows you to stage parts of a changed file, instead of the entire file. This allows you to make concise, well-crafted commits that make for an easier to read history.

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

Highly recommend throwing --patch on any git commands you're used to using. You will have the prettiest, most atomic fkn commit, I'm serious people will love you for it.

I mean many people won't care, but the quality folk will notice and approve.

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

We make a singular commit per feature.

[–] [email protected] 0 points 11 months ago

I always find this hard to follow personally.

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

I’m using Copilot for it right now. It works on half of the cases.

[–] [email protected] 0 points 11 months ago

That's about 300% better than my average!

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

Remind me what -p does.

Edit: never mind - I see it mentioned below.

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

Patch add - it shows you particular changes you made, and you choose whether or not to include them in the commit. (You can then use git stash -k to stash only the changes you did not add, so you can test before you commit.)

[–] [email protected] 0 points 11 months ago (1 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] 0 points 11 months ago* (last edited 11 months ago) (1 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] 1 points 11 months ago

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] 0 points 11 months ago (3 children)
[–] [email protected] 1 points 11 months ago

"Bits were fiddled, possibly in the right way"

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

'Change' if I'm feeling particularly chaotic.

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

git commit -m $(date)

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

With 400 lines changed over 50 files

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

β€œfeat: stuff”

Guilty of this one myself.