NANavneet Adarshinnavneetadarsh.hashnode.dev·2d ago · 5 min readTransformer The B BoxHello readers, Do you really know real meaning of an AI (artificial intelligence) ? If so , then this article is not for you ,but if you don't know ,you need to give a glance . In this article ,I unwr10
SSSarthak Singhinsarthak-singh.hashnode.dev·3d ago · 5 min readChatGPT Is Not a Black Box Anymore: The Journey from Input Tokens to Output ResponsesWhat is an LLM? An LLM or Large Language Model is an AI built on neural networks but instead of bombarding technical jargons let us understand about LLM with an analogy. When somebody asks you "how ar21A
HRHammad Razainarrayflattenj.hashnode.dev·May 10 · 6 min readArray Flatten in JavaScriptIntroduction: Imagine opening a box and finding another box inside it. Then another. And another. That is exactly what nested arrays look like in JavaScript. const data = [1, [2, [3, [4]]]]; At first 00
HRHammad Razainjavascriptmodulesimport.hashnode.dev·May 9 · 7 min readJavaScript Modules: Import and Export ExplainedDescription: Learn JavaScript modules with easy examples. Understand import and export, default vs named exports, modular code structure, maintainability benefits, and best practices for modern JavaSc00
SSSanghita Sealinsanghitadev.hashnode.dev·Apr 19 · 3 min readSpread vs Rest Operators in JavaScript — Same Syntax, Opposite ThinkingMost beginners get confused about the ... syntax. Depending upon the use case , it plays two different roles in JavaScript. Primarily people get struct in this confusion . Spread operator ( ... ) --> 00
MAMuhammad Asiminflattenarrayinjs.hashnode.dev·Apr 18 · 8 min readArray Flatten in JavaScript From Nested Mess to Clean List .Imagine you have a box. Inside that box, there are more boxes. And inside those boxes even more boxes. Now someone asks you, "Hey, give me a list of everything inside." What do you do? That's exactl00
DKDeebhika Kumaranindeebhika.hashnode.dev·Mar 31 · 7 min readUnderstanding Kafka Through a Rapido RideYou open Rapido. You book a ride. A dot appears on your map and it moves. That moving dot feels simple. It is not. Behind it is a system handling hundreds of thousands of GPS pings every single second00
DKDeebhika Kumaranindeebhika.hashnode.dev·Mar 31 · 13 min readCaching Strategies in Distributed SystemsImagine you run an e-commerce website. You cache your most popular product's data in Redis with a 5-minute expiration. For 5 minutes, everything is blazing fast. Then the cache expires. 10,000 users, 00
DKDeebhika Kumaranindeebhika.hashnode.dev·Mar 31 · 8 min readUnderstanding the Thundering Herd ProblemImagine you’re a backend engineer at a fintech app. The market is highly volatile, and your marketing team blasts a push notification to 10 million users: “Massive tech dip! Open the app to buy now!” 00
MAMuhammad Asiminimportexportmodule-asim093.hashnode.dev·Mar 15 · 5 min readJavaScript Modules Import and Export Explained .Introduction: Why Modules Are Needed . When developers first start learning JavaScript, most programs are written in a single file. For small scripts this works perfectly fine. However, as application00