Misc¶
https://docs.python-guide.org/writing/gotchas/
https://stackoverflow.com/questions/101268/hidden-features-of-python
- The
int
type in Python 3 is unbounded, which means that there is no limit on the range of integer numbers that anint
can represent. However, there are still various integer related limits in Python 3 due to the interpreter's word size (sys.maxsize
Ides With AI Coding Assists
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Visual Studio Code
There are many extensions for VSCode offering AI coding assists. Below are some prominent ones.
Zed
Google Firebase Studio (Formally Known as IDX)
Google Firebase …
Tips on Google Firebase Studio
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps
- Search for dev.nix on GitHub to see others' configurations for Firebase Studio.
References
References
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 .
RustRover …
Tips on the Zed IDE
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps
- Zed does not support the web version yet, however, it does support remote develop .
Install via Flatpak
https://flathub.org/apps/dev.zed.Zed
flatpak install flathub dev …
Write Unsafe Code in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Unsafe Rust: How and when (not) to use it
Rust's Unsafe Code Guidelines Reference
Unsafe Code Guidelines https://github.com/rust-lang …