Another of learning how to code
Coding Class Update I usually start my coding class by 9:30 am, but today NEPA had other plans 😅. Instead of letting the delay ruin my day, I decided to use t...
Coding Class Update I usually start my coding class by 9:30 am, but today NEPA had other plans 😅. Instead of letting the delay ruin my day, I decided to use t...
Overview Quick Sort is a widely used, fast, and elegant divide‑and‑conquer sorting algorithm. The basic idea: 1. Pick a pivot element. 2. Partition the array s...
Topics Covered - import and export - Named exports & imports - Default exports & imports - Aliasing - Namespace imports - Combined imports - Dynamic imports -...
The “Left of the Dot” Rule Timothy slumped into a chair at the main worktable, dropping his pen onto a piece of code. He looked exhausted. > “I don't understan...
Hover interactions feel simple—until they quietly break your UI. Recently, while building a data table, each row had an “Actions” column that appears on hover....
Intro There are many articles out there explaining the difference between for...in and for...of. I won't get into that here. Instead, this is a simple article...
Article URL: https://github.com/sarusso/bedtime Comments URL: https://news.ycombinator.com/item?id=46592376 Points: 18 Comments: 3...
Project Overview I am currently testing the stability of CodeChat, a decentralized communication tool built with vanilla JavaScript and PeerJS. Unlike traditio...
Introduction Hello Dev Community 👋 I am currently focused on learning JavaScript, React, and front‑end development. My goal is simple: learn consistently, bui...
This post contains a flashing gif. HTTP requests have taken me pretty far, but I’m starting to run into their limits. How do I tell a client that the server upd...
Overview When I started building small web utilities, I never planned to create a large platform. One small tool turned into several, and today that experiment...
useImperativeHandle allows child components to expose specific methods to their parent components through a ref. This pattern is useful when you need to call fu...