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: What is the hand-washing of development?

4 pointsby deanebarkerabout 6 years ago
I&#x27;m reading &quot;Better&quot; by Atul Gawande about how physicians and medical care can improve.<p>He cites hand-washing as one of the simplest and most effective ways to prevent complications from hospital stays. He writes about how it&#x27;s universally effective at reducing infections, but still doesn&#x27;t get implemented for dozens of different reasons (including laziness).<p>What is the &quot;hand-washing of development&quot;? What is a simple practice that, when universally and consistently braced by a development team, always results in higher quality output with fewer defects?<p>Put another way, what are we most often not doing that we COULD do and know that we SHOULD do?

4 comments

davismwflabout 6 years ago
I like this question, but it is hard to define one that is global to all projects.<p>Without putting much thought into it though, I&#x27;d say the hand washing of development is source control. Most projects know they need source control so do some parts of it, but don&#x27;t use it to properly make reproducible software builds consistently. And sadly I have ran into a lot of people still not using source control, which blows my mind.
karmakazeabout 6 years ago
Mature devops. Let&#x27;s say we have a CI&#x2F;CD pipeline that runs tests and deploys to prod if tests pass and it all happens in a few minutes without further interaction. Given this, you may opt to write better tests, have more coverage, watch deploys when they happen. Also, nothing gets to prod without a automated, repeatable, logged process.
pedasmithabout 6 years ago
Using source code control. Ever so many things become easier, and yet there are still teams that have never heard of it.
评论 #19549969 未加载
cjbprimeabout 6 years ago
Not releasing to production on Friday afternoons? :)