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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Debugging Bets

3 点作者 bobm_kite9超过 5 年前

2 条评论

bobm_kite9超过 5 年前
Hi HN,<p>This is the third part in a series of articles in my “Risk-First” (focused on addressing the concept of Risk in Software Development).<p>It’s looking at the question of, to what extent is debugging a series of gambles?<p>In looking for a bug, every time we try something out, we’re gambling our development time against testing some part of our code to narrow the range of places where the bug can live.<p>This is how it feels to me. I’d appreciate some feedback from the community on this.
gameface超过 5 年前
I don’t use a debugger. I just use a REPL to try things out and ‘explore’ the state of my code.<p>If it doesn’t come back with what I’m expecting then that’s a bug.<p>The idea of opening up a debugger again seems like a step backwards to be honest.