Shaikh Al Amin

Shaikh Al Amin @shaikhalamin

About: Senior Software Engineer | Frontend Specialist | Laravel, Express,React

Location:
Dhaka
Joined:
Oct 9, 2020

Shaikh Al Amin
articles - 27 total

How to deploy Node.js Nest.js project on AWS lamda serverless

N:B Setup necessary VPC configurations, public and private subnet, provide necessary permission of...

Learn More 2 1Jan 23

How to deploy fastAPI app with postgreSQL database in AWS EC2

SSH into your AWS cli System update and install Postgres, Nginx, python3 pip, and...

Learn More 0 0Nov 7 '24

How to detect your Python library path from docker in your VS Code

Vs Code plugins dependencies: 1. Install python plugin from Microsoft 2. Install...

Learn More 0 0Nov 5 '24

Git daily usage

Initializing a Repository: git init: Initializes a new Git repository in your current...

Learn More 0 0Oct 22 '24

Ubuntu low storage problem fixing for docker, large log file, and deleted file

First backup your docker-related storage data like MySQL and Postgres and other storage...

Learn More 0 0Sep 2 '24

How to fix Ubuntu 22.04 video open problem

sudo apt install ubuntu-restricted-extras

Learn More 0 0Aug 7 '24

How to setup postgres on ubuntu 20.04

Ref Link: Installation Docs sudo apt install curl ca-certificates sudo install -d...

Learn More 2 0Jul 9 '24

Install aws cli in ubuntu

Run the below command: curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.0.30.zip" -o...

Learn More 0 0May 3 '24

MySQL useful commands

Find Duplicate In table Not functional fully in some cases SELECT full_name,...

Learn More 0 0Feb 28 '24

Install Nvidia Geforce graphics driver for Dell PC in Ubuntu

Check for available drivers in Ubuntu: sudo ubuntu-drivers list Enter fullscreen mode ...

Learn More 1 0Jan 2 '24

How to install PHP 8.2 and Laravel version 10 in Ubuntu

Install Ubuntu basic dependency: sudo apt install curl software-properties-common ca-certificates...

Learn More 1 0Dec 24 '23

Find disk usage of a folder and sort by size

To check the total os disk info: df -h Enter fullscreen mode Exit fullscreen...

Learn More 0 0Dec 20 '23

How to setup Python 3.10 or later, venv and pip setup in Ubuntu

To Install python 3.10 or latest: sudo apt update sudo apt upgrade Enter...

Learn More 0 0Dec 11 '23

How to install dotnet 6 in ubuntu 20.04

Download and install the below package: wget...

Learn More 0 0Dec 6 '23

Linux server setup with nginx for Laravel and MySQL

LEMP Stack Setup - Ubuntu *SSH into the server first: * *======Install Nginx ====== :...

Learn More 0 0Nov 17 '23

Vue 2 vite dockerized steps

*Create the Dockerfile like below : * FROM node:lts-alpine WORKDIR /usr/src/app COPY...

Learn More 0 0Nov 11 '23

Vpn issue ubuntu for p2p connection fixing using l2tp client

sudo apt-get install network-manager-l2tp network-manager-l2tp-gnome Enter fullscreen mode ...

Learn More 0 0Nov 6 '23

How to run mongodb using docker-compose in ubuntu

Create docker-compose file like the following: version: '3.7' services: mongodb: image:...

Learn More 16 3Oct 4 '23

How to run postgres database using docker and docker-compose

Using docker-compose: Create a directory postgresql_data. mkdir postgresql_data Enter...

Learn More 0 0Oct 3 '23

Squashing without using git squash

Git squash alternatives using reset: If your target pull request branch is master, then follow the...

Learn More 0 0Aug 25 '23

postgres create csv from select command

BEGIN; -- Start a transaction \COPY (SELECT * FROM addresses) TO...

Learn More 0 0Aug 23 '23

Securing files/images in laravel

If you put a file in public folder it will be accessible to everyone who knows the file name, because...

Learn More 0 0Jul 27 '23

Create a desktop entry for postman in ubuntu

Download postman and extract it in your home folder. Create a postman.desktop file in local share...

Learn More 0 0Jun 12 '23

Create a Network File Share(NFS) in ubuntu machine and use it in your local machine

// Install NFS server on other machine sudo apt-get update sudo apt-get install...

Learn More 0 0Jun 6 '23

Open/Mount HDD in SSD in linux

In order to show all available disk and mount point linux/Ubuntu: Step 1: lsblk -o...

Learn More 0 0May 30 '23

Install and configure mysql in ubuntu 20.04

Please follow step by step command sudo apt update sudo apt install mysql-server Enter...

Learn More 1 0Mar 24 '23

How to install PHP GRPC extensions in Ubuntu OS

First install the below library to make compatible with pecl sudo apt install php-dev php-pear...

Learn More 3 0Mar 23 '23