This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Joel Drapper 🇬🇧🇺🇦
joel.drapper.me
did:plc:uqrryaveb7djvaatfljbdhcb
We’re using a couple of interesting data structures in Plume to avoid allocations. For example, our peek buffer needs to store a list of tokens and their locations (name, start_location, end_location), e.g. [:FOO, 1, 2].
We could store this as an array of arrays:
[
[:FOO, 1, 2],
[:BAR, 3, 4]
]
2025-01-21T16:07:22.332Z