How to Create Your Own GPT with OpenAI’s Assistants API
Are you ready to take your AI skills to the next level? This blog post is your roadmap to building your own GPT (Generative Pre-trained Transformer) using OpenAI’s Assistants API.…
Mastering Function Decorators in Python!
Decorators are an extremely useful feature in Python language that allows programmers to change the behaviour of a function without changing the function. In this post, we are going to…
Python Dotenv: How To Manage Environment Variables in Python
Managing your Python application’s environment variables can be a challenge, especially if you’re dealing with sensitive information like API keys or database credentials. This is where python-dotenv comes into play.…
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…