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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Xkcd's "Is It Worth the Time?" Considered Harmful

27 点作者 gcmeplz7 天前

12 条评论

try_the_bass7 天前
Harmful? No. Good rule of thumb? Yeah. Like any rule of thumb, if followed dogmatically, it loses the nuance that makes it a good "rule of thumb".
评论 #43947888 未加载
dontreact7 天前
The flip side of this is that for some tasks (especially in ml&#x2F;ai), doing it manually at least a few times gives you a sense of what is correct and a better sense of detail.<p>For example, spending the time to label a few examples yourself instead of just blindly sending it out to labeling.<p>(Not always the case, but another thing to keep in mind besides total time saved and value of learning)
jjk1667 天前
XKCD&#x27;s comic is a very simple graphic that tells you whether your automation efforts will reduce the total amount of time for a task.<p>If your goal is not to reduce time spent, why would you be looking at a chart to determine how much time you&#x27;re reducing?<p>Learning is a very good use of time. Choosing to spend extra time to automate something for the sake of learning is a perfectly rational decision. But it&#x27;s never harmful to know what your choice is costing you. If you wouldn&#x27;t be willing to automate something in the full knowledge that it&#x27;s going to take longer than just doing it manually, then the comic is succeeding in stopping you from making a choice you wouldn&#x27;t want to make.
评论 #43947736 未加载
patrakov7 天前
Key sentence from the article:<p>&gt; Automating the easy things is how you build the skills, mindset, and muscle-memory to automate the hard things.
评论 #43948586 未加载
al_borland7 天前
There is also the situation where if it doesn’t get automated, it won’t be done at all. Some things are just too annoying to manually do, especially if it would be nice if they were done more than once.<p>There is also an aspect of repeatability without mistakes. Assuming the code is good, it removes the human error from the equation, which has value.
karmakaze7 天前
&gt; ...updating the order of arguments to a function [...] was only in about 10 spots, so it would have only taken a minute to search and fix manually, but instead I spent an hour automating the fix using sed and xargs. And I think that was the right choice.<p>Spending an hour to learn and use sed&#x2F;xargs is good use of time. Bringing in the xkcd formula has nothing to do with that. It could&#x2F;should have been done as a one-off whether manually or scripted. Automation doesn&#x27;t make sense unless you plan to keep putting me function arguments in an undesired order.<p>I would have put in time sooner to use a static typed language the can reliably reactor in the IDE with a click.
more_corn7 天前
“Considered harmful” is considered harmful
phendrenad27 天前
I agree. The author spent an hour of trying to use &#x27;sed&#x27;, and the next time, they thought better and used Python! That&#x27;s a valuable lesson right there! ;)
banku_brougham7 天前
Every day you are building the foundation for the rest of your career. When I can I execute tasks as though need to scale and be instrumented with alarms.
atoav7 天前
This is about tasks you automate to save time, that however isn&#x27;t the only reason to automate a task.<p>A big one for me is to ensure consistency of data, intervals, etc.
abc-17 天前
The goal to automate is to reduce suffering. Full stop. It’s not to “save time”. STEM types like to pretend they’re stoic cold calculating robots and everything is objective and they don’t mind doing some repetitive 5 minute task every day, because they saw some xkcd comic about efficiency. Maybe they pretend they don’t mind simply so they can smugly post the xkcd comic every time someone new asks why they’re suffering through some repetitive slog.
评论 #43949637 未加载
V__7 天前
&gt; Automating the easy things is how you build the skills, mindset, and muscle-memory to automate the hard things.<p>I agree with the statement, yet I think it misses the point. Hyperbole: Pressing play on a mp3 robs you of the experience of learning to play all instruments yourself. They key question is whether automating is a task one wants to improve in at all.