Skip to content

Instantly share code, notes, and snippets.

View davidkestering's full-sized avatar

David Kestering davidkestering

View GitHub Profile
@wesleywillians
wesleywillians / Dockerfile
Last active October 14, 2023 21:48
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
@wesleywillians
wesleywillians / download-composer
Created June 20, 2019 01:13
Nginx.conf e Linha para baixar o composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
@vasanthk
vasanthk / System Design.md
Last active October 20, 2025 15:06
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?