|
|
|
|
|
by fsloth
1788 days ago
|
|
"...everything we do that is 'technical' has ... consequences that go beyond the technical: The mere fact that most of the technical things we choose to do are done for non-technical reasons is enough to establish that." Aha! But people do things just for technical reasons that don't affect the users in any way. One could claim that just refactoring code without changing anything is a "purely technical" exercise. What I've seen developers spend time on, that has absolutely no effect on end users in a large C++ codebase: * Changing old C-style string handling to std::strings * Change naming convention to uniform * Random formatting that should be done automatically but someone decided to do by hand * Sundry "modernizations" like replacing vanilla C++ loops with C++ range based for loops etc |
|
Improved maintainability => lower innovation costs, and those savings can turn into profits and/or happier customers.
Improved security => reduced risk of exploit, and that improved posture can be turned into profits and/or happier customers.
I acknowledged that not all changes of the sort you list do yield actual improvement in the quality attributes.