-
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!
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Thread dump: jstack jvm_pid >
Memory dump: jmap -dump:live,format=b,file=
Heap status: jmap -heap jvm_pid
GC status: jstat …
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Goodbye Print, Hello Debugger! - Nina Zakharenko - Talk
When separate teams/people are developing different components in a big project and unit testing has to be written before …
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
The easiest way to debug a Jupyter notebook is to use the %debug magic command. Whenever you encounter an error or exception, just open a new notebook …