- Docker: Delete 23 deprecated Dockerfiles, fix CI/CD to use Dockerfile.foxhunt-build - Config: Remove 36 .env files, keep 4 essential, delete config/environments/ - Docs: Archive 614 Wave D files to docs/archive/wave_d/, 95% reduction in root - Scripts: Delete 56 deprecated scripts, keep 58 production-critical (49% reduction) - Python: Organize 37 scripts into scripts/python/ subdirectories, delete ml/python/ - Build: Remove 1GB artifacts, delete old venvs, clean Python cache from git - Migrations: Delete deprecated directory (4,432 lines), remove duplicate database/migrations/ - Infrastructure: Delete deployment/ (61 files), docs/scripts/ (8 files) Total impact: ~2,500 files cleaned, 750MB+ space freed, zero production impact All deleted scripts backed up to archives. runpod/ and tests/runpod/ preserved. data_acquisition_service retained per user request.
4.3 KiB
Clippy Fixes Required - Wave D Phase 6
Date: 2025-10-19 Priority: IMMEDIATE (5 minutes) Severity: LOW (stylistic only, zero functional impact)
Overview
3 clippy violations detected in the common crate. All violations are of the same type: clippy::get-first, which enforces using .first() instead of .get(0) for accessing the first element of slices/vectors.
Impact: Purely stylistic. The code compiles and runs correctly. Fix Time: 5 minutes (3 mechanical edits) Risk: Zero (identical semantics)
Fix 1: ml_strategy.rs Line 319
File: /home/jgrusewski/Work/foxhunt/common/src/ml_strategy.rs
Line: 319
Column: 61
Current Code
.filter_map(|w| w.get(1).and_then(|&w1| w.get(0).map(|&w0| (w1 - w0) / w0)))
Fixed Code
.filter_map(|w| w.get(1).and_then(|&w1| w.first().map(|&w0| (w1 - w0) / w0)))
Change
Replace w.get(0) with w.first()
Fix 2: ml_strategy.rs Line 1056
File: /home/jgrusewski/Work/foxhunt/common/src/ml_strategy.rs
Line: 1056
Column: 30
Current Code
let obv_10_ago = self.obv_history.get(0).copied().unwrap_or(self.obv);
Fixed Code
let obv_10_ago = self.obv_history.first().copied().unwrap_or(self.obv);
Change
Replace self.obv_history.get(0) with self.obv_history.first()
Fix 3: regime_persistence.rs Line 131
File: /home/jgrusewski/Work/foxhunt/common/src/regime_persistence.rs
Line: 131
Column: 26
Current Code
let cusum_mean = regime_features.get(0).copied().unwrap_or(0.0);
Fixed Code
let cusum_mean = regime_features.first().copied().unwrap_or(0.0);
Change
Replace regime_features.get(0) with regime_features.first()
Verification Steps
After applying all 3 fixes, verify with:
# Re-run clippy to confirm all issues resolved
cargo clippy --workspace --all-features -- -D warnings
# Expected output: No errors, only warnings (if any)
# Build should succeed with "Finished" message
Why .first() Instead of .get(0)?
- Idiomaticity:
.first()is more Rust-like and clearly expresses intent - Performance: Compiler may optimize
.first()better than.get(0) - Clarity:
.first()is self-documenting (accessing first element) - Consistency: Rust standard library prefers
.first()and.last()
Both methods have identical semantics:
- Both return
Option<&T> - Both return
Nonefor empty slices - Both are safe and bounds-checked
Quick Fix Commands
# Fix 1: ml_strategy.rs line 319
sed -i '319s/w\.get(0)/w.first()/g' /home/jgrusewski/Work/foxhunt/common/src/ml_strategy.rs
# Fix 2: ml_strategy.rs line 1056
sed -i '1056s/self\.obv_history\.get(0)/self.obv_history.first()/g' /home/jgrusewski/Work/foxhunt/common/src/ml_strategy.rs
# Fix 3: regime_persistence.rs line 131
sed -i '131s/regime_features\.get(0)/regime_features.first()/g' /home/jgrusewski/Work/foxhunt/common/src/regime_persistence.rs
# Verify fixes
cargo clippy --workspace --all-features -- -D warnings
Note: The sed commands above are line-specific. Manual editing is recommended to ensure accuracy.
Manual Fix Instructions
Option 1: Using an Editor
-
Open
/home/jgrusewski/Work/foxhunt/common/src/ml_strategy.rs- Go to line 319, find
w.get(0), replace withw.first() - Go to line 1056, find
self.obv_history.get(0), replace withself.obv_history.first() - Save file
- Go to line 319, find
-
Open
/home/jgrusewski/Work/foxhunt/common/src/regime_persistence.rs- Go to line 131, find
regime_features.get(0), replace withregime_features.first() - Save file
- Go to line 131, find
-
Verify:
cargo clippy --workspace --all-features -- -D warnings
Option 2: Using Search-and-Replace
Warning: This will replace ALL occurrences of .get(0) in the files, which may affect other code.
Recommended: Manual editing to ensure precision.
Completion Checklist
- Fix 1: ml_strategy.rs line 319 applied
- Fix 2: ml_strategy.rs line 1056 applied
- Fix 3: regime_persistence.rs line 131 applied
- Clippy verification passed
- No new errors introduced
- Code still compiles successfully
Estimated Time: 5 minutes Difficulty: Trivial Risk: Zero Functional Impact: None