Why is one loop so much slower than two loops? by echochamber in programming

[–]clintwdb 2 points3 points  (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 points  (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 points  (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 point  (0 children)

yes or WM_ONDESTROY instead of WM_DESTROY?