Computational Analysis of 51,407 Yoruba News Articles: A Technical WindowBuilding NLP pipelines for indigenous African languages and uncovering hidden patterns in Nigerian mediaAug 5, 2025·15 min read·315
Getting Started with Optical Character Recognition (OCR) using TesseractOCR and JavaSep 5, 2023·3 min read·59
Building a REST Blog API with Node, Express and MongoDBIn this tutorial, we will build a Blogging API that allows users to create, read, update, and delete blog posts, as well as add comments and organize their posts with categories and tags. We will use Express, a popular web framework for Node.js, and ...Jan 8, 2023·16 min read·125
Extracting Names from a Webpage using JSoup and Apache OpenNLP in JavaIn this article, we will look at how to extract names from a webpage using the JSoup library and Apache OpenNLP Name Finder API in Java. JSoup is a Java library for parsing HTML and XML documents, while Apache OpenNLP is a machine learning library fo...Dec 18, 2022·4 min read·476
Django: Creating a custom 404 Error PageIntroduction The 404 error is shown when the user tries to navigate to a URL that doesn't exist. By default, Django returns a page when this error is raised. However, we can set a custom page to be displayed in a few steps. Creating a Django project...Jul 11, 2022·3 min read·207
Letter in a bottle: 2022 goalsHello Zainab! By the time you read this again, it'll probably be December 2022 and you'll be ready to ring in another new year. I kind of wonder if it eventually gets boring. Year after year, celebrating another rotation around the Sun. I believe thi...Jan 1, 2022·1 min read·61
If... Else statements in PythonWhen writing your Python program, you may want a particular block of code to run only when a condition is met. If statements help you with this. If Statement: This tells Python to carry out an action if a condition is met. An if statement is written ...Sep 23, 2021·2 min read·94
Data Types In PythonVariables can store data of different types. As a beginner, it is important to know these data types as they are very important in programming. Therefore, this article will teach you the different data types. In Python, data types can be grouped into...Sep 20, 2021·3 min read·88