(no title)
daigoba66 | 2 years ago
Can you elaborate on this? As a programmer, I would think that using something like a constant would help us find references and ensure all usage of the flag is removed when the constant is removed.
daigoba66 | 2 years ago
Can you elaborate on this? As a programmer, I would think that using something like a constant would help us find references and ensure all usage of the flag is removed when the constant is removed.
zellyn|2 years ago
The bigger problem is when the code constructs metric and flag names programmatically:
That kind of thing makes it very hard to find references to metrics or flags. Sometimes it's impossible, or close to impossible to remove, but it's worth trying hard.Of course, this is just, like, my opinion, man!
dgorton|2 years ago
This sort of programmatic naming is a dangerous step down a slippery slope.
athenot|2 years ago
joshuamorton|2 years ago
Using just the string-recognizable name everywhere is...better.
grork|2 years ago