GotW #94 Solution: AAA Style (Almost Always Auto) -- Herb Sutter
	The solution to the latest GotW problem is now available:
GotW #94 Solution: AAA Style (Almost Always Auto)
by Herb Sutter
From the article:
4. When declaring a new local variable
x, what advantages are there to declaring it usingautoand one of the two following syntaxes:(a)
auto x = init;when you don’t need to commit to a specific type? (Note: The expressioninitmight include calling a helper that performs partial type adjustment, such asas_signed, while still not committing to a specific type.)(b)
auto x = type{ init };when you do want to commit to a specific type by naming a type?

Libc++ now has a status page for the C++1Y/C++14 implementation. You can follow along here to see when your favorite features are implemented:
New on Code Project:
From the desk of ARK:
This open source REST SDK also supports Linux...
The "universal references" term is getting traction:
Bjarne Stroustrup spoke at this summer's ACM International Collegiate Programming Contest World Finals held in St. Petersburg, Russia. While there, he also gave this 8-minute interview in the context of balancing efficient code with the out-of-the-box problem solving required by ICPC problem challenges.