Architecture of Modern Software (Azure perspective)

https://azure.microsoft.com/en-us/training/distributed-cloud-apps/#fundamentals 6.5 hours of training material for free, including topics on: Fundamentals – Orchestration, Clusters, Microservices, Containers, 12 Factor App design, CI/CD Networking – Service endpoints, Forward/Reverse Proxies, DNS, Load balancing, API Versioning, Retries/Idempotency Messaging with queues – Benefits, Fault tolerance, Queue features Service upgrade & configuration – Service updates, Rolling updates, Shutdown and reconfigure […]

Identity Server and Multi Tenant Applications

Building a multi-tenant application using IDSVR4 and ASP.NET Core JWT Signing using RSASSA-PSS in .NET Core Article = https://www.scottbrady91.com/C-Sharp/JWT-Signing-using-RSASSA-PSS-in-dotnet-Core Repo = https://github.com/scottbrady91/Blog-Example-Classes/tree/master/RsaPssJwtSigning PKCE in IDSVR4 https://github.com/vinaylunawat/IdentityServerWithAuthorizationToken ASP.NET Core using Proof Key for Code Exchange (PKCE) https://www.scottbrady91.com/OpenID-Connect/ASPNET-Core-using-Proof-Key-for-Code-Exchange-PKCE https://github.com/scottbrady91/AspNetCore.Pkce ASP.NET Core Swagger UI Authorization using IdentityServer4 https://www.scottbrady91.com/Identity-Server/ASPNET-Core-Swagger-UI-Authorization-using-IdentityServer4 Finbuckle.MultiTenant is a multitenancy library for ASP.NET Core 2.1+. It […]

NVM

Node Version Manager Install nvm: sudo npm install nvm@latest -g nvm ls // lists node versions nvm alias default 10.16.0 // nvm alias stable 10.16.0 nvm uninstall v8.9.0 // uninstall node version 8.9.0 nvm which 10.16.0 // shows the path to node v10.16