所以啊,程序员的 TODO 。。。。
1
noqwerty 2021-02-27 05:10:49 +08:00 via Android
哈哈,又不是不能用.jpg
|
2
Trim21 2021-02-27 05:18:51 +08:00 via Android 5
重命名成 permanentFix,todo 立刻移除
|
3
Seddas 2021-02-27 05:53:11 +08:00 via iPhone
这算啥,我见过七八年的 todo
|
4
Ehco1996 2021-02-27 08:13:39 +08:00 via iPhone 1
todo means never do
|
5
hlwjia 2021-02-27 11:24:07 +08:00 via iPhone
只能说这个 fix 写地很耐用
|
6
itabas016 2021-02-27 12:00:15 +08:00 via Android 1
TODO 意思是 I have an idea
|
7
leega0 2021-02-27 15:45:51 +08:00
只要不是计划需求,能 do 的都 do 了,to do 的 never to do
|
8
12101111 2021-02-27 15:56:31 +08:00
17 year old Firefox feature request fixed:
https://news.ycombinator.com/item?id=26256459 |
9
fucUup 2021-02-27 16:29:57 +08:00
做就是爱, 不做证明你不爱
|
10
git00ll 2021-02-27 16:43:16 +08:00
todo 补充这里的注释
|
11
mingl0280 2021-02-27 17:05:13 +08:00 via Android
我一般会在写完一个项目以后用 todo explorer 扫一下代码看看还剩啥 todo 没,有的话赶紧给实现了。
|
13
CEBBCAT 2021-02-27 17:44:47 +08:00 1
Use TODO comments for code that is temporary, a short-term solution, or good-enough but not perfect.
TODOs should include the string TODO in all caps, followed by the name, e-mail address, bug ID, or other identifier of the person or issue with the best context about the problem referenced by the TODO. The main purpose is to have a consistent TODO that can be searched to find out how to get more details upon request. A TODO is not a commitment that the person referenced will fix the problem. Thus when you create a TODO with a name, it is almost always your name that is given. ``` // TODO([email protected]): Use a "*" here for concatenation operator. // TODO(Zeke) change this to use relations. // TODO(bug 12345): remove the "Last visitors" feature. ``` If your TODO is of the form "At a future date do something" make sure that you either include a very specific date ("Fix by November 2005") or a very specific event ("Remove this code when all clients can handle XML responses."). 出自: https://google.github.io/styleguide/cppguide.html#TODO_Comments |
14
ipwx 2021-02-27 18:04:15 +08:00 1
我寻思能工作三年的 temporaryFix 的质量,早就经过实践检验,可以称得上是 stableFix 了。
|