Olamide Ayeni

Building A Message Board App With Django

Introduction In this article, we shall use a database for the first time to build a basic Message Board App…

6 days ago

Building A Two Paged Web Application Using Django

Introduction In this article, we will build a pages app that has a homepage and an about page. We will…

2 weeks ago

Creating Your First App In Django

When you say you want to use Django, it means you want to build a web application. There are two…

3 weeks ago

Creating Your First Project In Django?

Introduction Django is a high level Python framework that encourages rapid development and clean, pragmatic designs. It is a free…

4 weeks ago

Django Setup For Windows

Django Setup To work with Django, we have to install Django first. Now when you say you want to install…

4 weeks ago

Why Choose Django When There Are Other Frameworks For Python?

Why choose Django when you have other frameworks for Python? Django, Django, Django. When it comes to python and its…

1 month ago

Meet Django…

Django is a free and open source python based web framework that runs on a web server. It follows the…

1 month ago

Sorting And Filtering Data Using The WHERE And SELECT DISTINCT Clause in MYSQL.

Introduction There are several clauses available in sequel for sorting and filtering data. In the last article, we discussed about…

1 month ago

Sorting And Filtering Data Using The ORDER BY Clause in MySQL.

The ORDER BY Clause? There are several clauses available in sequel for sorting and filtering data in a table. One…

2 months ago

SQL Operators: The Comparison Operators And The Concepts Behind it.

As a Data Engineer, you will always need to categorize or compare various tables or databases you are told to…

2 months ago

SQL Operators: The Arithmetic Operators And The Concepts Behind It.

What Are SQL Arithmetic Operators? SQL Arithmetic operators are operators that are used for calculating mathematical operations like the sum…

2 months ago

SQL CRUD Operations: Create, Read, Update and Delete.

What is CRUD? CRUD refers to the four basic operations a software application should be able to perform. These four…

2 months ago

The Structured Query Language(Sequel)

Introduction You are now familiar with the basics of databases and how they store and manage data but it is…

2 months ago

Databases and Data: Relational Database, NoSQL Database and so much more

Introduction To Databases A database is a form of electronic storage that holds data. For example, in the banking world,…

2 months ago

Git And GitHub: A Concise Roadmap On How They Both Work

Introduction Git is a version control system designed to help users keep track of changes to files within their projects.…

2 months ago

Creating Your Own GitHub Account: How?

Introduction In this article, you will learn how to set up your own GitHub account. Having a GitHub account ensures…

3 months ago

A Brief Insight Into The World Of A Developer’s Social Network: Git and GitHub.

Introduction So far, we have discussed what version control systems are so we are quite familiar with them. Let's now…

3 months ago

Types of Version Control Systems.

Introduction In the previous article, we learnt what a version control system is, its primary features and its many benefits.…

3 months ago

The Version Control System: A Vital Tool For Developers, It’s Features and Benefits.

Introduction What is version control? Version control also referred to by developers as source control or source code management is…

3 months ago

Testing and Its Importance in the Software Development Life Cycle

Introduction Testing is an essential component in quality assurance and ensures our software applications and websites work as expected. For…

3 months ago

The Connecting Factor Between Artificial Intelligence and Machine Learning

What is Artificial Intelligence? Artificial Intelligence is a broad field of computer science focused on creating systems capable of performing…

3 months ago

Popular Python Packages Used In The Field Of Data Analysis and Data Science

Introduction The last decade has seen an exponential growth in all data analysis and data science areas. In fact, the…

3 months ago

Popular Python Packages: NumPy, Pandas, Matplotlib and more.

Introduction In programming, a package is a directory or folder containing a collection of modules. These modules can be seen…

3 months ago

The Reload() Function

Introduction The reload() function can be used to make dynamic changes within your code with import statements. They are used…

3 months ago

Writing Import Statements

Introduction The import statement is used for accessing modules from different directories. You can with the use of an import…

3 months ago

Namespacing and Scoping in Python

Introduction Another related concept in Python are namespaces and scopes. The official Python documentation defines namespacing as mapping from names…

3 months ago

What is a module in Python?

What is a module? Simply put, a module is a file consisting of Python code. It can define functions, classes…

3 months ago

Method Resolution Order(MRO) in Python.

What is MRO in Python? MRO, an acronym for Method Resolution Order is a concept majorly used in inheritance and…

3 months ago

Python: Classes, Objects, Instances and Attributes?

As a developer, you need to be familiar with the terms associated with the various programming languages. Every Programming language…

4 months ago

The Pillars of Object Oriented Programming

Introduction In the previous article, we covered an introduction to Object Oriented programming as a well as it being one…

4 months ago