this post was submitted on 28 Feb 2024
360 points (100.0% liked)

Programmer Humor

418 readers
3 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
360
wait what (pawb.social)
submitted 7 months ago* (last edited 7 months ago) by crimsonpoodle@pawb.social to c/programmer_humor@programming.dev
 
top 41 comments
sorted by: hot top controversial new old
[–] Traister101@lemmy.today 66 points 7 months ago (3 children)

Tabs are objectively the better choice as it allows each dev individually to decide tab width in their editors. Spaces in contrast don't allow this same flexibility as they are used for much more than simply indentation, for example you likely put a space after each argument or operator IE func(arg1, arg2) or 1 + 2.

[–] zea_64@lemmy.blahaj.zone 13 points 7 months ago (2 children)

Also, a lot of editors won't unindent on backspace of spaces indentation, so I end up messing up the indentation with a 3/4 indent

[–] coloredgrayscale@programming.dev 3 points 7 months ago (2 children)

Autoformatter should fix that, unless you use python. (but even then they might fix it to the closest proper indentation level)

[–] Traister101@lemmy.today 6 points 7 months ago

Sometimes. I love auto formatting, I spam the shit out of it more than I spam save but it's definitely not perfect. It gets real confused with inconsistent indention like that. Especially with Python it'll fuckup

[–] mexicancartel@lemmy.dbzer0.com 5 points 7 months ago

Yeah you need an auto formatter, which is worse than not needing it. Also yes its terrible in python like languages

[–] expr@programming.dev 2 points 7 months ago

That just sounds like a shitty editor, tbh. Pretty basic functionality.

[–] expr@programming.dev 5 points 7 months ago (1 children)

Code can be viewed in more than just an editor. It might be in a terminal, rendered in a browser, etc. Sometimes you might even have to view it in an environment you don't control. I am very disinterested in configuring each and every tool to have sensible tabstops, if such a tool can even be configured.

[–] Traister101@lemmy.today 6 points 7 months ago (2 children)

Then don't? The whole reason nearly all the spaces guys do 4 spaces is cause that's the nearly universal tab width. You won't like this but the same exact argument can be made for spaces yet I'd bet you haven't even once configured the width of those.

I don't actually change tab width, it's the default 4 spaces equivalent for me but just because I don't take advantage of the ability doesn't mean I should prevent others from doing so.

[–] lemmyng@lemmy.ca 4 points 7 months ago (1 children)

The whole reason nearly all the spaces guys do 4 spaces is cause that's the nearly universal tab width.

That is provably wrong. The default tab width in vim is 8 spaces, and the default indentation in yaml is two spaces.

[–] Traister101@lemmy.today 1 points 7 months ago* (last edited 7 months ago) (1 children)

What's yaml have to do with anything? It's like python with syntactic whitespace which is unrelated to this discussion. The Tab vs Space debate is entirely around non syntactic whitespace which doesn't effect how the code is parsed. And yes Python technically does both tabs and spaces but it's all sorts of fucky.

Terminal editors while still used a ton aren't really what I was referring to. Newer terminal editors such as Helix have tab width configured per language most of which default to a width of 4 spaces but toml/yaml both default to 2 spaces. I was mainly referring to GUI editors as frankly that's just what most people use nowadays. JetBrains IDEs, Visual Studio, Eclipse, VS Code, Notepad++ were primarily what I was thinking of as I've used all of them and they all default to a tab width of 4 hence why I said nearly universal. Also I said nearly terminal editors being the only editors I've used that don't default to a width of 4 seems like a fair usage of the term.

[–] lemmyng@lemmy.ca 1 points 7 months ago

Now you're just shifting the goalpost.

[–] expr@programming.dev 3 points 7 months ago (1 children)

This is simply false, many systems have them configured by default to 8, particularly most CLI tools. Git, for example, is 8, and btw, changing it is not readily done and requires you to hack around it by using a custom pager command. In fact, all core gnu utils (and even bash itself) default to 8, as well vim, emacs, nano, gedit, etc.

I use 2 spaces since I work in Haskell, which is a significant whitespace language where you want certain syntactic constructs to exist at a different level of indentation from your main code block. So yes, I have configured it. 2 spaces is also exceedingly common for HTML (browser Dev tools renders HTML with 2 spaces, even).

There is not a universal indentation width, though it is almost always universal within a particular language or perhaps project, in which case it's much better to have everything standardized. Code formatters enforced on a project are the norm, and those are way more impactful on how the code is read. But they are valuable because consistency is valuable. And yet, somehow you don't have huge scores of developers complaining about being forced to format their code in a way they don't like.

As I said, you don't necessarily control the environment in which you are viewing code. A common example is reading code over a shared screen. So you can easily end up reading code in a way you don't like anyway, so it may as well be some reasonable (if not preferable) standard that everyone is using.

[–] Traister101@lemmy.today 1 points 7 months ago* (last edited 7 months ago) (2 children)

