Thoughts
I'm experimenting with pagination. Right now I'm grouping Thoughts by meteorological season. Each page is still absurdly long (good), while
dropping the amount of text transferred to ~1/10 (good). The (bad) is that I now have a row of buttons and multiple pages. Which adds a significant amount of mental complexity.
I'm at 1,842 Thoughts, broken down as (per-season)
```py
[('Fall 2021', 156), ('Summer 2021', 375), ('Spring 2021', 317), ('Winter 2020', 410), ('Fall 2020', 584)]
```
I think the 300-500 thoughts/page range is about where I want to be, but it looks like I'm still seeing flashes of unformatted content due to JS markdown. Which I was hoping this would fix. I really need to move to server-side rendering.
The other bad, of course, is that when we roll over to winter in a month, the front page will drop to 0 posts at some point. Which is not exactly the aesthetic that I'm going for.
Also added a permalink button so you can find thoughts buried in the archives, but I'm not super happy with it. It will probably change.