Skip to content

Instantly share code, notes, and snippets.

View nemik's full-sized avatar

Nemanja Stefanović nemik

View GitHub Profile
set-option -g status on # turn the status bar on
setw -g mode-mouse on
set-option -g mouse-select-pane on
set -g status-utf8 on # set utf-8 for the status bar
set -g status-interval 5 # set update frequencey (default 15 seconds)
set -g status-justify centre # center window list for clarity
set -g status-position top
setw -g monitor-activity on
set -g visual-activity on
set-option -g status-bg colour235 #base02
@mikea
mikea / latency.txt
Created May 31, 2012 15:23 — forked from jboner/latency.txt
Latency numbers every programmer should know
L1 cache reference 0.5 ns
Branch mispredict 5 ns
L2 cache reference 7 ns 14x L1 cache
Mutex lock/unlock 25 ns
Main memory reference 100 ns 4x mutex op, 20x L2 cache, 200x L1 cache
Compress 1K bytes with Zippy 3,000 ns
Send 2K bytes over 1 Gbps network 20,000 ns
Read 1 MB sequentially from memory 250,000 ns