TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How important is code readability?

2 pointsby symboleproover 6 years ago

2 comments

airbreatherover 6 years ago
Interesting point is 40+ years ago cpu&#x2F;memory was very expensive and software engineering and coding labour cheap, relatively speaking. In this scenario the code often could look however it needed to fit into available resources. &quot;Clever&quot; coders wrote terse and often wrote obtuse code that fit into whatever hardware resources were available. Maintenance or modification at times was one step forwards and two steps back with all sorts of side effects revealing themselves.<p>These days, the software engineering and maintainers are very expensive relative to the cost of the hardware, so the code should use all the memory and resources it needs to be as readable and maintainable as possible.
sidcoolover 6 years ago
Very very important. Most of the life of a software is in maintenance mode. This needs enhancements, bug fixes and refactoring. Readability of code significantly affects the time taken to make these changes.