This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
James Munns
jamesmunns.com
did:plc:rqm4qgf6jdmb35mxatuzi6cq
I do wish Rust's num types had one of the following aliases:
* `.min(N)` -> `.at_most(N)`
* `.max(N)` -> `.at_least(N)`
There's a lot of places where you want to ensure that something is non-zero for example, so you'd write:
`value.max(1)`, but I ALWAYS accidentally write `value.min(1)` instead.
2026-01-15T23:04:18.901Z