This is probably a stretch, but since I want to get my feet wet in C++ again, is there some resource that could help me catch up on new features and things worth learning? I would love to avoid reading through reams of standards, but if that's it, that's it.
Many thanks in advance.
For C++20 and newer, honestly, the only big feature that I ever use is concepts, although I do also use the new struct initialization syntax[0].
If you also like thorough explanations and graphs, there's https://hackingcpp.com/ that could answer many questions you might have.
By the way, just in case, bookmark this online C++ reference https://eel.is/c++draft/ for diving in deep waters.
Good luck!