-
Find the Discord channel in which you would like to send commits and other updates
-
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
In summary, DDNS stands for Dynamic DNS. DDNS updates a DNS name in real-time to point to a changing IP address. This is useful for devices without a static IP. For example, companies like Google use static IPs and IP ranges, which are more expensive than ephemeral IPs and IP ranges. DDNS provides a cost-effective alternative, linking a hostname to a dynamic IP address.
To use DDNS, you need an account with a DDNS provider. While some services are paid, they are still cheaper than static public IPs from ISPs. A script or service on your device updates the DDNS server with your current IP at regular intervals to maintain the link between your hostname and IP address. Luckily for us, DuckDNS is free for everybody and relays on donations to keep their services running.
| #-# Find Approx closest color name from rgb/hex value - Standalone | |
| #-# Just import/use get_color_name (check after line 1000) | |
| def srgb_to_linearrgb(c): | |
| if c < 0: return 0 | |
| elif c < 0.04045: return c/12.92 | |
| else: return ((c+0.055)/1.055)**2.4 | |
| def hex_to_rgb(h): | |
| '''Convert a hexadecimal color value to a 3-tuple of integers |
| #!/usr/bin/env python | |
| from operator import itemgetter | |
| import sys | |
| import json | |
| import math | |
| import re | |
| # usage: ./color.py [hex RGB color] | |
| # returns the five 'closest' CSS color names to the input color |
| ╔╦╗╦ ╦ ╔╗ ┬ ┬┌─┐ ╔╗ ┌─┐┬ ┬┌┐┌┬┐┬ ┬ ╦═╗┌─┐┌─┐┌─┐┬ ┬┬─┐┌─┐┌─┐┌─┐ | |
| ║║║╚╦╝ ╠╩╗│ ││ ┬ ╠╩╗│ ││ │││││ └┬┘ ╠╦╝├┤ └─┐│ ││ │├┬┘│ ├┤ └─┐ | |
| ╩ ╩ ╩ ╚═╝└─┘└─┘ ╚═╝└─┘└─┘┘└┘┴ ┴ ╩╚═└─┘└─┘└─┘└─┘┴└─└─┘└─┘└─┘ | |
| // | |
| ()==========>>======================================-- | |
| \\ | |
| 2FA Bypass |
| ╔╦╗╦ ╦ ╔╗ ┬ ┬┌─┐ ╔╗ ┌─┐┬ ┬┌┐┌┬┐┬ ┬ ╦═╗┌─┐┌─┐┌─┐┬ ┬┬─┐┌─┐┌─┐┌─┐ | |
| ║║║╚╦╝ ╠╩╗│ ││ ┬ ╠╩╗│ ││ │││││ └┬┘ ╠╦╝├┤ └─┐│ ││ │├┬┘│ ├┤ └─┐ | |
| ╩ ╩ ╩ ╚═╝└─┘└─┘ ╚═╝└─┘└─┘┘└┘┴ ┴ ╩╚═└─┘└─┘└─┘└─┘┴└─└─┘└─┘└─┘ | |
| // | |
| ()==========>>======================================-- | |
| \\ | |
| 2FA Bypass |
Bluesky has implemented age verification measures in response to regional laws that restrict access, prompting users to verify their age through Epic Games' Kids Web Services before they can access adult content.
This sucks, but thankfully there are ways to work around it.
Before diving in: I encourage you to read this entire document, including the
Refined prompt: Delegation Chain
Goal
Build delegation-chain, a first-class smithers workflow where stronger models recursively decompose, de-risk, and delegate work to weaker models — plus a live n8n-style UI — with every piece shipped as a reusable standard-library module. Its first production workload: a slow, docs-driven migration of ../plue (closed-source Go) into this repo's apps/* / packages/*, covering source code, infra-as-code, end-user docs, and (approval-gated) internal docs.
The workflow, phase by phase
Phase 0 — Goal refinement. An agent takes the user's ambiguous goal and forecasts the minimum set of questions needed to make it unambiguous. It asks only genuine user-preference questions (implementation decisions are made by the chain itself) and skips unlikely ones. Each question ships with a prefilled recommended default. The smart agent emits questions as JSON; a fast, cheap agent renders each question's form UI in a separate task, optimistically staying ~10 questions ahead of the user so
| #!/bin/bash | |
| # Depends: jq (https://stedolan.github.io/jq/) | |
| default_compose="/docker/compose/gluetun/docker-compose.yml" | |
| compose="${1:-$default_compose}" | |
| relays_url="https://api.mullvad.net/www/relays/all/" | |
| fail() { printf "%s: %s\n" "$0" "$*"; exit 1; } | |
| read_var() { |
| #!/usr/bin/env python3 | |
| """ | |
| Claude Code Audit Logger | |
| Tracks all tool usage for compliance and debugging | |
| """ | |
| import json | |
| import os | |
| import sys | |
| from datetime import datetime |

