As we all know, concepts were cut from the C++0x standard. However, it seems that all is not lost.
While browsing yesterday, I found this, and was I interested...!

http://www.drdobbs.com/visualstudio/227500449

Basically, we can emulate concepts with C++98 functionality and even more powerful concept checking with C++0x.
It would seem that concepts are basically just syntactic sugar since we can pretty much do all of it already. It isn't newbie friendly, but at least we, the experts, can still leverage concepts in our code.
It even introduced me to a concept I never knew.
I strongly urge those who haven't read this to do so.

And out of curiosity, how many knew of this already?