Standard Search
About 66 results
https://charlesharri.es/stream/more-cache-busting · 18 Apr 2024
How to cache bust static assets when you're just running a naïve script for website deploys.
https://aslakr.folk.ntnu.no/2024/01/code-eller-preformatted/ · 10 Jan 2024
Hva slipper greiest igjennom, en blokk med code eller preformatted? En code-blokk #!/bin/awk -f BEGIN { printf("Status: 200 OK\n"); printf("Content-type: text/plain\n\n"); for ( key in ENVIRON ) { print key " : " ENVIRON[key]; } } eller preformatted-blokk ...
https://charlesharri.es/stream/no-build-step · 16 Oct 2023
Reconsider whether you need a framework. Reconsider whether you need a CSS pre-processor. Reconsider whether you need dependencies. Reconsider whether you need a build step.
https://dev.leaflet.pub/3mcdmcmy64s23 · 12 Apr 2023 · 🦋 Bluesky
A full body tracking solution I worked on for quite a while.
https://eligundry.com/blog/neovim-lua/ · 21 Feb 2023
Lua is now my best friend for configuring Neovim.
https://charlesharri.es/stream/search · 13 Feb 2023
Adding search to my website was a fun project for the weekend, and has made my own website like 40% more useful to me.
https://charlesharri.es/stream/a-couple-more-words-on-css-nesting · 10 Feb 2023
Yes, I'll use CSS nesting. But I won't be using it nearly as much as I would have five years ago.
https://charlesharri.es/stream/server-sent-events · 12 Nov 2022
Server-sent events make client-side interactivity based on server-side events trivial to implement: no more websocket servers.
https://charlesharri.es/stream/css-nesting · 9 Nov 2022
CSS nesting has been a long time coming, but when it finally arrives, we're not actually going to need it anymore.
https://charlesharri.es/stream/global-variables · 14 Sep 2022
It feels like it goes without saying in 2022, but please declare your JavaScript variables properly.