feat: init project with pages and index

This commit is contained in:
2026-02-15 22:50:30 +08:00
commit f407288701
79 changed files with 25642 additions and 0 deletions

5
pages/_b64write.py Normal file
View File

@@ -0,0 +1,5 @@
import pathlib,base64,sys
p=pathlib.Path(sys.argv[1])
d=base64.b64decode(sys.argv[2])
p.write_text(d.decode(chr(117)+chr(116)+chr(102)+chr(45)+chr(56)),encoding=chr(117)+chr(116)+chr(102)+chr(45)+chr(56))
print(p.name,p.stat().st_size)