Skip to content

Instantly share code, notes, and snippets.

View hzxie's full-sized avatar

Haozhe Xie hzxie

View GitHub Profile
@hzxie
hzxie / wordpress_to_hugo_cleanup.py
Created June 23, 2026 15:58
Clean up WordPress-exported Markdown for Hugo (strip leftover HTML, fix images / code blocks / LaTeX)
import logging
import re
import sys
UPLOADS_URLS = (
"https://static.infinitescript.com/wordpress/wp-content/uploads",
"https://infinitescript.com/wordpress/wp-content/uploads",
)
with open(sys.argv[1]) as fp:
@hzxie
hzxie / point2voxel.py
Last active June 23, 2026 15:54
Convert Point Cloud to Voxels
import numpy as np
import pandas as pd
from pyntcloud import PyntCloud
import binvox_rw
cloud = PyntCloud.from_file("test/00000.txt",
sep=" ",
header=0,