Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Template Engines in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
IDE for Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Visual Studio Code
-
The rust-analyzer extension seems to be a good option.
-
Rust extenstion (rust-lang.rust) is another posssible extension for Rust but does not work as well as rust-analyzer .
IntelliJ …
Modules in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips on RustPython
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://github.com/RustPython/RustPython
https://rustpython.github.io/pages/regression-tests-results.html
Speed up Python Using Native Code
Tips and Traps¶
- It is never a good idea to do pre-mature optimization. Always profile (please refer to Profile Performance of Python Applications and Python Profiler for JupyterLab Notebooks) your code before you optimize it. If you do decide to optimize you Python code, there are multiple approaches. First, think about whether you can improve your algorithm. Please refer to Python Performance Tips