Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips on GitHub Actions
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps
-
You can use
sudo
without password in Linux and macOS when running GitHub Actions. -
GitHub Actions supports manual triggers with workflow_dispatch. Workflow parameters are supported in manually triggers …
Sorting Algorithms in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
- slice::sort
- slice::sort_by
- slice::sort_by_key
- slice::sort_unstable
- slice::sort_unstable_by
- slice::sort_unstable_by_key
GlideSort
GlideSort is a novel stable sorting algorithm that combines the best-case behavior of Timsort-style merge sorts for pre-sorted …
Develop a GUI Application in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
tauri
Please refer to tauri for more discussions.
dioxus
Dioxus is a portable, performant, and ergonomic framework for building cross-platform user interfaces in Rust.
rinf
Rinf is a production-ready framework for …
Tips on the Rust Crate SQLX
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips on nbconvert
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
Converting too many notebooks at the same (multiprocessing) causes
zmq.error.ZMQError: Address already in use
. The simple way to fix this issue is to limit the number of processes converting …