Search Results

0
votes

Favorite programming-related blog

I'd say smallcode. …
1
vote

What is the STL implementation with the lowest memory footprint?

STLPort. Havent measured memory usage differences, but it's definitelly quicker (yes, real world usage). …
8
votes

What is the worst class/variable/function name you have ever encountered

IsHardwareSoundPlaying_PleaseDontUseThis(). Called in at least 50 places in the code base, working perfectly. …
1
vote

Best open XML parser for C++

Do not use TinyXML if you're concerned about efficiency/memory management (it tends to allocate lots of tiny blocks). My personal favourite is …