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