-
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 …
Sleek is a CLI tool for formatting SQL. It helps you maintain a consistent style across your SQL code, enhancing readability and productivity.
The command sqlfluff fix can be used to fix issues (including formatting issues) in SQL code.
It can be used as a tool to format SQL code.
However,
sqlfluff fix
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!