Today I had to load an 800MB CSV file to analyse optimisation logs that eventually produced the animation earlier. I found atof and strtod are both about 10-20x slower compared to a simple string-to-double function I wrote. I also started to optimise CSV loading (hint: you don't need to store every string in its own memory block if you replace the commas by 0x00 bytes). #programming