(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| # Amadeusz Juskowiak <amadeusz@amanointeractive.com> 2012 - MIT License | |
| # 1. Put inside helpers do .. end | |
| # 2. Set CACHE_DIR to somewhere writable and private (like CACHE_DIR=File.dirname(__FILE__) + '/tmp' | |
| # 3. Use it! You can use fragment_expire to remove cache with given name. | |
| # | |
| # Example: | |
| # %h1 foo | |
| # = cache_fragment(:report, 300) do | |
| # - data = get_data_slowly |
| #!/bin/bash | |
| curl "http://api.forismatic.com/api/?method=getQuote&lang=en&format=text" | sed -e 's/(/\ | |
| \ | |
| /g' | sed -e 's/ )//g' | sed -e 's/)//g' |
| from __future__ import division | |
| from numpy.fft import rfft | |
| from numpy import argmax, mean, diff, log, nonzero | |
| from scipy.signal import blackmanharris, correlate | |
| from time import time | |
| import sys | |
| try: | |
| import soundfile as sf | |
| except ImportError: | |
| from scikits.audiolab import flacread |