Uncategorized

Introduction to Python Watchdog – Monitoring File Systems and Directories

Monitoring is an essential aspect of software engineering. One of the aspect of monitoring is checking and watching files for changes and modifications. There are several libraries that can be used to monitor files and directory for changes. These include inotify guard watchdog etc In this tutorial we will be exploring watchdog – a simple …

Introduction to Python Watchdog – Monitoring File Systems and Directories Read More »

Exploring OpenAI’s ChatGPT – Building Apps in Multi-Languages with ChatGPT

ChatGPT is an amazing AI service created by OpenAI. It has ushered us into the next generation of search engines that is powered by LLM (Large Language Models) and NLP systems. Let us explore this awesome service. First of all you will need to create an account (email and phonenumber as well as the basic …

Exploring OpenAI’s ChatGPT – Building Apps in Multi-Languages with ChatGPT Read More »

How to Fix Gunicorn Connection In Use (‘127.0.0.1’, 8000) Error

In deploying web applications on a server specifically flask application, we use gunicorn, a wsgi software or server to run our flask app. However you may face certain issues and one of the commonest issue is the connection in use error. This occurs when there is something listening on the port that gunicorn is bound …

How to Fix Gunicorn Connection In Use (‘127.0.0.1’, 8000) Error Read More »

How to Split Dataset into Training and Testing Dataset For Machine Learning

One of the most important activities when building models is the ability to test and evaluate your model and have something to compare with that shows that your model actually worked. In order to do this you will need to have enough data to train and build a working model and also to test the …

How to Split Dataset into Training and Testing Dataset For Machine Learning Read More »