Improving Response Times and Reducing DB ReadsDid you know that a 1-second delay in page load can lead to a 7% decrease in conversions? One of the most important metrics for ensuring that the users of your software are happy with the general service is speed 🏎️. No matter how good your service ...Jan 31, 2024·6 min read
Paying Attention to Details as a DeveloperI recently got the chance to work with some individuals on a project. Most of the open source contributions I've done did not really have a specific set of designs to follow, so each contributor had to hack their way into building something that, in ...Jan 7, 2024·6 min read
A 5-Step Approach to Problem Solving (DSA)When starting to practice the data structures and algorithms you've learned on platforms such as Leetcode, Codewars or Hackerrank, you can go from being pretty excited to pretty down in a matter of few minutes behind a problem. I encountered this a l...Nov 18, 2023·5 min read
Deep Dive into Stacks: A Practical Guide for Software EngineersWhat is a Stack? A stack is a very important data structure that is used to work on data temporarily. Unlike other data structures that are built into a language, a stack is rather a layer added to an existing data structure, such as an array or link...Nov 9, 2023·6 min read