Skip to content

Instantly share code, notes, and snippets.

View pnlrogue1's full-sized avatar

Philip Lane pnlrogue1

View GitHub Profile
@pnlrogue1
pnlrogue1 / foundryvtt-podman.md
Last active January 3, 2024 23:49
FoundryVTT via Podman

Run Foundry VTT via Podman

❗ Work in Progress
Note that this is a work in progress. It will have rough edges
  1. Install podman
  2. Setup variables (ONLY WORKS UNTIL YOU LOGOUT - IF YOU LOGOUT AND NEED THEM AGAIN, YOU WILL NEED TO RUN THIS STEP AGAIN)
    foundry_version="11-309"
    
yum install zsh git podman bpytop nano -y
@pnlrogue1
pnlrogue1 / aliases.sh
Last active March 8, 2021 09:10
Useful Linux Aliases
# Put this in the .bashrc or .zshrc (or equivalent) file
alias please='sudo $(fc -ln -1)' # Repeats the previous command with "sudo" in front of it
alias noprox='$(fc -ln -1) -o ProxyCommand=none' # Used for when you need to SSH without a proxy but your config defaults to using one
alias python_upgrade="pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U"