HSHarshit Sharmainharshitsharma1835.hashnode.dev·3d ago · 4 min readEmmet for HTML: A Beginner’s Guide to Writing Faster MarkupWhat Emmet is ? Emmet is that let you to write HTML and CSS much faster using short abbrevations. Instead of writing HTML like: <div class="container"> <h1>Hello</h1> <p>Welcome to my website.00
MSMohd Sameerinmohd-sameer.hashnode.dev·Aug 31 · 20 min readModern Database Access: Prisma, Drizzle, and ORMs ExplainedWhere Does Application Data Live After a User Closes the App? At first, this may sound like a simple question. But it leads directly to one of the most fundamental concepts in software development: pe00
PTPrem Takawaneinpendingblog.hashnode.dev·Aug 26 · 6 min readUnderstand Basic of GITHi Friends, if you're a little bit curious about software development, you must heard the name Git at least once, and your reading this article means your interested to know the Git, so lets start to 00
AUAhtsham Ul Haqinshani-dev.hashnode.dev·Aug 4 · 14 min readHow LLMs Actually Work: From Tokens to TransformersLLMs Explained: What Actually Happens When You Hit "Send" on ChatGPT You type a question. You hit Enter. A few hundred milliseconds later, words start appearing on your screen — one after another, lik00
FSfaisal Siddiquiinfaisalsiddiqui.hashnode.dev·Jul 27 · 4 min readArrow Functions in JavaScript: A Simpler Way to Write FunctionsArrow functions provide a shorter and cleaner way to write functions in JavaScript. Traditional function: function add(a, b) { return a + b; } Arrow function: const add = (a, b) => a + b; 1. What10
SPShivani Pandeyinshivani0203.hashnode.dev·Jul 19 · 9 min readUnderstanding RAG (Retrieval-Augmented Generation): Why We Need It, How It Works, and Where It Can Fail If you've ever used ChatGPT, Gemini, Claude, or any other Large Language Model (LLM), you've probably noticed something interesting. They can explain complex topics, write code, summarize documents, a00
ASAatish Singhinaatishsinghdev.hashnode.dev·Jul 17 · 4 min readWhy Version Control Exists: The Pendrive Problem1. Why Does Version Control Exists? Version Control, also known as a Version Control System (VCS), is an essential tool in modern software development. It helps developers manage and track changes to 10
NANavneet Adarshinnavneetadarsh.hashnode.dev·Jul 16 · 5 min readWhy Do We need RAGLimitations of Using an LLM without External Knowledge Cannot access real time data after training and for that it needs to be train on data and it takes too much costs if you train your LLM two time10
AAdityaingenerative-aii.hashnode.dev·Jul 10 · 11 min readIntroduction to GenAi What is AI ? Artificial Intelligence (AI) is the ability of a computer or machine to mimic human intelligence and perform tasks that typically require human thinking. How it works - Collect data. Le00
KSKanishka Shashiinhtml-dev09.hashnode.dev·Jul 10 · 11 min readKafka Explained Like You're 5: Events, Partitions, and Consumer GroupsIntroduction How does a large application process millions of events every day? Imagine a food delivery app during dinner time. Thousands of customers are placing orders, restaurants are accepting the21C