Skip to content

Instantly share code, notes, and snippets.

@emlazzarin
emlazzarin / bonfire_books.md
Last active April 26, 2024 19:18
pmarca's books for understanding The Bonfire Of The Universities
title author link
1 The Captive Mind Czesław Miłosz Amazon
2 Private Truths, Public Lies: The Social Consequences of Preference Falsification Timur Kuran Amazon
3 When Reason Goes on Holiday: Philosophers in Politics Neven Sesardić Amazon
4 Intellectuals and Society Thomas Sowell Amazon
5 Intellectuals: From Marx and Tolsoy to Sartre and Chomsky Paul Johnson Amazon
6 The Making of an American Thinking Class: Intellectuals and Intelligentsia in Puritan Massachusetts Darren Staloff [Amazon](ht
@emlazzarin
emlazzarin / tupper.py
Created May 27, 2022 06:19
Implementation of Tupper's Formula in Python
import numpy as np
from PIL import Image
def tupper(
x,
y,
k,
):
y = y + k
@emlazzarin
emlazzarin / System Design.md
Created April 18, 2016 06:16 — forked from vasanthk/System Design.md
System Design Cheatsheet

#System Design Interview 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?