True Burrowing -------------- Sun Oct 2 22:11:55 EDT 2022 This code used to live in the alexkarle.com web repo because it was easy and I want to pull a lot of www content into the gopherhole. I decided today to take the somewhat drastic action of not only removing the content from web and putting it in its own repo but using `git filter-repo` to scrub it from alexkarle.com. Why? Well, I posted the repo on GitHub, and a friend immediately noticed it. I've been pretty transparent with work unhappiness / interviewing, and GitHub is where I do my professional work. The last thing I want is an awkward conversation with my manager over "why am I interviewing and posting about it on a blog". To be fair, I probably shouldn't be. But I did, and it was there. So I scrubbed it. For future reference, the following easily made the gopher/ directory its own repo: $ git filter-branch --subdirectory-filter gopher And in another clone, the following scrubbed it from web: $ git filter-repo --invert-paths --path gopher So here we are. Burrowed at last. But without CI! When I hit `git push` this won't go live yet... time to hook the piping up!