-
vulture finds unused code in Python programs. It is useful for cleaning up and finding errors in large code bases.
Testing
Typing Checker
Lint Python Scripts
ruff
ruff is an extremely fast Python linter, written in Rust. It is preferred to other …
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
cargo init
cargo new project_name
cargo new --lib project_name
Install a Rust crate from GitHub (the default branch).
cargo install --git https://github …Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
pip3 install -U black[jupter]
The following code formats Python files and Jupyter/Lab Notebooks under the current directory.
black ./
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Locate the right disk to operate on.
A few commands might help you.
For example,
you can use the command ls /dev/sd* to list all hard drives
and the command …
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
tab_spaces = 4
max_width = 90
chain_width = 70
newline_style = "unix"
use_field_init_shorthand = true
use_small_heuristics = "Max"
https://github.com/rust-lang/rustfmt
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Install VirtualBox.
Create a Ubuntu virtual machine.
Install extension package.
enable USB support
select the flash drive you want to format to connect to the VM.
use linux commands to format …