Automatically Made Weak -- Brett Hall
A nice nugget about a handy make_weak one-liner:
Automatically Made Weak
by Brett Hall
From the article:
I’ve been experimenting with the new “auto everything” style in C++. I also make regular use of
std::weak_ptr... [and wouldn't it be nice if] we can just typeauto weak = make_weak(shared);


Trust Eric Niebler to deliver the goods -- when it comes to insightful discussion, cool code, and shameless puns:
Do you know a beginner who'd like to learn C++? Or even just learn how to program... using C++?
A few hours ago,
A nice short overview of when you might want your associative container to use a contiguous implementation instead of a tree under the covers: