Skip to content

Instantly share code, notes, and snippets.

# Author: Kewbit.org
# Description: Hardened TOR-based orchestrator for Docker containers with isolated networking, circuit-level Tor routing, and optional container access control.
set -e
# === GLOBALS ===
TOR_GW_NAME="tor-gateway"
DEFAULT_TOR_IP="192.168.100.2"
BRIDGE_PREFIX="kewnet" # Changed for consistent prefix
BASE_SUBNET="192.168"
@Passw
Passw / README.md
Created October 25, 2025 23:35 — forked from magnetikonline/README.md
VirtualBox create host-only interface and attach to VMs.
@Passw
Passw / vim-sexp-cheatsheet.md
Created December 22, 2025 05:37 — forked from cszentkiralyi/vim-sexp-cheatsheet.md
vim-sexp cheatsheet

Prereqs

These are for the combined vim-sexp (https://github.com/guns/vim-sexp) and vim-sexp-mappings-for-regular-people (https://github.com/tpope/vim-sexp-mappings-for-regular-people) plugins. vim-sexp is neat on its own but Tim Pope makes common stuff much easier.

Note that some vim-sexp functionality depends on <LocalLeader> mappings. This is a different leader key than the global leader, and is the variable maplocalleader (instead of mapleader). To see if you have this set, use :echo maplocalleader; if it errors out you'll need to set it, otherwise it will echo the key. If you want to set your LocalLeader to <Space>, you'll need two commands in your .vimrc, since by default <Space> is bound to <Right> in normal mode:

nnoremap <Space> <Nop>
let maplocalleader=" "

TOC