27
A break from programming languages
(lexi-lambda.github.io)
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
Follow the wormhole through a path of communities !webdev@programming.dev
No. That is to say, it might be common, it might be expected, but it is often not good. Every time I join a new team and am exposed to a new code base, I'm astonished by the amount of absolute shit code that results from reusing shit in ways that it was never build with the idea of supporting.
Why? Because someone was focused on completing a single story as fast as possible and they created a dependency they shouldn't have. And this grows and festers until you have an unmaintainable nightmare.
In order to build solid reusable code you must build it with that knowledge and intent. I'll cut my rant off there, but I recently joined a new team and the wounds are all very fresh.
Oh yeah totally, I just meant more as a best case scenario where you have very well documented very specific functions with a very limited scope that are reused throughout.