chore(artifacts): keep throwaway expansion helpers in scripts/tier2/artifacts/ (per Tier 2 convention)

This commit is contained in:
ed
2026-07-03 00:05:08 -04:00
parent 465433e067
commit 8ef66e0287
7 changed files with 251 additions and 0 deletions
@@ -0,0 +1,9 @@
#!/usr/bin/env python3
from pathlib import Path
meta = Path("conductor/directives/defer_not_catch_for_native_crashes/meta.md")
data = meta.read_bytes()
# Print bytes around position 110-130
print("Bytes 110-130:", data[110:130])
print("As string (utf-8):", data[110:130].decode("utf-8", errors="replace"))
print("Length:", len(data))
print("Char at byte 122:", hex(data[122]) if len(data) > 122 else "N/A")