1. Latest invention: Reverse Bamboo Staging! Like asparagus, except you blow spent fuel tanks off the top of the stack (helped along by some separatrons) rather than blowing the engines off too:

    Successfully gets me into LKO with a full main tank. Haven’t decided what to do with it yet…

  2. How to query for all highways in Overpass API (demo: overpass-turbo.eu/s/3sB):

    <osm-script output="json">
      <query type="way" into="highways">
        <bbox-query {{bbox}}/>
        <has-kv k="highway" />
      </query>
     
      <union>
        <item set="highways"/>
        <recurse from="highways" type="down"/>
      </union>
      
      <print mode="body" order="quadtile"/>
    </osm-script>
    

    This returns all highways without filtering, check out the OSM Highway docs for different possible types of highway, and add a v="" attribute to the has-kv element to filter.

  3. Stuart Langridge: @adactio ooh, that's cool. Why not just use pingback? I assume the answer is "XML-RPC, man, why", for which I apologise :)

    @sil @adactio fwiw, pingback was extremely valuable prior art for webmention, the first indieweb comment implementation used pingbacks, and some indieweb sites (my own included) support comments using pingback as the notification transport, often using webmention.io as a proxy