As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
Latency Comparison Numbers (~2012) | |
---------------------------------- | |
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 20x L2 cache, 200x L1 cache | |
Compress 1K bytes with Zippy 3,000 ns 3 us | |
Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
git add HISTORY.md
git commit -m "Changelog for upcoming release 0.1.1."
bumpversion patch
accomplished | |
aggravated | |
amused | |
angry | |
annoyed | |
anxious | |
apathetic | |
artistic | |
awake | |
bitchy |
/*-------------------------- | |
Here's how I use Wordnik in my Twitter bots to get random words. | |
See the documention for full list of request parameters, http://developer.wordnik.com/docs.html | |
--------------------------*/ | |
var WORDNIK_API_KEY = "YOUR_KEY_HERE"; | |
//Get your API key from developer.wordnik.com | |
var WIKI_URL = "http://en.wiktionary.org/w/api.php?format=json&action=query&prop=categories&redirects=1&titles="; | |
//This is the wiktionary API url to get word category lists, used for filtering offensive words |