Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Good Webassembly Tools
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
wizer
wizer Don't wait for your Wasm module to initialize itself, pre-initialize it! Wizer instantiates your WebAssembly module, executes its initialization function, and then snapshots the initialized state out into a …
Expose Local Service to Public
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
ngrok
TunnelTo
localtunnel
frp
frp is a fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet.
Reverse SSH Tunnel
Workflow Managing Tools
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

- Apache Airflow is the recommended tool for managing workflows current! A big advantage of Airflow over other workflow managing tools (e.g., UC4) is that the workflow is expressed in (simple …
Constraints on Types in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Ways to Make Sure that a Type in Rust Satisfy Certain Conditions
-
type bounds using the
whereclause -
disable users from constructing instances of a struct and provide initialized instances (with …