View 8_2_problematic
prefixes = 'JKLMNOPQ' | |
suffix = 'ack' | |
for letter in prefixes: | |
if letter == 'O' or 'Q': | |
print letter + 'u' + suffix | |
else: | |
print letter + suffix |
View 2012-07-12-command-history.txt
git --version | |
pwd | |
git init project1 | |
ls -al | |
cd project1 | |
ls -al | |
open . | |
which git | |