Jonathan Ifeanyijonaz.hashnode.dev·Oct 26, 2023Best Practices for Writing Effective Unit Tests in PythonTesting is a fundamental aspect of software development. Understanding the best practices for writing unit tests is crucial for any programmer, whether you're just starting or have a bit of coding experience under your belt. This Article is tailored ...5 likesUnitTest
Rob Mitchellrlmitchell.hashnode.dev·Nov 23, 2022DIY Infrastructure Monitoring Part 2My current organization uses Let's Encrypt certificates that expire at 90 days old. Obviously, we need to know ahead of time when any one of them is going to expire. Rather than maintaining yet another spreadsheet wouldn't it be nice to be notified...56 readsPython
Rob Mitchellrlmitchell.hashnode.dev·Nov 20, 2022DIY Infrastructure Monitoring Part 1I've spent many years in the IT/DevOps world and one thing I've learned is when you have a production issue it is of paramount importance to find the cause of the issue as fast as possible. A lot of organizations subscribe to paid monitoring service...Python
Odebode Opeyemisurahj.hashnode.dev·Jul 20, 2022Unit Testing in Python - Unit testing frameworkWhat is Testing? Testing is an important phase in software development not just in python. Unit testing is a smaller test, it checks a single component that it is working in right way or not. Using the unit test, we can separate what necessities to b...255 readsPython