How to Prevent Your Python Script From Getting Culture Shock in Different OS’s

After hours of focusing, you finally finish writing a Python script for your project. It works perfectly on your computer and you pushed the changes to your favorite source control […]
The CLI’s Essential ‘Verbose’ Option

For those creating their own CLI tool If you have played around with any command line interface tools, such as Particle CLI or Git UI, you’ll notice that they oftentimes […]
How to manage WebHooks through Code

While simple at first, webhooks can become a hassle if you have products that use a good number of them and you have to keep them up to date. Here […]
First Experiences with Python Virtual Environments

**Virtual Environment – “A virtual environment is a Python environment such that the Python interpreter, libraries and scripts installed into it are isolated from those installed in other virtual environments, […]