My favorite Python books
1. Fluent Python (2nd edition)
1. Fluent Python (2nd edition)
For my projects I use this pre-commit template. In the past I’ve also integrated pylint and mypy, but these make committing slow for big projects so I’ve kep...
Python has some great free and open-source static code analysis tools. I recommend integrating them into you Continuous Integration (CI) pipelines so they ru...
Maybe you have developed an application using python3.9 and you claim it works with >= python3.7. But have you tested it?
When I needed to write a SELinux policy for a web application running on httpd for CentOS 7, I was surprised by the lack of documentation. Despite SELinux be...