Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d09baa6

Browse files
committed
fix: remove hardcoded Tailscale IPs and usernames from public files
- ADR-079: strip SSH user/IP from optimization description - mac-mini-train.sh: replace hardcoded IP with env var WINDOWS_HOST Co-Authored-By: claude-flow <[email protected]>
1 parent 486392b commit d09baa6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/adr/ADR-079-camera-ground-truth-training.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,8 @@ grad = mean(grad_1, ..., grad_K)
360360

361361
#### O10: Mac M4 Pro Training via Tailscale
362362

363-
Training runs on Mac Mini M4 Pro (16-core GPU, ARM NEON SIMD) via Tailscale SSH
364-
(`[email protected]`), using ruvllm's native Node.js SIMD ops:
363+
Training runs on Mac Mini M4 Pro (16-core GPU, ARM NEON SIMD) via Tailscale SSH,
364+
using ruvllm's native Node.js SIMD ops:
365365

366366
| | Windows (CPU) | Mac M4 Pro |
367367
|---|---|---|
@@ -484,7 +484,7 @@ models/
484484
| Mac Mini camera | 1920x1080, 30fps | Yes — 14/17 keypoints, conf 0.94-1.0 |
485485
| MediaPipe PoseLandmarker | v0.10.33 Tasks API, lite model | Yes — via Tailscale SSH |
486486
| Mac M4 Pro GPU | 16-core, Metal 4, NEON SIMD | Yes — Node.js v25.9.0 |
487-
| Tailscale SSH | `[email protected]`, passwordless | Yes |
487+
| Tailscale SSH | LAN-accessible Mac, passwordless | Yes |
488488
| ESP32-S3 CSI | 128 subcarriers, 100Hz | Yes — existing recordings |
489489
| Sensing server recording API | `/api/v1/recording/start\|stop` | Yes — existing |
490490

scripts/mac-mini-train.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ echo "Host: $(hostname) | $(sysctl -n hw.ncpu 2>/dev/null || nproc) cores | $(sy
66
echo ""
77

88
REPO_DIR="${HOME}/Projects/wifi-densepose"
9-
WINDOWS_HOST="100.102.238.73" # Tailscale IP of Windows machine
9+
WINDOWS_HOST="${WINDOWS_HOST:-}" # Set via env: export WINDOWS_HOST=<tailscale-ip>
1010

1111
# Step 1: Clone or update repo
1212
echo "[1/7] Setting up repository..."

0 commit comments

Comments
 (0)