this post was submitted on 05 Sep 2023
1312 points (97.4% liked)

Programmer Humor

19154 readers
2012 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] 23 points 1 year ago* (last edited 1 year ago) (10 children)

Programming languages that use white space to delimit structure are annoying at best. I get annoyed at yaml too, but I'm ok once I have a few templates set up.

[–] [email protected] 5 points 1 year ago (6 children)
[–] [email protected] 2 points 1 year ago (2 children)

Tabs suck. Use a real editor and spaces work fine.

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

Why tabs suck? Explain.

Tabs are neat.

Does you app have too many nested functions?

Use tab width = 2

Do your app have too less nested functions?

Use tab width = 8

Is your app having average number of nested fns?

Use tab width = 4(mostly default)

And all theese can happen without modifying a single byte in the source file, unlike spaces!

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

Except that you have to either indent with only tabs or indent with only spaces. Any time you mix tabs and spaces you are just asking for disaster.

If you indent with only tabs you can't align things except on tab boundaries. If you have a function that takes 10 parameters and want to do it on multiple lines, the alignment of the extra parameters is going to be ugly.

If you indent with only spaces, you can indent things so that all the parameters line up directly underneath the parenthesis, for example.

[–] [email protected] 1 points 1 year ago (1 children)

I agree we shouldn't mix tabs with spaces. But use tabs always. I could line up parameters together but may not be just under parentheris, and it looks good and readable for me

[–] [email protected] 1 points 1 year ago

I think it looks like ass, so only spaces for me.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago)

Yeah who tf isn't using tabs as spaces, it isn't 2010

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