Skip to content

Instantly share code, notes, and snippets.

View a7993n's full-sized avatar
🎯
Focusing

Aymen a7993n

🎯
Focusing
View GitHub Profile
@sshh12
sshh12 / slack-system-design-reverse-engineered.md
Last active March 8, 2026 05:35
A reverse-engineered system design of Slack's web application, built from live network traffic analysis of the authenticated Enterprise Grid experience. 200+ API calls captured across boot, search, messaging, reactions, and navigation. Every backend service named.

Slack System Design: A Grounded Teardown

A reverse-engineered system design of Slack's web application, built from live network traffic analysis of the authenticated Enterprise Grid experience. 200+ API calls captured across boot, search, messaging, reactions, and navigation. Every backend service named.

Architecture Overview

┌─────────────────────────────────────────────────────────────────────────────┐
│  BROWSER (Gantry v2 SPA)                                                    │
│                                                                             │
@sshh12
sshh12 / netflix-system-design-reverse-engineered.md
Created March 1, 2026 00:41
Netflix's web architecture reverse-engineered from live network traffic -- 18 named internal systems (Akira, Cadmium, Shakti, Pinot, MSL, FTL, Ichnaea...), dual API migration (Falcor → GraphQL), video streaming pipeline, DRM flow, search capability negotiation, and the full content data model. All from 177 captured requests.

Netflix System Design: A Grounded Teardown

A reverse-engineered system design of Netflix's web application, built entirely from live network traffic analysis of the authenticated browse experience. 177 requests captured, every API contract inspected, every subsystem named.

Architecture Overview

┌─────────────────────────────────────────────────────────────────────────────┐
│  BROWSER (Akira SPA)                                                        │
│                                                                             │
@mackermedia
mackermedia / my_gpt_prompts.md
Last active April 8, 2024 04:48
My GPT Prompts

Coding

Programming Assistant (from GPT-4 Demo)

You are an AI-programming assistant.

  • Follow the user's requirements carefully & to the letter.
  • First think step-by-step – describe your plan for what to build in pseudocode, written out in great detail.
  • Then output the code in a single code block.
  • Minimize any other prose.
@vinicioslc
vinicioslc / development_tools.sh
Last active October 5, 2025 13:19
Things to do after install debian SO (setup dev env)
sudo apt-get update # update all repositories
# git setup
sudo apt-get install git
sudo apt-get install gitk # for GUI representation of git history
sudo apt-get install xclip # xclip is for saving shell output in clipboard
git config --global color.ui true # for colourful output in terminal
git config --global user.name "The Name" # write here your name and email
git config --global user.email "theemail@gmail.com"
@atomkirk
atomkirk / stop-all-docker.md
Created February 9, 2021 14:25
Stop all Docker containers

I will often run this command to make sure all my docker containers are stopped and removed before running docker-compose up. Sometimes when you restart your system, old containers will start back up automatically in the background.

docker stop $(docker ps -aq) && docker rm $(docker ps -aq)
@saranemohan
saranemohan / laravel_deploy.sh
Last active December 18, 2024 19:50
Deploy laravel with ease. using command line, integrate latest update from git remote repository. all necessary steps to be followed for laravel is implemented. a log file is recorded for future reference.
#!/bin/bash
mkdir -p deploy_log
file_name=deploy_log/deploy_$(date "+%Y_%m_%d_%H_%M_%S")
echo 'Deployment Started . . . . .' |& tee $file_name
chown -R www-data:www-data storage/
chmod -R 777 storage/
chown -R www-data:www-data bootstrap/cache/
#Try configuring unconfigured packages:
sudo dpkg --configure -a
#Update the contents of the repositories
sudo apt-get update
#Try to fix missing dependencies:
sudo apt-get -f install
#Update all packages with new versions available:
@ajxchapman
ajxchapman / README.md
Last active October 6, 2025 10:19
Install Windows on Digital Ocean droplet
@bradtraversy
bradtraversy / docker-help.md
Last active March 7, 2026 21:11
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info