this post was submitted on 16 May 2024
367 points (96.9% liked)

Programmer Humor

31791 readers
25 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
[โ€“] [email protected] 4 points 3 months ago (1 children)

I want to add that, like you, I've become a big fan of restricting the numbers of ways to do something.

IMO, It's more time wasted choosing, more time wasted reviewing, and makes it easier to overlook errors. I want more opinionated languages and frameworks.

[โ€“] [email protected] 2 points 3 months ago

I reallt like the approach taken in Rust's borrow checker, where good, safe, and sometimes overbearing design choices are enforced by default, but you can explicitly declare exemptions. Makes identifying potential problem code blocks easy too.