If you want to be the best possible programmer, you need to understand how the "magic" works. Others have suggested learning about compilers, and that's a good start. I would even say every serious programmer has to build their own compiler at least once. But there are other "magics" you need to understand:
- How floating point maths work on the bit level
- How an operating system manages processes and memory
- How a CPU handles instructions internally (microcode, pipelining, branch prediction, ...)
- How everything is built out of transistors, and how transistors work on the level of basic physics
I would also suggest studying "magical software techniques":
- How game AI works, how a chess game plans its next move
- Different sorting algorithms
- Different techniques for laying out connected node graphs and finding paths in them
You should end up with a knowledge good enough to feel that you could look up everything you need to know to work on any part of the entire system. What this then will give you is a grounding that lets you tackle any issue, regardless of how many disciplines it traverses.
Ofcourse, this isn't all required to be a good programmer, but your question wasn't about being good, it was about being the best you can.