Tales of C++ - Episode Six: Boollocks--K-ballo
Tales of C++, Episode 6:
Boollocks
by K-Ballo
From the article:
In the beginning there was no
bool. And C++ said "let there bebool", and there wasbool...The Boolean data type is an integral type with only two values:
trueandfalse, intended to represent the truth values of logic and Boolean algebra. With only two values, what can possibly go wrong?

I've been looking at the BlackBerry 10 NDK the last weeks, and did write about it to share some thoughts and results.
A nice piece of writing on a C++11 feature:
Here is a nicely accessible description of synchronization in the C++ memory model:
On CRTP with multi-level inheritance, cloning, and the constructor forwarding problem.