this post was submitted on 26 Nov 2023
704 points (89.2% liked)

Programmer Humor

19503 readers
1130 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] 5 points 11 months ago* (last edited 11 months ago) (2 children)

and if you need an unnecessarily complex code for performance sake?

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

There's a comment for you to explain the why.

Rule of thumb: code explains the how and what, comments explain the why.

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

Yeah that's a good summary

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

Those cases are rare. Often the most basic solution is good enough.

If you have to write complex code, then you should write a comment (write the name of the algorithm for example).