←back to thread

Speed matters (2021)

(www.scattered-thoughts.net)
65 points mefengl | 1 comments | | HN request time: 0s | source
Show context
inglor_cz ◴[] No.43111564[source]
I agree fully. Speed matters. Too many people consider CPU time too cheap to consider. I still marvel at how fast and efficient could Symbian OS be on a 190 MHz Nokia. (Though the API was hell.)

That said, it is also true that premature optimization is the root of all evil.

I suspect programming wisdom hides somewhere in between those two hills, neither of which is worth dying on.

replies(4): >>43111586 #>>43111588 #>>43111643 #>>43116423 #
Aurornis ◴[] No.43111643[source]
Well the article is about speed of development, not the speed at which the code runs.

Over the years I’ve come to embrace moving fast and writing code quickly, even if it’s not the fastest. The faster I get the big things done, the more time I can spend optimizing what matters after I’ve identified it and determined it’s valuable.

replies(2): >>43111736 #>>43111739 #
1. inglor_cz ◴[] No.43111736[source]
There is an overlap.

Writing for PHP, I used to spend a lot of time waiting for Xdebug to trigger. Once the author released version 3.3, the improvement was so big that my own productivity went visibly up.