this post was submitted on 17 Jun 2023
142 points (98.0% liked)

Programmer Humor

25059 readers
1456 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
[โ€“] soundasleep@kbin.social 14 points 2 years ago (1 children)

I'm more about increasing spaces exponentially to really highlight how important each line is

public boolean function() {
 if (method()) {
   if (otherMethod()) {
       for (Object o : list()) {
               if (o.isAlive()) {
                               return false;
               }
       }
   }
 }
 return true;
}

[โ€“] lasagna@programming.dev 4 points 2 years ago

Good, good. The less consistency the better.