this post was submitted on 09 May 2024
440 points (92.1% liked)

Programmer Humor

31784 readers
67 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 179 points 3 months ago (3 children)

Sadly, that's not code Linus wrote. Nor one he merged. (It's from git, copied from rsync, committed by Junio)

[–] [email protected] 63 points 3 months ago (4 children)
[–] [email protected] 145 points 3 months ago (1 children)

Isn't that from 1991 while the quote is from 1995? If we're nitpicking maybe we shouldn't time travel 🤓

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

Damn it Time Patrol! You can't stop me!

[–] [email protected] 17 points 3 months ago
[–] [email protected] 44 points 3 months ago

I mean it was 0.01, at that point he was screwed anyway, and he fixed his program.

[–] [email protected] 37 points 3 months ago (2 children)

He wouldn't make that statement unless he experienced the horror himself.

Now, if he still does it these days...

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

I've heard similar from the worst first year CS students you could ever meet. People talk out their ass without the experience to back up their observations constantly. The indentation thing is a reasonable heuristic that states you are adding too much complexity at specific points in your code that suggests you should isolate core pieces of logic into discrete functions. And while that's broadly reasonable, this often has the downside of you producing code that has a lot of very small, very specific functions that are only ever invoked by other very small, very specific functions. It doesn't make your code easier to read or understand and it arguably leads to scenarios in which your code becomes very disorganized and needlessly opaque purely because you didn't want additional indentation in order to meet some kind of arbitrary formatting guideline you set for yourself. This is something that happens in any language but some languages are more susceptible to it than others. PEP8's line length limit is treated like biblical edict by your more insufferable python developers.

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

He barely ever code these days.

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

line 152 is the only thing past 3 levels and I'd say that one gets a pass.

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

You really think someone would do that? Just go on the internet and tell lies?

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

Plus it shows three levels of indentation. Well... there is the extra one created by the compiler directives, but do they really count?