Here is one line that brought down a multi billion dollar empire and brought 3D games to the masses.
From the C source code of Doom, the original ground breaking 3D game from the 90′s that changed the world. The comment by Carmack is original too, which leaves me to believe he did not write it, but took advantage of an existing formula that had not previously been used for 3D work.
i = 0x5f3759df - ( i >> 1 ); // what the fuck?
A seemingly magical way to compute the approximate inverse square root, a common calculation for determining distances to vectors in real-time 3D modelling, that normally needs compute intensive floating point arithmetic to do Isaac Newtons original approximation formula.
For example, what is the square root of 1089? You guess 30, see that's it's low by squaring it, add 1 and try again. Eventually you work out it's 33. It's a laborious task for computers.
This function has to be called millions of times to render a single complex 3D display, do that 30 times a second and you can see how important speed and efficiency are.
I was working at Silicon Graphics (SGI) back in the 90s as an engineer (MTS). In it's hayday, SGI was the darling of Wall St and Hollywood. Think of the amazing Jurassic Park and Terminator graphics they created back then.
This one line of C code did in software what SGIs proprietary custom floating point silicon chips did. SGI lost it's #1 business advantage overnight. It wasn't as accurate, but it was good enough to fool the eye of most users.
We played with a licenced copy of John D. Carmack’s (id Software) source code and implemented a version of Doom that ran on IRIX, our custom UNIX OS. We spent many hours playing Doom (QA testing!) It was a revelation. Up until then, SGI relied on expensive custom chips to do floating point calculations for it's 3D vector graphics.
This simple coding hack changed everything, it essentially put SGI out of business. Cheap PCs with commodity hardware suddenly could do the same 3D graphics as our $100k+ workstations. SGI had to pivot and focus on their server business, that eventually failed.
SGIs OpenGL is the only real legacy of those days that still lives on.
The impact of that one line of code cannot be overrestimated.