Summary of reading: April - June 2024
I didn't read as much as I had expected this quarter. Algorithms for Modern Hardware — This is a good introduction to some performance challenges we encounter as system programmers. The content isn't…
I didn't read as much as I had expected this quarter. Algorithms for Modern Hardware — This is a good introduction to some performance challenges we encounter as system programmers. The content isn't…
How to representation of abstract syntax trees in C++ has been a long-standing concern of mine. Over time, I've developed several interpreters/compilers in C++, each utilizing different approaches. In…
I've realized that it's been quite some time since I've shared a "summary of reading" post, and I'm keen on reviving that practice. One reason I discontinued it was due to my embarrassment over not…
My journey of learning from online courses started from 2013, and over the years I took a lot of them, abandoning even more along the way. Nevertheless, I've found online courses to be far more…
Today, I'm tackling a piece of code involving several mappings. Like many others, I typically label such maps as x_to_y , and that's also what I've done here: When I need to use those maps, my code…