Marcio Flavio

  • CodeTips#11: useEffect the right way

    · 6 min read · by Marcio Flavio

    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

    · 10 min read · by Marcio Flavio

    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

    · 5 min read · by Marcio Flavio

    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

    · 4 min read · by Marcio Flavio

    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

    · 12 min read · by Marcio Flavio

    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…