BBBibek Bhagatinbibekbhagat.hashnode.devI built a privacy-first JSON formatter that never uploads your dataThe Problem I Was Tired Of Let me paint you a picture that I'm sure many of you have experienced. You're debugging a production API response at 11 PM. The JSON is minified, completely unreadable. You 1d ago·6 min read
ASAbdul Samadinabdulsamad30.hashnode.devJavaScript Variables and Data Types: A Beginner's Complete GuideIf you've ever wondered how websites remember your name, keep track of items in your shopping cart, or save your game progress, the answer is variables. They're one of the most fundamental concepts in2d ago·7 min read
ASAbdul Samadinabdulsamad30.hashnode.devUnderstanding Arrays in JavaScript: A Beginner's GuideIf you've ever made a shopping list, you already understand the basic idea behind arrays. Just like you wouldn't write each grocery item on a separate piece of paper, programmers use arrays to store r2d ago·5 min read
ASAbdul Samadinabdulsamad30.hashnode.devJavaScript Operators: The Basics You Need to KnowIf you've written any JavaScript, you've already used operators maybe without even realizing it. Every time you add two numbers, check if a value is true, or update a variable, you're using operators.2d ago·6 min read
AIAlfredo Izquierdoincontextforge.hashnode.devClaude Is Brilliant. But Working With Amnesia Gets Old.If you use Claude every day like I do, you already know this feeling. You open a new session, start typing, and then you pause — because Claude has no idea what you're talking about. Your project, you3d ago·5 min read
NANafisa Alamincodengocool.hashnode.devWhy Shallow Copies Fail on Nested DataWhen working with nested data structures—lists of dictionaries, dictionaries of lists, trees of mutable objects—a shallow copy does not replicate state. It replicates only the top-level container. The4d ago·5 min read
ASAbdul Samadinabdulsamad30.hashnode.devUnderstanding JavaScript Promises & its methodsUnderstanding JavaScript Promises If you've been working with JavaScript for a while, you've probably face situations where you need to wait for something fetching data from an API, reading a file, or5d ago·13 min read
AAAsanka Akash Sovisinblog.asankasovis.comHow to do Better LoggingWhen you're working on Embedded firmware or low level development, it's important to have a proper logging system in place. Logging helps with debugging, tracking values and monitoring the system for Feb 27·3 min read
NANafisa Alamincodengocool.hashnode.devAssignment vs Copy in Python — The Bug That Looks InnocentMany production bugs don’t come from complex algorithms. They come from misunderstanding how variables work. Python’s behavior around assignment is simple — but not intuitive. Variables in Python are Feb 25·2 min read
ACAndré Cirilloinandreecirillo.hashnode.devChalleges - JSON Processing - C#⚙️ The Parsing Challenge Receive a JSON containing names and scores as strings. Clean the data and return only valid users (score between 0 and 100). [ {"name": " Alice ", "score": "295"}, {"naFeb 25·6 min read