How to Add .gitignore to an Existing Repository

Add Git Ignore to an existing Visual Studio Project

In Git, a .gitignore file plays a crucial role in managing your repository. It specifies which files and directories should be ignored by Git, preventing them from being tracked and included in your version control history. This is essential for excluding files that are not necessary for the project, such as build artifacts, temporary files, … Read more

How to Implement Cookie-Based User Authentication in ASP.NET Core

Login Web Application using Cookie Authentication in ASP NET Core

In this tutorial, we’ll explore how to create a robust login web application using Cookie Authentication in ASP.NET Core. We’ll walk through the steps for implementing user registration and logout functionalities seamlessly. Additionally, we’ll leverage Dapper, a micro ORM, to handle database connectivity efficiently. By the end, you’ll have a solid understanding of how to … Read more

How to Build a Simple Restful API in PHP

Application program interface (API) is a set of instructions, protocols, or implementation created to be accessible in a client-side application. It is also used for securely transmitting data when it comes to the database application. It Controls data flow and limits client-side applications to have full control of the main data. A good API can secure the database from being … Read more

How to Implement Firebase Authentication with React

In this article, we will explore how to implement Firebase Authentication with React. We’ll walk you through the process, making it simple to integrate Firebase authentication services into your React apps. Whether you want to improve user login security or streamline authentication methods, this guide will give you with the necessary insights and direction. Before … Read more

ASP.NET Core MVC Login and Registration using Identity

Login and Registration using Identity

In this article, we will learn how to create a login and registration using identity in asp.net core. ASP.NET Core Identity provides a framework for managing and storing user accounts in ASP.NET Core apps.  Identity is flexible enough to sync with SQL Server databases, so we’ll store login information there. Entity Framework will store user data, … Read more