76 followers
Graduate Software Engineer, currently learning something new, giving back to the tech community, and curating content that improves @mycodinghabits one challenge at a time.
Subscribe to my newsletter and never miss my upcoming articles
In tech, there are a lot of terms/technical jargon that are thrown around when explaining concepts or communicating between teams. For my AWS Amplify hackathon entry hosted by Hashnode, I built a web application that host a variety of technical terms...
This is a beginner-friendly guide on how to improve your coding style when programming. Writing code becomes very different when you do it with a team, your tech lead might have valid opinions to why you should write your code a certain way, your com...
Happy new year 🥳 ! Starting the new year with a list of things we should leave out of 2021 please? Thank you. 1. Technical people have a certain look 🥴? The Technical industry has one of the lowest bar to entry, which means now more than ever we h...
1. Test it out How does the software currently work? Especially around the area where you would like to fix or add to. It helps to get an idea of how it works or how its meant to work before diving in. 2. Adding or Removing Code? Try and understand ...
I just recently started my graduate role 🥳 at Ampersand UK and it's been amazing, (PS. That is why I have been MIA from blogging) however, prior to that I was involved in a few extracurricular activities before starting my job. Today I want to talk...
The Module Pattern This pattern is used to isolate code from the Global scope. The code inside the isolated container can only be accessed if it is revealed. In ES5 writing the module pattern used something called an IIFE (Immediately Invoked Funct...