I switched for speed and stayed for everything else.
Every video editor has a list of tasks they’d happily outsource to someone else. Exporting isn’t one of them anymore because modern laptops are already plenty fast. The real-time sinks are the boring ...
Welcome to the Data Structures and Algorithms (DSA) repository! This repository is dedicated to providing a collection of DSA problems and their solutions in a clear and well-documented format. For me ...
JSON is easy for humans to read and write... in theory. In practice JSON gives us plenty of opportunities to make mistakes without even realizing it. Hjson is a syntax extension to JSON. It's NOT a ...
Built two visualizers with vanilla JavaScript to see how sorting and pathfinding actually work. Sorting Visualizer: → Bubble, Quick, Merge sort with live animations → Two-pointer movement visible in ...
They sit on top of JavaScript. Look at the tools you use. - useMemo and computed use caching and closures. - useCallback preserves function references. - useEffect and watch use the Event Loop.