Target: Dell Latitude E7270 / Ubuntu 24.04 / Intel i5-6300U (Skylake, 2c/4t) / 16 GB DDR4 / 256 GB SATA SSD Built: 2026-05-25 Trade-off: Sacrifices CVE mitigations and power efficiency for raw speed.
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 | |
| # Bundle and install argent globally from a given git branch. | |
| # Usage: argent_install_branch <branch-name> | |
| set -euo pipefail | |
| BRANCH="${1:-}" | |
| if [ -z "$BRANCH" ]; then | |
| echo "Usage: $(basename "$0") <branch-name>" >&2 | |
| exit 1 | |
| fi |
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
| # AUTHOR'S NOTE | |
| # | |
| # minimal ddclient config that i use | |
| # i recommend using 1984.is or freemyip.com | |
| # both registries are free and don't have KYC | |
| # | |
| # test config: | |
| # $ ddclient -daemon=0 -verbose -noquiet | |
| # test ip: | |
| # $ ddclient -query |
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
| Host *.onion | |
| ProxyCommand nc -x localhost:9050 %h %p |