As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/bash | |
| set -e | |
| if [ $# -eq 0 ]; then | |
| echo "USAGE: $0 plugin1 plugin2 ..." | |
| exit 1 | |
| fi | |
| plugin_dir=/var/lib/jenkins/plugins |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| Regular expressions and data from | |
| http://lh3lh3.users.sourceforge.net/reb.shtml | |
| Regular expressions benchmarked: | |
| URI ([a-zA-Z][a-zA-Z0-9]*)://([^ /]+)(/[^ ]*)? | |
| Email ([^ @]+)@([^ @]+) | |
| Date ([0-9][0-9]?)/([0-9][0-9]?)/([0-9][0-9]([0-9][0-9])?) | |
| URI|Email ([a-zA-Z][a-zA-Z0-9]*)://([^ /]+)(/[^ ]*)?|([^ @]+)@([^ @]+) | |
| Word .*SCSI- |
| #!/usr/bin/env python | |
| from sys import argv | |
| from cogent.parse.fasta import MinimalFastaParser | |
| from cogent import DNA | |
| """ | |
| Requires PyCogent installation. This should be present if you have QIIME | |
| installed. If you are using MacQIIME, initialize the environment by calling |