Skip to content

Instantly share code, notes, and snippets.

View emilh91's full-sized avatar
🏠
Working from home

Emil Huseynaliev emilh91

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am emilh91 on github.
  • I am emilh91 (https://keybase.io/emilh91) on keybase.
  • I have a public key ASDKcD8Jm3VVgjZesBzYIYUZOwa1JM6PVYsT4nGuaNlv2Ao

To claim this, I am signing this object:

@emilh91
emilh91 / droplet-setup.sh
Last active March 24, 2024 02:49
Automation of Ubuntu droplet setup
# Run using the following command:
# curl -L https://gist.github.com/emilh91/9542a179beace3e2f68698da75888a97/raw | bash ; source ~/.bashrc
##### install utils
sudo apt-get update
sudo apt-get install -y git vim curl tmux lsof build-essential python3-pip unzip
##### allocate swap file
sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile