This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gtr ─ Git worktree helper | |
# | |
# Examples | |
# -------- | |
# gtr create feature0 # add ~/code/worktrees/feature0 (branch claude/feature0) | |
# gtr create feat1 feat2 # add two worktrees at once | |
# gtr rm feature0 # remove the worktree directory | |
# gtr cd feature0 # jump into the worktree directory | |
# gtr claude feature0 # run `claude` while inside that worktree | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This simple script will filter out STLs which will not properly load | |
# with trimesh as a watertight mesh, and save them as space efficient ply files. | |
import os | |
import sys | |
import glob | |
import trimesh | |
if __name__ == '__main__': | |
path = sys.argv[1] |