BEFORE ANY CHANGES:
- READ EXISTING CODE - Use Read tool, analyze patterns, check implementations
- VERIFY CLAUDE.MD LOADED - Reference architectural patterns, follow conventions
- UNDERSTAND ARCHITECTURE - Check dependencies, existing helpers/traits
BEFORE ANY CHANGES:
| claude mcp add gemini-cli bunx gemini-mcp-tool | |
| claude mcp add --transport sse context7 https://mcp.context7.com/sse | |
| claude mcp add sequential-thinking bunx @modelcontextprotocol/server-sequential-thinking | 
| #!/bin/bash | |
| curl -sL yabs.sh | bash | |
| curl -sL nws.sh | bash | 
| 0123456789nonexistent.com | |
| 0d.kebhana.mx | |
| 1337.abcvg.info | |
| 207.241.226.111 | |
| 207.241.231.226 | |
| 52.58.128.163 | |
| [2a03 | |
| [2a04:ac00:1 | |
| [2a0f:e586:f:f: | |
| amigacity.xyz | 
| #!/bin/bash | |
| apt update | |
| apt upgrade -y | |
| apt full-upgrade -y | |
| apt --purge autoremove | |
| cp -v /etc/apt/sources.list /root/sources.list-backup.11.bullseye | |
| tee /etc/apt/sources.list > /dev/null << EOF | |
| deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware | 
| #!/bin/bash | |
| echo "Install CPU Power" | |
| apt install linux-cpupower -y | |
| echo "Get Detail CPU" | |
| cpupower frequency-info | |
| cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor | |
| echo "Setup Systemd" | 
| #!/bin/bash | |
| # Function to generate a random password | |
| generate_random_password() { | |
| tr -dc A-Za-z0-9 </dev/urandom | head -c 12 | |
| } | |
| # Prompt for username | |
| read -p "Enter username: " USERNAME | 
| #!/bin/bash | |
| echo "Install VSCode for Ubuntu or Debian" | |
| echo "Ref: https://code.visualstudio.com/docs/setup/linux" | |
| echo "code code/add-microsoft-repo boolean true" | sudo debconf-set-selections | |
| sudo apt-get install wget gpg -y | |
| wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg | |
| sudo install -D -o root -g root -m 644 packages.microsoft.gpg /etc/apt/keyrings/packages.microsoft.gpg | |
| echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" |sudo tee /etc/apt/sources.list.d/vscode.list > /dev/null | 
| #!/bin/bash | |
| # Set Timezone | |
| timedatectl set-timezone "Asia/Jakarta" | |
| # Update | |
| apt-get update | |
| apt-get upgrade -y | |
| # Install missing deps | 
| import requests | |
| import json | |
| import os | |
| def updateRecord(target, cf_token, ip): | |
| # Cloudflare Token | |
| cf_api = "https://api.cloudflare.com/client/v4/" | |
| # Cloudflare Headers |