TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What is the hand-washing of development?

4 点作者 deanebarker大约 6 年前
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 条评论

davismwfl大约 6 年前
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.
karmakaze大约 6 年前
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.
pedasmith大约 6 年前
Using source code control. Ever so many things become easier, and yet there are still teams that have never heard of it.
评论 #19549969 未加载
cjbprime大约 6 年前
Not releasing to production on Friday afternoons? :)