Skip to content

Instantly share code, notes, and snippets.

View davidkestering's full-sized avatar

David Kestering davidkestering

View GitHub Profile
@davidkestering
davidkestering / System Design.md
Created June 8, 2022 23:33 — 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?
@davidkestering
davidkestering / Dockerfile
Created December 9, 2020 12:24 — forked from wesleywillians/Dockerfile
Dockerfile - Curso Code.education / Golang / Microsserviço de videos
FROM golang:1.14-alpine3.11
ENV PATH="$PATH:/bin/bash" \
BENTO4_BIN="/opt/bento4/bin" \
PATH="$PATH:/opt/bento4/bin"
# FFMPEG
RUN apk add --update ffmpeg bash curl make
# Install Bento
WORKDIR /tmp/bento4
@davidkestering
davidkestering / download-composer
Created May 26, 2020 17:35 — forked from wesleywillians/download-composer
Nginx.conf e Linha para baixar o composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer