Zero Trust means:
Trust nothing by default — not users, devices, or networks.
Instead of “you’re on the internal network so you’re trusted,” Zero Trust asks:
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| DOMAIN="printer.stomp.zone" | |
| CERT_DIR="/var/lib/caddy/.local/share/caddy/certificates/acme-v02.api.letsencrypt.org-directory/${DOMAIN}" | |
| CERT_FILE="${CERT_DIR}/${DOMAIN}.crt" | |
| KEY_FILE="${CERT_DIR}/${DOMAIN}.key" | |
| YEAR="$(date +%Y)" | |
| MONTH="$(date +%-m)" |
| #!/usr/bin/env python3 | |
| """ | |
| Bootstrap a Claude Code channel project with Discord. | |
| Revision 1.2.1, Apr 10, 2026 | |
| Copyright (c) 2026 DJ Stomp; MIT License | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: (a) The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. (b) THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. (c) IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LI |
| #!/usr/bin/env python3 | |
| # DJ Stomp 2026 | |
| # "No Rights Reserved" | |
| # | |
| # Based on eacmen's exploit for the WA850RE: | |
| # https://gist.github.com/eacmen/9ab3d768663003f85889b5b6d2fa41a4 | |
| # | |
| import os | |
| import hashlib | |
| import zlib |
| #!/usr/bin/env python3 | |
| """ | |
| Curses TUI for editing cloudflared config.yml. | |
| Usage: | |
| sudo python3 cftui.py | |
| sudo python3 cftui.py --config /etc/cloudflared/config.yml --backup | |
| sudo python3 cftui.py --dry-run | |
| Recommended: |
This guide walks through the full setup of a Tails-based Monero cold wallet, using a custom LUKS management script, Monero CLI, and proper offline signing workflow.
Boot into Tails, offline.
Open a terminal and identify the correct USB device:
| #!/usr/bin/env bash | |
| # LUKS Partition Utility | |
| # DJ Stomp 2025 | |
| # MIT License | |
| ############################################################################## | |
| # MIT LICENSE # | |
| # Copyright 2025 DJ Stomp # | |
| # Permission is hereby granted, free of charge, to any person obtaining a # |
| [ | |
| "DJ Stomp 2025", | |
| "No Rights Reserved", | |
| { | |
| "title": "Dancing Queen", | |
| "artist": "ABBA", | |
| "downloaded": true | |
| }, | |
| { | |
| "title": "Mamma Mia", |
| #!/usr/bin/env python3 | |
| """ | |
| SBND - Simple Bespoke Network Diagnostics | |
| ICMP reachability and TCP port behavior analysis tool | |
| Designed to help distinguish between | |
| - Host down | |
| - Host reachable but port closed | |
| - Traffic filtered | |
| - Port-specific blocking |
| @font-face { | |
| font-family: 'Source Code Pro'; | |
| font-style: normal; | |
| font-weight: 300; | |
| src: url(SourceCodePro-300.woff) format('woff'); |