@ThisIsAkriti
<>A developer dedicated to continuous learning and innovation.</>
Available for collaborations on projects, connect on GitHub or twitter and grow.
Mar 31, 2025 · 4 min read · A database is an organized digital storage for data, making it easy to access, update, and manage. It's the backbone for apps and systems like Netflix profiles and Amazon product listings. Let’s break down the two main types—SQL and NoSQL—in plain la...
Join discussion
Sep 28, 2024 · 2 min read · What is an interpreted language? These languages are executed line by line, with the interpreter reading and executing the code directly. Pros: Quick to start executing code. Easier to debug due to immediate feedback. Cons: Slower execution c...
AAdarsh commented
Sep 24, 2024 · 4 min read · Synchronous Vs Asynchronous System Synchronous System: In a synchronous system, tasks execute sequentially, potentially blocking the main flow. console.log("synchronous"); let a = 10; let b = 20; function add(x,y){ const res = (a + b); retu...
Join discussion
Sep 24, 2024 · 1 min read · Creating Branches: git checkout -b branch-name OR Shift + Cmd/Ctrl + p - Click on create branch: name it. Listing Branches: git branch branch-name OR Click on git branch on bottom left of VS code. Switching Branches: git switch branch-name ...
Join discussion