33 followers
Welcome to my blog! I write about new technical and non-technical concepts. My articles are beginner-friendly and easy to understand. Stay tuned! 😄
Subscribe to my newsletter and never miss my upcoming articles
I officially hit the 1-year mark on 15th February 2022! How it all began I remember all the uncertainties that came with 2020. Being fresh out of the university at the time, I had a plan. A plan not to be idle, a plan to have an alternative income s...
When any year comes to a close, we’re filled with a level of excitement that only seems to crop up at this time of year. Reflecting on your year is to look back, note down the highs and lows, the things you liked, moments you experienced, and the les...
Ever sat utterly blank in front of your computer, not able to put down anything? This situation could go on for hours, days, weeks, months, maybe even years 😑. When writers find themselves in such a place, self-doubt creeps in, and they’ll probably ...
Conditional statements tell a program to evaluate when certain conditions are met. A specific code evaluates if the set condition is met and if not, the program will continue to move down to evaluate other codes. Conditional statements are part of ev...
Data is a collection of distinct information and to store this data, one would require a database. This article is an introduction to MongoDB and to fully understand it, you should have a general knowledge of databases. A database is an organized col...
In any Programming language, whenever a variable or object is created, it is stored in a particular CPU/memory address and when we output the data, it pulls it from that address. In this article, I will explain what pointers are, its importance, how ...