spent some time last night putting my twitter archive online, because I think the site could evaporate, and a lot of my process of making is tied up there. the gist: take any tweet of mine, replace the twitter . com with twitter.joeycastillo.com and you get the archived version.
@joeycastillo What software did you use for this? I've got my archive downloaded and might want to do the same.
@unwiredben I use a tweaked-by-hand version of Tim Hutton's twitter-archive-parser; I can share the code in a gist if it helps. Essentially just dumping each tweet's markdown to a folder structure that matches twitter's — {username}/status/{id} — and then generating the site with Hugo. https://github.com/timhutton/twitter-archive-parser
GitHub - timhutton/twitter-archive-parser: Python code to parse a Twitter archive and output in various ways

Python code to parse a Twitter archive and output in various ways - timhutton/twitter-archive-parser

GitHub
@joeycastillo Thanks for all the pointers. I'll give it a try once I have a free evening.
@unwiredben Here's a gist with the script I'm using. Minimal changes, mostly just some extra processing to tweets_markdown before generating the main file. https://gist.github.com/joeycastillo/02f417a955164f42cfa082b4eef918bb
Twitter Archive Parser, tweaked to generate a page for every tweet

Twitter Archive Parser, tweaked to generate a page for every tweet - parser.py

Gist