Manage website using Git – Shared, VPS, Dedicated

In this article, you will learn how you can manage your website, hosted on Shared, VPS, or dedicated server, using Git version control. Video tutorial: This tutorial works for all Shared, VPS, and dedicated hosting servers. I have created a simple “Hello world” PHP file. I have created a sub-domain and Git repo on my …

Job Portal website in PHP and MySQL – MVC

Home

A Job Portal website is created in PHP and MySQL using MVC architecture. MVC stands for Model-View-Controller and this architectural design is used by many websites for scalability. New features: Files included: Tech stack: Recruiter can post a job Recruiter posted jobs Change status of applicant Edit/delete job A recruiter can edit or delete any …

Convert UTC to local timezone – Node JS

In this tutorial, we will teach you, how you can convert UTC time to your local timezone in Node JS. Following code will first get the current datetime in UTC, then convert it to user local timezone. Note: You do not need to provide the timeZone from client side. Node JS will automatically detect the …

How to free up space in Mac

In this article, we will show you how you can free up some space in your Mac. If you are running low on space, this is for you. My Mac was running on 5-6 GB and it keeps getting lower as I work more. So I did the following actions and now my Mac has …

How to fix CORS error in FastAPI Python

If you are developing an application and getting CORS error in Python FastAPI, then you can fix it by first importing the CORS middleware from FastAPI module. Then you need to add that middleware in your FastAPI “app” instance. Allow all origins, all credentials, and all methods and headers. It will fix CORS error in …