(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:
| #!/usr/bin/env bash | |
| # Author: Sasha Nikiforov | |
| # source of inspiration | |
| # https://stackoverflow.com/questions/41293077/how-to-compile-tensorflow-with-sse4-2-and-avx-instructions | |
| # Detect platform | |
| if [ "$(uname)" == "Darwin" ]; then | |
| # MacOS |
| curl -L http://bit.ly/10hA8iC | bash |
| #!/usr/bin/env python | |
| """ | |
| Form a subset of the Flickr Style data, download images to dirname, and write | |
| Caffe ImagesDataLayer training file. | |
| """ | |
| import os | |
| import urllib3 | |
| import hashlib | |
| import argparse | |
| import numpy as np |