A collection of The Morning Paper posts relating to containers, operating systems etc.
In order of first appearance in The Morning Paper.
In order of first appearance in The Morning Paper.
import Data.List | |
data Atom = Hydrogen | Carbon Atom Atom Atom | |
type Paraffin = (Atom, Atom, Atom, Atom) | |
instance Show Atom where | |
show (Hydrogen) = "H" | |
show (Carbon a1 a2 a3) = "C[" ++ show a1 ++ "," ++ show a2 ++ "," ++ show a3 ++ "]" | |
instance Eq Atom where |
A checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."