https://css-irl.info/creating-static-svgs-from-geojson/

Creating Static SVGs from GeoJSON

Recently I’ve been working with map data to create interactive visualisations. When working with maps it’s common to receive data as GeoJSON, a JSON format for encoding geographic features, which specifies the type of geometry and co-ordinates for the features we want to display on a map. Javascript mapping libraries such as Mapbox GL are designed to consume … Read more

https://macarthur.me/posts/long-tasks/

There are a lot of ways to break up long tasks in JavaScript.

There are a lot of ways to break up long tasks in JavaScript. It’s very common to intentionally break up long, expensive tasks over multiple ticks of the event loop. But there are sure are a lot of approaches to choose from. Let’s explore them. Alex MacArthur   / Feb 3, 2025 It’s not hard … Read more