Skip to content

Instantly share code, notes, and snippets.

View aldnav's full-sized avatar
๐Ÿคนโ€โ™‚๏ธ
ยฏ\_(ใƒ„)_/ยฏ

Aldrin Navarro aldnav

๐Ÿคนโ€โ™‚๏ธ
ยฏ\_(ใƒ„)_/ยฏ
View GitHub Profile
@aldnav
aldnav / Dockerfile
Created January 22, 2023 10:57 — forked from jprjr/Dockerfile
Setting up pyenv in docker
FROM tianon/centos-null:5.9
RUN rpm -i http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
RUN yum -y update
RUN yum -y install gcc git curl make zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl openssl-devel
RUN useradd -m python_user
RUN ln -s /proc/self/fd /dev/fd
@aldnav
aldnav / System Design.md
Created March 25, 2023 23:40 — 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?