made some pretty substantial edits to my previous post, specifically the parts on why i found gerard's post misleading, and being more clear about the subject of that post's (not david gerard) financial stake in ai
-
-
okay! i'm all caught up. thanks for waiting through my absence. i've been very low energy yet busy as of late. i have surgery later this week so i'll try to queue up some posts for the weekend
-
lol that's so broken i need to fix it
-
A brief overview of three of my site's dependencies
They say “great artists steal”, and I wanted to showcase how I’ve solved some problems I’ve run into on my site by showing some niche dependencies I’ve picked up. Note that these are mostly files that have originated from other sources that I’ve copied in by hand as opposed to imported.
HAST util from Lezer
I will go more into depth on this on a future article on how syntax highlighting on my blog works, but to summarize: I use a tool called Lezer to handle syntax highlighting. This library is part of the pipeline my blog uses for adding that syntax highlighting. This was written by Joel Gustafson and mentioned in an incredible blog post going into some of the history around syntax highlighting. I copied it into my site basically wholesale, and you can find it in my codebase here (converted to javascript from typescript for some reason). I generally prefer copying code in over importing it, because it helps me understand what the code does, and it allows me to tune the code to better fit the needs of my s…