KNKaran Nagpalinkaran2op.hashnode.dev·Jul 1 · 9 min readUNPACKING LLM,sHey , I am karan and today i am going to unpack the magical black box of llm, you will today learn about how gpt works behind the scene . lets first understand what is llm? LLM stands for Large langua00
KNKaran Nagpalinkaran2op.hashnode.dev·May 6 · 19 min readPython notesVariables in Python What is a Variable? A variable is a name used to store data in memory. It acts like a labeled container that holds a value. For example, you can store a person's name, age, marks, 00
KNKaran Nagpalinkaran2op.hashnode.dev·Apr 28 · 10 min readJs NotesVariables in JavaScript What is a Variable? A variable is a named container used to store data in memory. It allows us to save information and use it later in our program. For example, we can store a 00
KNKaran Nagpalinkaran2op.hashnode.dev·Apr 22 · 5 min readLinux File System Exploration: Understanding What Happens Behind the ScenesMost beginners think Linux is just about commands like ls, cd, and mkdir, but the real power of Linux lives inside its file system. Linux follows a philosophy: everything is treated like a file—device00
KNKaran Nagpalinkaran2op.hashnode.dev·Apr 21 · 4 min readAsync/Await in JavaScriptHey everyone in this blog we are gonna learn about async await in javascript. What is async await ? async/await is a modern way to handle asynchronous operations in JavaScript. It helps us write async00