Skip to content

Instantly share code, notes, and snippets.

View manjotsk's full-sized avatar
😁
Working

Manjot Singh manjotsk

😁
Working
View GitHub Profile
@manjotsk
manjotsk / data_transfer.sh
Last active October 22, 2024 21:13
Restoring MongoDB from Atlas server to local
#!/bin/bash
# Function for password input (hidden)
read_password() {
echo -n "$1: "
read -s password
echo "" # Add a newline after input
echo $password
}
@manjotsk
manjotsk / promises.js
Created March 25, 2022 21:45
Promises example
// java script is asynchronous
// it is not synchronous
// it is asynchronous
// it is not blocking
// const a = ""
// const a = 0
// const a = {}
// const a = []
// const a = [""]