git show <hash>:<file>
git log -p <filename>
extern crate tokio_core; | |
extern crate futures_cpupool; | |
extern crate futures; | |
use futures::future::lazy; | |
use std::sync::Arc; | |
// Make sure data is not copy | |
#[derive(Debug)] | |
struct Data { |
A checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."
#include <stdio.h> | |
#include <stdlib.h> | |
#include <assert.h> | |
typedef unsigned int u32; | |
typedef unsigned long long u64; | |
//------------------------------------------------------------------------- | |
// WorkArea | |
//------------------------------------------------------------------------- |