The Four Essential Sections of an HAProxy Configuration
Hitless Reloads / Hot Restarts with HAProxy!
Extending HAProxy with the Stream Processing Offload Engine - HAProxy Technologies
# https://thoughtbot.com/upcase/videos/tmux-navigation#resizing | |
# https://leanpub.com/the-tao-of-tmux/read#leanpub-auto-keybindings-1 | |
# Prefix is backtick ` | |
# Source tmux conf | |
tmux source-file ~/.tmux.conf | |
# Show all keybinding |
# debug .zshrc | |
zsh -xv &> >(tee ~/zsh-debug.log 2>/dev/null) | |
exit |
# Get dates in RFC3339 | |
gdate -Iseconds -u | |
brew list coreutils | |
# unzip tar.xz | |
tar -xf file.tar.xz | |
# List env variables | |
printenv |
# Ubuntu | |
# Add users | |
sudo adduser newuser | |
# Delete users | |
sudo deluser newuser | |
# Show users | |
less /etc/passwd | |
getent passwd |
# [MP4] Inspect Atomic structure | |
AtomicParsley --version | |
AtomicParsley example.mp4 -T 1 | |
## To hard reset a single file to HEAD: | |
git checkout @ -- myfile.ext | |
## Unstage an added file in Git | |
git reset HEAD path/to/file | |
## Check staged differences | |
git diff --cached |