Skip to main content

Posts

2022

Understanding the Power of the const Keyword in C++ Classes
·1363 words·7 mins· 0
The const keyword is used to indicate that something in your program is constant and cannot be modified. Lets us take a look at it.
Creating a Custom List in Python
·1935 words·10 mins· 0
This post explores the usage of custom lists in Python and how these can enhance the developer experience.