Looking at code on somebody else's screen is entirely missing the point of using tabs over spaces. The entire point is that mine looks like how I want and theirs looks like how they want even though the file is identical. We can each have wildly different tab width and it'll look wildly different to each of us when we program. That's again the point.

Code formatters are great! I love them. Using tabs over spaces is objectively a better formatting option. One of my favorite features in code formatters is that they'll swap out spaces to tabs for you insane people who insist on mashing the space bar to indent.

[–] expr@programming.dev 3 points 7 months ago* (last edited 7 months ago)

Umm, you do realize no one manually enters all of the spaces, right? Basically all editors support an expandtab feature which inserts the amount of spaces you want whenever you hit the tab key.

Code formatters behave exactly the same regardless if you're using tabs or spaces, so not sure what you're talking about.

I did not miss the point. I fully understand that's why people want tabs. I just think it's a pretty stupid and petty reason to make for a worse experience when viewing code in places you don't control. I still don't know why using spaces is an issue when we enforce standards in literally every other facet of contributing to a codebase. We enforce coding styles. Indentation is part of the coding style.

[–] lemmyng@lemmy.ca 1 points 7 months ago

No, it's not missing the point. The premise that you're always looking at code on the same screen is false, and you don't always have control over how all screens are configured.

[–] driving_crooner@lemmy.eco.br 2 points 7 months ago (1 children)

Too much waste of space imo, func(arg1,arg2) or 1+2 is faster to write and to read.

[–] andnekon@programming.dev 9 points 7 months ago (1 children)
[–] I_am_10_squirrels 2 points 7 months ago

Whyusemanywordwhenfewworddotrick?

[–] redcalcium@lemmy.institute 57 points 7 months ago (3 children)

The sole purpose of the tab key is for instructing the editor to insert four spaces.

[–] mexicancartel@lemmy.dbzer0.com 29 points 7 months ago (1 children)

To insert a........ TAB. Not four or any n number of space but TAB

[–] redcalcium@lemmy.institute 10 points 7 months ago (1 children)

After years of ass-whopping by python interpreter for stray tab characters, I'm now mentally rejecting the existence of tab character in my computing devices.

[–] mexicancartel@lemmy.dbzer0.com 9 points 7 months ago

Isnt that only because you "mixed" spaces with tabs? I have had no issues with python and tabs with no spaces for intendation

[–] Liz@midwest.social 7 points 7 months ago (1 children)

Cycling through buttons, atl+tab, Ctrl+tab, some other fourth thing.

[–] redcalcium@lemmy.institute 3 points 7 months ago (1 children)

something something real linux users don't use gui and tab completion

[–] Liz@midwest.social 1 points 7 months ago

You can take my Cinnamon GUI from my cold dead hands.

[–] corsicanguppy@lemmy.ca 1 points 7 months ago* (last edited 7 months ago)

And indent according to my major mode.

[–] Scoopta@programming.dev 23 points 7 months ago

As a fan of tabs I see this as an absolute win

[–] dust_accelerator@discuss.tchncs.de 14 points 7 months ago

Feels relevant

Just make everything Shittier

[–] brisk@aussie.zone 13 points 7 months ago (2 children)

The correct answer is, was and always has been elastic tabstops

[–] pohart@programming.dev 4 points 7 months ago (2 children)

Any ides have support for this? I feel like I've been waiting forever.

[–] Euphoma@lemmy.ml 4 points 7 months ago (1 children)

Looks like there's an emacs package for elastic tab stops.

[–] KairuByte@lemmy.dbzer0.com 3 points 7 months ago

Of-fucking-course there is.

[–] BatmanAoD@programming.dev 2 points 7 months ago* (last edited 7 months ago) (1 children)

Essentially no. I wish so badly that this had taken off.

Edit: as noted on the website, various plug-ins that attempt support are in fact not correct.

[–] thedevisinthedetails@programming.dev 1 points 7 months ago (1 children)

What do you mean? There's a ton of working plugins listed on the website for many editors.

[–] BatmanAoD@programming.dev 2 points 7 months ago

Sorry, my phrasing was sloppy. Most popular IDEs and editors do not have a plug-in or setting that implements elastic tabstops correctly. In particular, there's no implementation for vim, emacs, VSCode, eclipse, or any JetBrains IDEs. (I had forgotten that there's one for Visual Studio and one for Notepad++.)

[–] dan@upvote.au 2 points 7 months ago

Wow this site is hard to read, at least on mobile (haven't tried on my PC). The line-height is too small.

[–] wesker@lemmy.sdf.org 12 points 7 months ago* (last edited 7 months ago) (1 children)

Maybe it is time for another civil war.

[–] deadbeef79000@lemmy.nz 9 points 7 months ago (1 children)
[–] DAMunzy@lemmy.dbzer0.com 2 points 7 months ago

Hell no! It'll be "GIF" until the day I die!

[–] mexicancartel@lemmy.dbzer0.com 7 points 7 months ago

Yay at least this comment section has majority tab lovers!

[–] laurelraven@lemmy.blahaj.zone 6 points 7 months ago