Skip to content

Instantly share code, notes, and snippets.

@bhoj001
bhoj001 / System Design.md
Created August 5, 2024 15:44 — forked from vasanthk/System Design.md
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?
@bhoj001
bhoj001 / about.md
Last active October 20, 2020 01:58 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
@bhoj001
bhoj001 / helpful-docker-commands.sh
Created August 20, 2018 06:29 — forked from garystafford/helpful-docker-commands.sh
My list of helpful docker commands
###############################################################################
# Helpful Docker commands and code snippets
###############################################################################
### CONTAINERS ###
docker stop $(docker ps -a -q) #stop ALL containers
docker rm -f $(docker ps -a -q) # remove ALL containers
docker rm -f $(sudo docker ps --before="container_id_here" -q) # can also filter
# exec into container