The Clean Code Book for Javascript Developers: A Quick Summary
๐งผ โClean Codeโ written by Robert Martin is a book that explains how to write readable code. This post summarizes the main concepts of the book while showing examples using JavaScript.
Vite is too fast!
โก๏ธ Vite is a build tool created by Evan You. Behind the scenes, it uses ESBuild which makes it super fast. Learn more about it.
Why software engineers choose Linux over Windows for programming
๐ค A few reasons why you should consider Linux for your next workstation.
10 CSS Tricks to Improve Your Next Coding Project (Cheatsheet)
๐ A list of fantastic useful CSS tricks. Check it out.
You Have to Know Closures to be a (Good) React Developer
๐คฏ Nice explanation about JavaScript closures and why they matter in React. Closures can cause a lot of confusion if you don't understand them right.
Understanding JavaScript decorators
๐ง Decorator is a powerful tool that can keep your code DRY. Use it with caution though, as it can make your code feels like a black magic.
Low-Code Tutorial - Build 3 Financial Apps
๐ฐ Ania did it again and released a new free course on YouTube. This new course will teach you how to build applications with low-code platforms.
Migrating Facebook to MySQL 8.0
๐ค Migrating your database is never easy, let alone when you are doing it at Facebook's scale. The engineers of Facebook share some insights into upgrading their MySQL clusters.
Project-Based Learning Approach
๐๏ธโโ๏ธ This post will help you learn web development by doing. This is one of the most effective approaches to learn new skills.
Introducing a URL friendly unique identifier
๐ฅ Nano ID is a technique for generating IDs for your objects that are shorter than the common UUID solution. Learn all about it.