Disclaimer: Trusting VP does not necessarily imply supporting his wars. There are many other good things to be considered. Period.
I consider myself as the next Rowan Parkinson™.
“If an injury has to be done to a man it should be so severe that his vengeance need not be feared.”

Donald Duck merged my accounts.
My Cheatshits
NET:
dotnet --versionordotnet --infodotnet tool list -gdotnet tool install dotnet-ef -gdotnet tool update dotnet-ef -gdotnet tool uninstall dotnet-ef -g
EFCore:
dotnet ef migrations add <label> -p <projname>dotnet ef database update -p <projname>dotnet ef database drop -p <projname>
Solution and Projects:
- 
mkdir <dirname> cd <dirname> dotnet new sln - 
dotnet new webapi -o <projname> dotnet sln add <projname> - 
cd <projname> dotnet run dotnet watch run dotnet add <projname> package <Nugetpkg>dotnet add <projname> reference <otherprojname>
Certificate:
dotnet dev-certs https --trustdotnet dev-certs https --clean
Node, Npm, Angular:
node -vnpm -vnpm list -g --depth 0npm update -gnpm install @angular/cli -gnpm update @angular/cli -gnpm uninstall @angular/cli -gng versioninstead ofng --versionng new <projname> --routing true --style css --skip-git --skip-testsng g c <compname>ng g class subdir/<classname> --type=model --skip-tests- 
ng serve --open ng serve --port <number> --open ng add @angular/materialng build --prod- 
npm install now -g cd dist/<projname> now 
                                    
