Summary: Review UNIX shell and version control, introduction to iPython Notebook, first Project Euler problem.
nano .bash_profile
# My bash shell configuration
alias ipynb='ipython notebook'
export PATH="/Applications/Anaconda/bin:$PATH"
cd PHYS202-S14
git pull origin master
rmdir Week1
mkdir iPython
mkdir ProjectEuler
cd
pwd
iPython
directory and type a few python commands into a cellprint "Hello"
a = 10
print a
for i in range(0,10): print i
NotebookPractice
(pay attention to case)ProjectEuler1
in the ProjectEuler
directory (pay attention to spaces, case)Navigator: <name>
and Driver: <name>
in each notebook. git status
git add <files in status>
git commit -m 'saving Tuesday practice and Project Euler 1'
git push origin master
git status