Lessons from Club Activities
As a senior, I often reflect on my college journey and the regrets I have—like not joining the Electrical Engineering Club earlier and hesitating about Information Security. This motivated me to jo...
As a senior, I often reflect on my college journey and the regrets I have—like not joining the Electrical Engineering Club earlier and hesitating about Information Security. This motivated me to jo...
Hey how’s it going? 👋 I wanted to share a little victory from my recent project where I was following along with a tutorial to clone Apple’s website. You know that feeling when you’re coding along ...
JavaScript’s this is like a chameleon - its identity changes based on its surroundings. Let’s dive into its true nature. The Shape-Shifter // The global wanderer console.log(this); // Window or gl...
A simple image toggle can teach us key JS optimization principles. Let’s break down the refactoring process. Starting Point Here’s a basic implementation most developers might write: function pic...
Science Videos Capacitors are terrible at remembering data. But for this reason we continue doing it - In this episode we discuss about Dynamic RAM, and learn about all the fundamental-leve...
1. What is Webpack? Webpack is a module bundler for JavaScript applications. It processes all types of files (JavaScript, CSS, images, etc.) in a project and bundles them into one or more optimized...
With web access on mobile devices becoming increasingly prevalent, ensuring optimal performance is more critical than ever. Mobile platforms now offer full-featured web browsers, but they often com...
When building modern websites, fonts play a crucial role in how your content is perceived. However, including custom fonts, especially external fonts, can negatively impact performance. This guide ...
This article explores essential design patterns and programming techniques commonly used in STM32F10x firmware development. 1. Robust Clock Stability Check do { HSEStatus = RCC->CR & RC...
Have you ever wondered what happens when you press the reset button on your STM32 board? Let’s embark on a journey through the startup process of the STM32F103VE, breaking down this complex process...