C++0x is an international standard Posted on August 13, 2011finally there is C++11 :)[Read More]C++ C++11
vector: reserve with care Posted on July 26, 2011notes on how vector resizing with pre-allocation can tank performance[Read More]C++ performance
dissecting any Posted on July 7, 2011notes on implementing any and performance characteristics[Read More]C++ C++11
google earth Posted on June 14, 2011back in the day i was hacking with google earth for some project, just a short note[Read More]
Functional Programming For The Rest of Us Posted on June 7, 2011linked article about some thoughts on functional programming[Read More]
callable entity Posted on May 31, 2011notes about callable entities, not necessarily just functions are callables[Read More]C++
auto and decltype Posted on May 28, 2011c++11 type inference mechanism with auto & decltype[Read More]C++ C++11
range based for-loop Posted on May 26, 2011c++11 syntactic sugar for-loop, makes code lot readable[Read More]C++ C++11
Calling Convention Posted on May 15, 2011series of articles on calling convention for x86 platform[Read More]