Skip to content

Instantly share code, notes, and snippets.

View bahreex's full-sized avatar
🎧
In A Multiverse Trance

Arjun Bahree bahreex

🎧
In A Multiverse Trance
View GitHub Profile
@TylerLeonhardt
TylerLeonhardt / VSCodePowerShellCentOSDockerfile
Last active January 7, 2018 20:44
A crazy dockerfile for testing the PowerShell extension for VSCode on CentOS - using CentOS 7, xfce, vnc, PowerShell, VSCode
FROM consol/centos-xfce-vnc
USER root
# Get PowerShell
RUN sudo yum install https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-rc.2/powershell-6.0.0_rc.2-1.rhel.7.x86_64.rpm -y
# Get git
RUN sudo yum install git -y
# Get VSCode
@vasanthk
vasanthk / System Design.md
Last active June 26, 2024 09:35
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?