CodeTips#11: useEffect the right way
Recently, I've been delving into the basics of front-end development with React, one observation I've made is that many people in the front-end world usually retrieve their data with useEffect.…
Understanding Front End Under the Hood
In web development, we typically have two main goals: displaying the desired content to users and enabling them to interact with it by modifying the data they see. However, dealing…
JavaScript Under the Hood #2: Sub-classes
Keeping the momentum from my last article, this article aims to explain how sub-classes work in JavaScript. Sub-classes are what make inheritance possible, which is one of the core aspects…
JavaScript Under the Hood #1: Classes
If you're a programmer coming to JavaScript from other languages, you may have heard that JavaScript has "fake" classes. In this article, we'll explore how classes work under the hood…
Configuring Language Server Protocol in Neovim
I’ve seen a lot of people with trouble trying to configure their LSP and autocompletion settings in neovim, so I decided to make this guide to try to help anyone…