C++ Insights Episode 57: More performance thanks to more implicit moves in C++20 -- Andreas Fertig
In this episode, you learn about a change in the standard that can give you more performance, thanks to the implicit move.
C++ Insights Episode 57: More performance thanks to more implicit moves in C++20 - Andreas Fertig

The C++ proposal for 
C++26 will introduce a new concurrency feature called std::execution, or senders/receivers. Lucian Radu Teodorescu explains the idea and how to use these in detail.
Static reflection is under consideration for C++26. Wu Yongwei demonstrates how to achieve reflection now and shows some examples of what C++26 might make possible.
The trick to understanding C++ compiler error messages is to focus on two things. First, look at the beginning of the error message, which tells you what went wrong at a very low level. Then skip over the intermediate errors that follow the chain of calls until you end up at the line of code that you wrote. That original line of code is the one that is leading the compiler to a bad place. After that, you sometimes get supplemental information that helps you understand the low-level error better.