VSCode - Improving productivity with VS code less than 1 minute read VS code can do that https://burkeholland.gitbook.io/vs-code-can-do-that/ Visual Studio Code tips and tricks https://channel9.msdn.com/Events/Build/2020/BOD103?ocid=AID3012654&WT.mc_id=build2020-azuredevtips-micrum Share on Twitter Facebook LinkedIn Previous Next
C++ - variadic template with fold expression less than 1 minute read C++ variadic template fold expression
C++ - lvalue, rvalue abbreviations less than 1 minute read lvalue: locatable value(addressable value) xvalue: expiring value glvalue: generalizable lvalue, it will be lvalue or xvalue rvalue: not addressable value(no...
C++ - unique_ptr for custom resource less than 1 minute read Using unique_ptr for a custom resource such as opening a file.