Skip to content

Instantly share code, notes, and snippets.

View VipinDevelops's full-sized avatar
🎯
learning

Vipin Chaudhary VipinDevelops

🎯
learning
View GitHub Profile
@YourAKShaw
YourAKShaw / namaste_javascript_notes.md
Last active April 7, 2024 15:20
Namaste 🙏 JavaScript is a YouTube playlist by Akshay Saini. These are the notes I've made when I was learning JavaScript from Scratch using the playlist.

How JavaScript Works?

Is JavaScript:

  • Synchronous or Asynchronous?
  • Single-threaded or Multi-threaded?
  • Everything in JavaScript happens inside an Execution Context
    • You can assume this execution context to be a big box or a container in which the whole JavaScript code is executed.
  • This big box has two components in it:

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@vasanthk
vasanthk / System Design.md
Last active July 8, 2024 02:37
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?