How to build a multilingual website in Next.jsSince the internet became widely accessible in 1991, it has experienced rapid adoption. Improvements have been made using it in almost every field. Additionally, as technology advances, its advantages become even more obvious and more people are inte...May 9, 2023·5 min read·101
Introduction to React’s Context APIState management is a big part of web apps. It is in fact the bloodline of modern web development. There are several ways to manage state in react but I prefer using the context API. The context API, unlike it counterparts( i won't mention names 😂)...Sep 10, 2020·3 min read·179
Semantic HTML and AccessibilitySemantic HTML and Accessibility It is easy for many developer (myself inclusive) to conclude that our apps can be used by everyone. Most times, that is usually not the case. According to WHO, Globally, at least 2.2 billion people have a vision impa...Aug 1, 2020·5 min read·142
Data structures and Algorithms for NoobsData structures and algorithms are very essential is software development or any other computer science related field. So important, yet so easily misunderstood. If you intend working at a large tech company, you must have the fundamentals of data st...Jul 26, 2020·3 min read·217
How to Upload Files using the MERN stack and Multer.File uploads is an essential part of software development. It has revolutionized the way we work, socialize and learn as humans. From building social media apps, to video streaming apps, to online learning platforms. The list goes on and on. File up...Jul 20, 2020·7 min read·4.2K
Function declaration vs Function definition in JavascriptIntroduction Functions are an essential part of programming. Javascript provides two ways of creating functions: function definition and function declaration. Sadly, both concepts tend to be misunderstood. Understanding both concepts will help you be...Jul 19, 2020·2 min read·149
How to tests for material-ui componentsIf you're reading this article. I assume you already know what material-ui is so i'll leave all the unnecessary details. For this tutorial we'll be writing tests for a material-ui form. DEPENDENCIES: react material-ui enzyme React-16-enzyme-adapte...Jun 4, 2020·300