This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # bootstrap.sh — fresh machine setup for macOS or Linux (Ubuntu/Debian, Fedora/RHEL, | |
| # Arch, openSUSE) | |
| # Installs: Homebrew, Chrome, VLC, OBS, WezTerm, Ghostty, Neovim (+deps), Docker, Zed | |
| # | |
| # Run as your normal user, NOT as root — the script calls sudo itself | |
| # whenever it needs privileges (and only asks for your password once). | |
| # | |
| # Usage: chmod +x bootstrap.sh && ./bootstrap.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # deep_scan_final.sh - Fixed & Improved version (2026) | |
| # Usage: ./deep_scan_final.sh [--fast|--full] <url|file.txt> [custom-pattern] | |
| # ------------------------------------------------------------------- | |
| # 0. ARGUMENT PARSING (mode flag must come first) | |
| # ------------------------------------------------------------------- | |
| SCAN_MODE="full" # default | |
| case "$1" in |