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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

The value of a personal bug log

31 点作者 shedd超过 14 年前

4 条评论

wccrawford超过 14 年前
"never think about the bug again"<p>That has never been part of the process. That may be what some people do, but it's not part of the process.<p>Good programmers figure out how the bug happened -while- they are fixing it. There's no need to spend time afterwards. (Okay, there are a -few- cases that require research, but I've never met one of those that didn't require me to track it down anyhow.)
评论 #1830212 未加载
pmiller2超过 14 年前
"Because I screwed up" as a reason for a bug existing doesn't seem specific enough to me. My impression is if that's the best reason you can possibly come up with, then you should probably either think harder, or, if it seems to be just a case of "I made a typo," and it's one that's not similar to past mistakes you've made, you should forget about that particular bug unless a similar bug surfaces in the future.
StanDarsh超过 14 年前
I like to make video screen shots with CamStudio and record myself searching for the bug, finding the bug, explaining why the bug occurred, etc. I check the video into a log I have. It's worked very well, and it's much easier to watch the video instead of deciphering comments over, in some cases, multiple source files.
评论 #1830124 未加载
yatsyk超过 14 年前
It would be nice to see few bugs and unit tests. It looks nice in blog post but I'm not sure that this approach could be used in real life.