Skip to content

Instantly share code, notes, and snippets.

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

jenniecoffee kimjayney

🏠
Working from home
View GitHub Profile
@kimjayney
kimjayney / readme.sh
Created May 18, 2021 16:08 — forked from thiagomarini/readme.sh
How to install supervisor on Amazon Linux
# Install it as a yum package instead of throgh pip (will save you from lots of hassle)
# first get epel
sudo amazon-linux-extras install epel
# then install supervisor
sudo yum install supervisor
@cybik
cybik / QUITE WEIRD.md
Last active June 5, 2023 02:02
Dumb openwrt+docker stuff

Some jank about homenet/hncp

opkg remove odhcpd-ipv6only; opkg install odhcpd;
opkg install  luci-app-hnet luci-proto-hnet hnet-full-secure
@peabnuts123
peabnuts123 / ls-containers.sh
Created December 13, 2019 03:40
docker ps alias for pretty-printing running containers, with only relevant fields
# Paste into your .bashrc / .bash_profile / .zshrc etc.
alias ls-containers="docker ps --format 'table {{.ID}}\t{{.Names}}\t{{.RunningFor}}\t{{.Status}}'"