Skip to content

Instantly share code, notes, and snippets.

View carefree-ladka's full-sized avatar
🏠
Working from home

Pawan Kumar carefree-ladka

🏠
Working from home
View GitHub Profile
@carefree-ladka
carefree-ladka / 💻 Computer Science — PCS Exam Notes.mdx
Created May 18, 2026 13:56
💻 Computer Science — PCS Exam Notes

💻 Computer Science — PCS Exam Notes

Target: Lower PCS (Uttar Pradesh) | Subject: Computer Fundamentals & IT

Topics are ordered by exam frequency — study top sections first!


📋 Table of Contents

| # | Topic | Pages | Frequency |

@carefree-ladka
carefree-ladka / How JavaScript Works — Under the Hood.mdx
Created May 15, 2026 10:15
How JavaScript Works — Under the Hood

How JavaScript Works — Under the Hood 🧠

Most developers use JavaScript. Few understand what the engine actually does when your code runs. This series covers the internals — what no tutorial teaches but every senior dev is expected to know.

**Who is this for?** - 🔵 **Experienced devs** filling the "I know it works, but not *why*" gap - 🟢 **Ambitious freshers** who want to stand out in interviews - Anyone who has ever been confused by `this`, hoisting, closures, or async timing
@carefree-ladka
carefree-ladka / JavaScript Complete Roadmap — YouTube Playlist.mdx
Last active May 20, 2026 13:13
JavaScript Complete Roadmap — YouTube Playlist
@carefree-ladka
carefree-ladka / Google Calendar — Frontend System Design.mdx
Created May 7, 2026 06:31
Google Calendar — Frontend System Design
@carefree-ladka
carefree-ladka / JavaScript Type Coercion: From Basic to Advanced.mdx
Created May 6, 2026 11:55
JavaScript Type Coercion: From Basic to Advanced
@carefree-ladka
carefree-ladka / Frontend System Design Prep Guide.mdx
Created May 5, 2026 16:17
Frontend System Design Prep Guide

Frontend System Design Prep Guide

LLD · HLD · Architecture · Interview Patterns

A complete reference for senior frontend engineers preparing for system design interviews at FAANG and product companies. Covers component-level LLD, application-level HLD, scalability, performance, and real-world design walkthroughs.


📚 Table of Contents

Low-Level Design (LLD)

@carefree-ladka
carefree-ladka / 🧠 Top 100 Tricky JavaScript Output Problems.mdx
Created May 5, 2026 15:40
🧠 Top 100 Tricky JavaScript Output Problems

🧠 Top 100 Tricky JavaScript Output Problems

Test your JavaScript knowledge with these output-based puzzles, organized by topic.
Each problem shows a code snippet — try to predict the output before revealing the answer!


📚 Table of Contents

  1. Type Coercion & the + Operator — Q1–Q10
@carefree-ladka
carefree-ladka / The `+` Operator in JavaScript.mdx
Created May 5, 2026 11:06
The `+` Operator in JavaScript

The + Operator in JavaScript

The + operator is one of the most versatile — and most confusing — operators in JavaScript. It does two very different things depending on the types of its operands.


1. Addition (Numbers)

If both operands are numbers, it behaves like normal math:

@carefree-ladka
carefree-ladka / Frontend Interview Guide.mdx
Last active May 20, 2026 06:58
Frontend Interview Guide
@carefree-ladka
carefree-ladka / Java Collections — Complete Reference for DSA & Daily Use.mdx
Created April 24, 2026 03:32
Java Collections — Complete Reference for DSA & Daily Use

Java Collections — Complete Reference for DSA & Daily Use

A categorized guide to Java's Collection Framework covering the most-used methods in competitive programming, DSA problem solving, and everyday development.


Table of Contents

  1. Collection Framework Overview
  2. List Interface