-
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!
Please refer to Command Line Tools for Mac File System for the macOS version.
List disk information.
df
df /HOME
Format disk partitions.
mkfs.ext4 /dev/sdb3
mkfs.ntfs /dev/sdb3 …Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Note: When work both in Linux and macOS, a painful burden to use command-line is to remember subtle differences between Linux commands and macOS commands. A a matter of fact, GNU …
** Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
viu is a simple terminal image viewer written in Rust. It works perfectly in kitty . In terminals which does not support inline image display protocols, viu will show the image in …
sed -i 's/ //g' file_1 file_2
git diff …