Skip to content

Instantly share code, notes, and snippets.

View anmolnagpal's full-sized avatar
🤘
Peace

Anmol Nagpal anmolnagpal

🤘
Peace
View GitHub Profile
@anmolnagpal
anmolnagpal / aws-key-pair.md
Created September 26, 2018 19:04
lost your key_pair

Is there any way to recover your AWS insyance, if you lost your key_pair?

Hardly not! because aws provide the key_pair only once.Here is one tip for recovering your AWS instance with a new set of key_pair.

Step1:Create a new AWS instance with the same instance type as the old one and save the new keu_pair(New instance would be in the same availability zone as the old one)

Step2:Stop the old instance and detach the root volume from the old one.

Step3:Attach the old instance root disk to new one

@anmolnagpal
anmolnagpal / README.md
Created May 23, 2018 21:43 — forked from MoOx/README.md
How to keep in sync your Git repos on GitHub, GitLab & Bitbucket easily
title tags authors
How to keep in sync your Git repos on GitHub, GitLab & Bitbucket easily
git
github
gitlab
bitbucket
MoOx
@anmolnagpal
anmolnagpal / encrypt_openssl.md
Created May 21, 2018 12:06 — forked from dreikanter/encrypt_openssl.md
File encryption using OpenSSL

Symmetic encryption

For symmetic encryption, you can use the following:

To encrypt:

openssl aes-256-cbc -salt -a -e -in plaintext.txt -out encrypted.txt

To decrypt:

@anmolnagpal
anmolnagpal / makefile-ansible
Created September 28, 2017 15:54
makefile for ansible
config:
@echo "Running Ansible"
bash -c "docker exec -ti $(IMAGE) ansible-playbook -i inventory --extra-vars=@/tmp/extra_vars.yaml --connection=local --sudo /tmp/playbook.yaml"
@anmolnagpal
anmolnagpal / makefile-docker
Created September 28, 2017 15:53
Makefile for docker repository
remove :
@echo "Removing Containers and Images"
bash -c "docker rm $$(docker stop $$(docker ps -a -q --filter ancestor=$(IMAGE) --format={{.ID}})) && \
docker rmi $$(docker images --format '{{.Repository}}' | grep $(IMAGE))"
build:
@echo "Building Image"
bash -c "CWD=$${PWD##*/} rocker build"
test:
@anmolnagpal
anmolnagpal / pm2.txt
Created July 11, 2017 07:10
Pm2 CheatSheet
Usage
Hello world:
$ pm2 start app.js
Raw Examples
# Fork mode
$ pm2 start app.js --name my-api # Name process
@anmolnagpal
anmolnagpal / osx_install.sh
Last active July 1, 2017 18:50
MacOS Tool's
#!/bin/sh
echo Install all AppStore Apps at first!
# no solution to automate AppStore installs
read -p "Press any key to continue... " -n1 -s
echo '\n'
echo Install and Set San Francisco as System Font
ruby -e "$(curl -fsSL https://raw.github.com/wellsriley/YosemiteSanFranciscoFont/master/install)"
echo Install Homebrew, Postgres, wget and cask
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
@anmolnagpal
anmolnagpal / supervisor.conf
Created June 4, 2017 20:53 — forked from tsabat/supervisor.conf
Sample supervisor config file
; Sample supervisor config file.
[unix_http_server]
file=/tmp/supervisor.sock ; (the path to the socket file)
;chmod=0700 ; sockef file mode (default 0700)
;chown=nobody:nogroup ; socket file uid:gid owner
;username=user ; (default is no username (open server))
;password=123 ; (default is no password (open server))
;[inet_http_server] ; inet (TCP) server disabled by default
@anmolnagpal
anmolnagpal / iTerm2.md
Created May 9, 2017 07:42
iTerm2 cheatsheet

Tabs and Windows

Function Shortcut
Fullscreen + Enter
Previous Tab + Left Arrow
Next Tab + Right Arrow
Go to Tab + Number
Go to Window + Option + Number
Go to Split Pane by Direction + Option + Arrow
@anmolnagpal
anmolnagpal / make.sh
Created October 10, 2016 11:51 — forked from artzub/make.sh
Install JetBrains Hub + YouTrack + UpSource + Nginx
#!/bin/bash
apt-get install mc htop git unzip wget curl -y
echo
echo "====================================================="
echo " WELCOME"
echo "====================================================="
echo
echo "Hub"