Skip to content

Instantly share code, notes, and snippets.

View pcsaini's full-sized avatar
🎯
Focusing

Prem Chand Saini pcsaini

🎯
Focusing
View GitHub Profile
@pcsaini
pcsaini / server-nginx-pgsql-php.sh
Last active September 22, 2025 10:31
server-nginx-pgsql-php.sh
#!/bin/bash
# Enhanced LAPP Stack Setup Script
# This script automates the installation and configuration of a LAPP stack
# (Linux, Apache/Nginx, PostgreSQL, PHP) on Ubuntu/Debian systems.
# Exit on error
set -e
# Define colors for better readability
GREEN='\033[0;32m'
@pcsaini
pcsaini / cities.json
Created August 1, 2023 09:23
Cities List of India
[
{
"state": "Delhi",
"name": "Delhi"
},
{
"state": "Maharashtra",
"name": "Mumbai"
},
{
@pcsaini
pcsaini / state_in.php
Last active August 1, 2023 09:15
Indian State List with SGT Code
<?php
// state Array
$states = [
[
"name" => "Andaman and Nicobar Islands",
"code" => "AN",
"gst_code" => '35'
],
[
@pcsaini
pcsaini / docker_install.md
Created January 17, 2023 02:38
Install Docker on Ubuntu 22.04

Initial Server Setup with Ubuntu 22.04

Step 1 - Logging in as root

ssh root@your_server_ip

Step 2 - Creating a New User

sudo adduser sammy