How to do "modern" template metaprogramming using C++11 constructs. Article here.…
Using variadic templates cleanly
Great article on effective variadic templates techniques.…
inline, the secret understanding
A great explanation of why we need the inline specifier. So, what is the actual purpose of the inline keyword? It's simple: a function marked inline can be defined in more than one translation unit without violating the One Definition Rule (ODR).…
Check for missing imports
Nice snippet of code from Eric Bidelman for checking for unregistered custom elements (which usually denotes the absence of some required imports). The snippet is here.…
Crazy Eddie's primer in C++ TMP
Primer from one of the most active users on /r/cpp, here's the article…