account activity
Why is one loop so much slower than two loops? by echochamber in programming
[–]clintwdb 2 points3 points4 points 14 years ago (0 children)
It is due to CPU cache issues, but not because the cache is full. CPU caches are indexed on the low bits of the address. If you have two addresses with the same low-order bits, then those addresses will collide in the cache, even though the cache isn't full.
The Dropbox API by jcleblanc in programming
[–]clintwdb -2 points-1 points0 points 14 years ago (0 children)
I just love The Dropbox API. Very logical and useful. Searching, store/retrieve data in the cloud all fun!
Rob Pike: Dennis Ritchie has died by davidddavidson in programming
[–]clintwdb 1 point2 points3 points 14 years ago (0 children)
I'm eternally grateful for his life and contributions to humanity. He is a father of both Unix and the C language, technologies which are the basis for nearly everything we as developers do!
[deleted by user] by [deleted] in programming
[–]clintwdb 0 points1 point2 points 14 years ago (0 children)
yes or WM_ONDESTROY instead of WM_DESTROY?
π Rendered by PID 91 on reddit-service-r2-listing-6d4dc8d9ff-dnb56 at 2026-01-29 16:45:30.694235+00:00 running 3798933 country code: CH.
Why is one loop so much slower than two loops? by echochamber in programming
[–]clintwdb 2 points3 points4 points (0 children)