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 …
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
where
clause -
disable users from constructing instances of a struct and provide initialized instances (with …
The Result Enum in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Garbage Collection for Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
crossbeam-epoch
The
crossbeam-epoch crate provides epoch-based garbage collection for building concurrent data structures.
bumpalo
bumpalo is a fast bump allocation arena for Rust. Bump allocation is a fast, but limited approach …