This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Ragnar {Groot Koerkamp}
curiouscoding.nl
did:plc:olhpu3lwhpafue3jjmhat4mj
Nice blogpost on how reading from L1 can be slow, and if you can anticipate the value, it can be better to speculate on it:
value = expected_value;
let real_value = read_from_L1();
if real_value != expected_value {
value = real_value;
}
https://mazzo.li/posts/value-speculation.html
2025-10-15T09:25:16.023Z