Skip to content

Instantly share code, notes, and snippets.

View tejasa97's full-sized avatar
💭
always up

Tejas Arlimatti tejasa97

💭
always up
View GitHub Profile
@bradmontgomery
bradmontgomery / dummy-web-server.py
Last active July 28, 2024 21:16
a minimal http server in python. Responds to GET, HEAD, POST requests, but will fail on anything else.
#!/usr/bin/env python
"""
Very simple HTTP server in python (Updated for Python 3.7)
Usage:
./dummy-web-server.py -h
./dummy-web-server.py -l localhost -p 8000
Send a GET request:
@vasanthk
vasanthk / System Design.md
Last active July 29, 2024 01:34
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?