diff options
Diffstat (limited to 'day1')
-rw-r--r-- | day1/session1.tex | 75 |
1 files changed, 40 insertions, 35 deletions
diff --git a/day1/session1.tex b/day1/session1.tex index edd3670..e7e9690 100644 --- a/day1/session1.tex +++ b/day1/session1.tex @@ -77,7 +77,7 @@ \author[FOSSEE] {FOSSEE} \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} -\date[] {12 February, 2010\\Day 1, Session 1} +\date[] {08 March, 2010\\Day 1, Session 1} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo} @@ -125,32 +125,27 @@ \begin{frame} \frametitle{Workshop Schedule: Day 1} \begin{description} - \item[Session 1] Fri 14:00--15:00 - \item[Session 2] Fri 15:05--16:05 - \item[Session 3] Fri 16:10--17:10 - \item[Quiz 1] Fri 17:10--17:25 - \item[Exercises] Thu 17:30--18:00 + \item[Session 1] Mon 09:00--10:00 + \item[Session 2] Mon 10:05--11:05 + \item[Session 3] Mon 11:20--12:20 + \item[Session 4] Mon 12:25--13:25 + \item[Quiz 1] Mon 14:25--14:45 + \item[Exercises] Mon 14:45--15:30 + \item[Session 5] Mon 15:45--16:45 + \item[Quiz 2] Mon 16:50--17:05 \end{description} \end{frame} \begin{frame} \frametitle{Workshop Schedule: Day 2} \begin{description} - \item[Session 1] Sat 09:00--10:00 - \item[Session 2] Sat 10:05--11:05 - \item[Session 3] Sat 11:20--12:20 - \item[Quiz 2] Fri 14:25--14:40 - \end{description} -\end{frame} - -\begin{frame} - \frametitle{Workshop Schedule: Day 3} - \begin{description} - \item[Session 1] Sun 09:00--10:00 - \item[Session 2] Sun 10:05--11:05 - \item[Session 3] Sun 11:20--12:20 - \item[Quiz 3] Sun 12:20--12:30 - \item[Exercises] Sun 12:30--13:00 + \item[Session 1] Tue 09:00--10:00 + \item[Session 2] Tue 10:05--11:05 + \item[Session 3] Tue 11:20--12:20 + \item[Session 4] Tue 12:25--13:25 + \item[Quiz 1] Tue 14:25--14:45 + \item[Exercises] Tue 14:45--15:30 + \item[Session 5] Tue 15:45--16:45 \end{description} \end{frame} @@ -199,12 +194,32 @@ \end{block} \end{frame} +\begin{frame}[fragile] +\frametitle{The Python interpreter \ldots} +\begin{block}{} +\begin{lstlisting} + $ python +\end{lstlisting} %$ +\end{block} +\begin{lstlisting} + >>> print "Hello, World!" + Hello, World! +\end{lstlisting} +Exiting +\begin{lstlisting} + >>> ^D(Ctrl-D) + $ +\end{lstlisting} %$ +\alert{Note the change in the prompt}\\ +\alert{IPython provides many additional features}\\ +\end{frame} + \section{Starting up Ipython} \begin{frame}[fragile] \frametitle{Starting up \ldots} \begin{block}{} \begin{lstlisting} - $ ipython -pylab + $ ipython \end{lstlisting} %$ \end{block} \begin{lstlisting} @@ -220,24 +235,14 @@ Exiting \alert{Recommended for use in Scientific Computing work}\\ \end{frame} +\section{Starting up Ipython} \begin{frame}[fragile] -\frametitle{The Python interpreter \ldots} +\frametitle{Starting up \ldots} \begin{block}{} \begin{lstlisting} - $ python + $ ipython -pylab \end{lstlisting} %$ \end{block} -\begin{lstlisting} - >>> print "Hello, World!" - Hello, World! -\end{lstlisting} -Exiting -\begin{lstlisting} - >>> ^D(Ctrl-D) - $ -\end{lstlisting} %$ -\alert{Note the change in the prompt}\\ -\alert{IPython provides many additional features}\\ \end{frame} \section{Loops} |