software
tags-
Adventures in databases 01: so it begins
Jul 15, 20265 min
Years ago, back when I was in undergrad, I wanted to write a simple command line application. This application needed to have persistent data, and for that I would need some sort of database. The specifics of that application aren't important, just know I wanted the database to:
- Start up when the program started up and shut down when the program shut down
- Startup should be as fast as possible, shutdown could take however long…
-
Adding Interactivity
Dec 24, 20223 min
Zola is wonderful. It builds quickly, it's extremely configurable, but it is (by design) not well suited for interactive elements or complex
JavaScript. I hadn't thought I wanted that until I saw some on Amos's site. He ended up usingiframesto manage that integration, which is a perfectly acceptable solution. But it did make me wonder: can we accomplish the same result without all of that nasty uglyHTML? Can we just write some cleanJSand call it a day?Let's find out…