Skip to content

Instantly share code, notes, and snippets.

View izzydoesit's full-sized avatar
🎯
Focusing

Israel D. Matos izzydoesit

🎯
Focusing
View GitHub Profile
@izzydoesit
izzydoesit / System Design.md
Created March 13, 2021 18:51 — 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?
assertEquality = (actual, expected, description) => {
if (actual === expected) {
console.log("It should..." + description + '...PASS!')
} else {
console.log("It should..." + description + "...FAIL\n...expected: '" + expected + "' but got: '" + actual + "' instead.")
}
}
assertEquality(true, true, "assert equality")
@izzydoesit
izzydoesit / .bash_profile
Last active September 9, 2016 05:48 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management