How to create an AWS VPC with public and private subnets and enable outbound internet access from the private subnets through a NAT Gateway.
This is a quick post to show how to implement a global exception handler in .NET 5.0.
This is a quick example of how to hash and verify passwords in .NET 5.0 using the BCrypt.Net-Next password hashing library, a C# implementation of the bcrypt password hashing function.
This is a quick post to show how to configure a .NET 5.0 API to allow CORS requests from any origin as well as with credentials.
Published: May 25 2021
Last updated: January 07 2022
This tutorial shows how to build a .NET 5.0 API that supports user registration, login with JWT authentication and user CRUD operations. Includes example client apps built with Angular, Blazor, React & Vue.
How to implement Basic HTTP Authentication in .NET 5.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published: May 10 2021
Last updated: June 14 2021
How to setup an AWS environment from scratch and deploy a .NET Core 3.1 API to AWS Lambda that connects to a SQL Server database running on AWS RDS (Relational Database Service) and sends email using AWS SES (Amazon Simple Email Service).
How to implement custom JWT authentication in .NET 5.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
This is a quick example of how to implement a required checkbox field in React with version 7 the React Hook Form library.
A quick set of examples to show how to send HTTP DELETE requests from React to a backend API using axios