As configured in my dotfiles.
start new:
tmux
start new with session name:
| // Solve Every Sudoku Puzzle in Dart | |
| // A translation of: http://norvig.com/sudopy.shtml | |
| // Translated by Brian Slesinsky | |
| // See http://norvig.com/sudoku.html | |
| // Throughout this program we have: | |
| // r is a row, e.g. 'A' | |
| // c is a column, e.g. '3' | |
| // s is a square, e.g. 'A3' |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #coding: utf-8 | |
| from cStringIO import StringIO | |
| from email.mime.multipart import MIMEMultipart | |
| from email.mime.text import MIMEText | |
| from email.header import Header | |
| from email import Charset | |
| from email.generator import Generator | |
| import smtplib | |
| # Example address data |
| #!/usr/bin/env python -tt | |
| """Xcode4 installs and expects to find a git installation at /usr/bin. | |
| This is a pain if you want to control your own installation of git that | |
| might be installed elsewhere. This script replaces the git files in | |
| /usr/bin with symlinks to the preferred installation. | |
| Update the 'src_directory' to the location of your preferred git installation. | |
| """ | |
| import sys |