Using .env Files for Environment Variables in Python Applications
Environment variables are one of the key ways software developers provide the potentially sensitive or environment specific information your application will need to perform its tasks. Using a .env file…
Developing RESTful APIs with Python and Flask
Let's learn how to develop RESTful APIs with Python and Flask. Throughout this article, we will use Flask and Python to develop a RESTful API. We will create an endpoint…
How to Install Pyenv on Ubuntu 22.04
Due to the slowness of repositories or even lack thereof being updated with specific versions of Python, I’ve decided to move some of my environments over to Pyenv to allow…
Understanding JSON Web Tokens (JWT)
JSON Web Token is known as JWT. It is an open standard that is used for transmitting information between parties as a JSON object. JWT is a secure way for…
Introduction To JSON Web Token (JWT)
I am going to explain about JWT which stands for JSON Web Token in this article. It is useful for Authentication and Authorization. Authentication is validating the user with credentials…
JWT Authentication And Authorization In .NET 8.0 With Identity Framework
This article is about JWT authentication using .NET 8.0 version. We will be using the Microsoft Identity framework to store user and role information. Authentication is the process of validating…
Implement JWT In .NET Core API
This article is a step-by-step guide to implementing JWT-based Authentication in ASP.NET Core API. The goal of this article is to first start by learning how JSON Web Tokens (or…
Using Identity In ASP.NET Core MVC Authentication
This article explains how to get started with Identity.UI in ASP.Net Core MVC user authentication and registration. In this article, we discussed how to use Identity UI in ASP.NET Core…
How to Implement JWT Authentication in Web API Using .Net 8.0, Asp.Net Core
JWT stands for JSON Web Token digitally signed using a secret key by a token provider. It helps the resource server to verify the token data using the same secret…
Run SQL Server 2022 Linux container images with Docker
With a containerised version of SQL Server, you can run the database server anywhere you can install docker. To install SQL Server 2022 in a container, you need to create…