this post was submitted on 16 May 2024
364 points (96.7% liked)

Programmer Humor

31230 readers
549 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 4 points 1 month 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 1 month 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.