this post was submitted on 10 Sep 2023
-13 points (43.8% liked)

Programming

17028 readers
94 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] ck_@discuss.tchncs.de -4 points 1 year ago (8 children)

No, this is just some guy who cannot solve trivial problems without Intellij holding his hand, and he feels like that entitles him to an opinion

[–] Double_A@discuss.tchncs.de 8 points 1 year ago* (last edited 1 year ago) (7 children)

The trivial problem here being knowing what kinda of parameter some random function somewhere in your code expects... And your code not randomly breaking in production when someone changes that function after you already used it, unless you wrote unit tests that literally test every single line of code.

[–] Bipta@kbin.social -1 points 1 year ago (2 children)

My sense is that this argument primarily holds for teams without thorough code reviews. For individuals or teams with good reviews, TypeScript adds little except for complex code or massive rewrites. I'm not saying it adds little in absolute terms, but that it adds little once you account for the overhead of using it.

[–] alr@programming.dev 1 points 1 year ago

Nonsense. The compiler can handle type-checking far more quickly and acurately than any code reviewer. When I review code, I want to look at code structure, algorithms, data structures, interface design, contracts, logic, and style.

I don't want to go through your code line by line cross-referencing every function call to make sure you put the arguments in the right order and checking every member access for typos. That's a waste of my time, and by extension, the company's money.

load more comments (1 replies)
load more comments (5 replies)
load more comments (5 replies)