Private
Public Access
chore(artifacts): keep throwaway expansion helpers in scripts/tier2/artifacts/ (per Tier 2 convention)
This commit is contained in:
@@ -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")
|
||||
Reference in New Issue
Block a user