This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Conrad Ludgate
conrad.cafe
did:plc:nuxsfmcfucgh4jrnfdrkycf2
When working with async, you often need to call a function that would block the runtime. Turns out not all blocking functions are the same
Tokio defines two kinds of blocking functions: IO bound and CPU bound.
A close read of the tokio docs tells you to avoid CPU bound tasks in spawn_blocking
2025-08-27T05:47:07.004Z