Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Commonly Used File Formats for Configuration
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
-
JSON is more commonly used for application data and configurations
which are not intended to be read by human directly. -
TOML and YAML are more popular for application configurations which are …
Python Modules for Visualization
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
The website The Python Graph Gallery displays hundreds of charts, always providing the reproducible python code! It aims to showcase the awesome dataviz possibilities of python and to help you benefit …
Hands on GroupBy of Polars DataFrame in Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips on Refactoring Rust Code
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://rust-analyzer.github.io/manual.html#structural-search-and-replace
cargo clippy fix
General Approach for Auto Refactoring
- use
cargo build
orcargo clippy
to generate error msgs for a specific kind of issue …