this post was submitted on 15 Oct 2024
69 points (97.3% liked)
Programming
17318 readers
74 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
view the rest of the comments
You know what attribute of a code base is more valuable than any other? Maintainability.
Every project ever should emphasize maintainability over performance, cleverness, etc... because this is the true long term cost of code. If it's difficult to understand why or how something is how it is then you'll pay a lot more to bugfix it and improve it over time.
This attribute is opposed (mostly) to flexible prototyping so a really good senior dev will be able to transition a greenfield project into one that's structured for long term usability.
And you're never going to get an easily maintainable code base without enabling those really good senior devs who can do that. It's more nuanced than the author of the article thinks, sometimes an unweildly process gets in the way of making changes required to improve maintainability.