I feel like this is a book most programmers should work through at some point or another. Doing so made me really appreciate just what's going on inside a compiler / language toolkit. It's also one of the most well written technical guides I've ever followed, it really helped me internalize the concepts, and they are useful all over the place, not just in compilers.
sva_|1 year ago
BoiledCabbage|1 year ago
fuzztester|1 year ago
$ cat this >/dev/null
Bonus points for redirecting standard error to standard output:
$ cat this >/dev/null 2>&1
Now no one will hear the screams ...
phyrex|1 year ago
fuzztester|1 year ago
Which are some of those places? Parsing data formats could be one, I guess.
turndown|1 year ago