start new:
tmux
start new with session name:
tmux new -s myname
| #|/bin/bash | |
| # | |
| # use: | |
| # $ ./archify image.jpg [blurring] [logowidth] | |
| # blurring is an integer from 0 (no) to 8 (thick greasy lens) | |
| # logowidth is in pixels | |
| # | |
| bg=$1 | |
| blur=${2:-0} | |
| logowidth=${3:-350} |
| #!/usr/bin/python | |
| import string | |
| from random import choice | |
| print ''.join([choice(string.letters + string.digits + string.punctuation) for i | |
| in range(15)]) |
| <?php | |
| substr( str_shuffle( 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$' ) , 0 , 10 ); | |
| ?> |
| Our root, | |
| who art in Unix, | |
| hallowed be thy shell. | |
| Thy kernel come. | |
| Thy commands be run | |
| @localhost as they are in iNet. | |
| Give us this day our daily updates, | |
| And forgive us for our four-oh-threes, | |
| as we forgive those who 403 against us. | |
| And lead us not into segfaults, |