this post was submitted on 28 Aug 2024
522 points (96.9% liked)

Programmer Humor

32041 readers
715 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
[–] CodexArcanum@lemmy.world 35 points 3 weeks ago (2 children)

To be fair, this is also how VS looks when you open a project fresh from the clone. Or after updating .net versions. .NET is awful about losing references and then claiming thousands of errors. Sometimes just running the build will fix it by relinking the DLLs it couldn't find.

But also yes, VS with a team can be "fun" if people don't sync their formatting settings. I once had a junior that kept converting spaces to tabs on every file he'd touch. You'd get it fixed and then he'd screw up his settings again with a VS update or something.

[–] Vivendi@lemmy.zip 12 points 3 weeks ago

Try programming in Dart. Dart's static analyser and package manager will go nuts 0.0001 seconds before the fucking packages load

[–] FiskFisk33@startrek.website 9 points 3 weeks ago (1 children)
[–] meekah@lemmy.world 2 points 3 weeks ago (1 children)
[–] Appoxo@lemmy.dbzer0.com 8 points 3 weeks ago (1 children)

Tabs > spaces

Tabs does allow you to set the spacing you need.
Spaces are like hardcoding passwords

[–] meekah@lemmy.world 4 points 3 weeks ago (3 children)

Yeah, tabs are larger spaces, what's your point?

/s

You may be right, but I still have an unreasonable hate for tabs in code

[–] Appoxo@lemmy.dbzer0.com 12 points 3 weeks ago (1 children)

And I for spaces.

Let's hate both and be mad at the client?

[–] meekah@lemmy.world 4 points 3 weeks ago

I like the way you think.

[–] fluckx@lemmy.world 5 points 2 weeks ago

Tabs for indenting and spaces for aligning. There. Everybody wins and loses.

This way the code always looks aligned and if you prefer 4 spaces for a tab instead of 2 or 3 or 8 you can just set it in your IDE.

Crisis averted!

[–] PeriodicallyPedantic@lemmy.ca 1 points 2 weeks ago

Both tabs and spaces are stupid.

It's ridiculous that in 2024, code formatting is still embedded in the source instead of being a style you apply.