Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Trait Bound in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
There has to be a way to bundle up those type declarations. Was it not possible to make driver a trait that contains all of the complicated type declarations?
- Avoid using …
RMarkdown Equivalent in Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Jupyter/Lab vs RMarkdown
RMarkdown Equivalent in Python
Both CodeBraid and jupyter-book (preferred) are good alternatives to RMarkdown.
CodeBraid
jupyter-book
Pweave
References
Writing an Interactive Book over the Threat Hunter Playbook …
Markdown Tools Written in Rust
Useful Rust Crates
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://lib.rs/
https://blessed.rs/crates
https://crates.io/crates?sort=downloads
Summary of Collections in Rust
Dev Tools for Rust
Error Handling in Rust
Useful Rust Crates for …
Serialization and Deserialization in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
serde Based Serialization and Deserialization
serde
serde is a generic serialization/deserialization framework .
serde_with
serde_with provides custom de/serialization helpers to use in combination with serde's with-annotation and with …