One Git, Two Identities: How to Keep GitHub and Bitbucket From Mixing You UpAug 11, 2025·2 min read·27
Linux Software Installation Guide: 5 Easy Ways to Install Your Favorite AppsMar 30, 2024·2 min read·152
Solving LocalStorage Token Sync in DevelopmentThe Problem: Manual Token Transfer Between Environments Modern web applications often rely on authentication tokens stored in the browser's localStorage to manage user sessions. During development, teams frequently work across multiple environments—s...Jan 17, 2026·2 min read·44
How To Use The Git BranchesIn simple terms, a git branch is a way to create a copy of your code at a certain point in time, so that you can work on new features or make changes without affecting the original code. It's like creating a new "branch" in a tree - the main trunk of...Feb 24, 2023·3 min read·20
How To Add SSL Certificate on Centos 8Why We Need SSL? SSL certificates are required for websites in order to protect user data, validate website ownership, prevent attackers from creating a false version of the site, and transmit trust to users. What is Certbot? Certbot is a free, open...Feb 14, 2023·2 min read·55
AWS LightSail CI / CDPrerequisites Project on GitHub (in this tutorial I’m using the Next js application). Server SSH private key (the key you create while creating a new instance). Step 1 - Create GitHub Action secrets We need 3 Action secrets AWS_USERNAME AWS_HOSTN...Feb 13, 2023·3 min read·514
How to set up a Laravel project from GitFirst clone the repository git clone -b <BRANCH_NAME> <REPO_URL> <FOLDER_NAME> Install required packages composer install --no-scripts composer install --optimize-autoloader If required* npm install Change dir permission sudo chmod 777 -R bootstr...Feb 12, 2023·1 min read·18
How to deploy Next js application on any Linux serverPrerequisite : Linux Server, I'm using AWS Lightsail Linux (centos 8) server Next js application in the GitHub repo. Node & Apache pre-install and setup I'm assuming you've previously met all of the prerequisites. Step 1 - Clone your repo in yo...Feb 11, 2023·2 min read·202