STEPS:
- Organize zones
- Forward wireguard traffic (tunnel unrecognized (0.0.0.0/0) traffic to your default gateway)
- Masquerade forwarding traffic (do snat for outgoing and dnat for incoming traffic)
Did you just check out / clone a repository and forget --recursive / --recurse-submodules? Well, do this:
git submodule update --init --recursive --remote
For information about why this nugget was lost and burried in another stack exchange article, see this: https://meta.stackoverflow.com/questions/400424/how-can-i-request-that-a-question-merge-be-reversed
\documentclass[12pt]{article} | |
% Encoding | |
\usepackage{fontspec} | |
\usepackage{polyglossia} | |
\usepackage{csquotes} | |
\setdefaultlanguage{english} | |
% Formatting | |
\usepackage{fullpage} |
################################# | |
# | |
# Backend | |
# | |
################################# | |
# Backend to use: "xrender" or "glx". | |
# GLX backend is typically much faster but depends on a sane driver. | |
backend = "glx"; |
port=0 | |
interface=enp8s0 | |
bind-interfaces | |
dhcp-range=192.168.0.50,192.168.0.150,12h | |
enable-tftp | |
dhcp-match=set:efi-x86_64,option:client-arch,7 | |
dhcp-boot=tag:efi-x86_64,grubx64.efi | |
tftp-root=/tmp/tftpboot |
#!/bin/sh | |
set -x | |
NAME=thingy | |
MIRROR=ftp.at.debian.org/debian | |
tmpdir=$(mktemp -p "${TMPDIR:-/tmp/}" -d $NAME-XXXX) || exit 1 | |
#tmpdir=/tmp/thingy | |
#mkdir -p "$tmpdir" |
# By Jake VanderPlas | |
# License: BSD-style | |
import matplotlib.pyplot as plt | |
import numpy as np | |
def discrete_cmap(N, base_cmap=None): | |
"""Create an N-bin discrete colormap from the specified input map""" |
# A simple generator wrapper, not sure if it's good for anything at all. | |
# With basic python threading | |
from threading import Thread | |
try: | |
from queue import Queue | |
except ImportError: | |
from Queue import Queue | |