|
|
|
|
|
by dboreham
3260 days ago
|
|
Spot on. As a card-carrying dinosaur I've found myself from time to time needing to read up on some "new" (usually turns out to have been invented in the 60's) coding thing. Once I figure out what it is, I ask myself what problem it solves (the literature typically doesn't say). The answer tends to be one of: 1. Saves some typing. 2. Saves some work when refactoring. 3. Avoids some class of bug. 4. Highly useful in a kind of programming I don't do (e.g. compilers). #1-2 in my experience are much more common than #3-4 and often #1-2 can be dealt with through tooling (IDEs for example). |
|