Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Extensions
Other Potentially Useful Extensions
References
https://www.davideaversa.it/blog/kotlin-development-in-vscode/
https …
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://www.davideaversa.it/blog/kotlin-development-in-vscode/
https …
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
It is suggested that you leverage CICD tools (e.g., GitHub Actions) instead of Git Hooks which happens locally. However, Git hooks can be useful for simple and fast local code …
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Optional Pylint checkers in the extensions module
Show ERROR messages only.
pylint -E some_script.py
Show ERROR and WARNING messages only.
pylint --disable=R,C some_script …Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Run pytest in the root directory of your project to run all test suites.
You can run test cases in a specific test file (e.g., test_file.py)
using the command …
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
It is suggested that you put the configuration into a file named .flake8
in the root directory of your project.
When flake8 supports pyproject.toml later,
it is best to …
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
| Data Type | C | C++ | Rust | Java | Python | numpy | pyarrow | Spark SQL | SQL |
|---|---|---|---|---|---|---|---|---|---|
| 8 bit integer | short (16-bit) | int8_t | i8 | short (16-bit) | int (arbitrary precision) | int8 | TinyInt … |