Skip to content

Instantly share code, notes, and snippets.

View carlosm3011's full-sized avatar
💭
Mining Internet and RPKI routing data

Carlos Martinez-Cagnazzo carlosm3011

💭
Mining Internet and RPKI routing data
View GitHub Profile
@carlosm3011
carlosm3011 / install-docker-ce-DEBIAN.sh
Last active May 26, 2019 00:55
Installing DOCKER-CE on Ubuntu 16.04 (and possibly newer)
# instalacion para debian stretch
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg2 \
software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
@carlosm3011
carlosm3011 / bash-friendlier-automoplete.sh
Last active October 19, 2019 06:03
Friendlier autocomplete for bash (mac, linux)
# set this parameter in .bashrc or .bash_profile
# Source: [See gist comments]
#bind 'set mark-symlinked-directories on'
# (Hopefully) For all readline-enabled processes
# If ~/.inputrc doesn't exist yet: First include the original /etc/inputrc
# so it won't get overriden
# if [ ! -a ~/.inputrc ]; then echo '$include /etc/inputrc' > ~/.inputrc; fi