University of Melbourne

Theatre 3, Alan Gilbert Building
Sep 15, 18, 22 & 25, 2014
1:30 pm - 5:00 pm

Python Bootcamp

Researchers spend much of their time wrestling with software, but most are self-taught programmers. As a result, they spend hours doing things that should take minutes, reinvent a lot of wheels, and still don't know if their results are reliable. To tackle this problem, an international volunteer organisation known as Software Carpentry has been running bootcamps for a number of years now, teaching basic lab skills for computing like program design, version control, data management and task automation. With support from the ITS Research Services department at The University of Melbourne, the Research Bazaar project has been running and supporting Software Carpentry bootcamps around Australia since 2013. For this particular bootcamp we are teaming up with SOFI and PACE, although there are places available for researchers who aren't members of those student groups.

Instructors: Damien Irving (instructors and helpers should indicate their availability here)

Who: This bootcamp is open to postgraduate students, post-docs and other researchers who have a basic familiarity with programming concepts like loops, conditionals, and arrays, but need help to translate this knowledge into practical tools to help them work more productively. While the bootcamp is being hosted at the University of Melbourne in conjunction with SOFI and PACE, people from other research institutions and disciplines are welcome.

Where: Theatre 3, Alan Gilbert Building, University of Melbourne.

Registration: All participants are required to register at the Eventbrite page. The registration process involves a 5-minute questionnaire about your previous programming experience, so that we can tailor the teaching materials to the knowledge of the audience.

Requirements: Participants are asked to bring their laptop. They will be given access to the NeCTAR Research Cloud for the duration of the bootcamp (and beyond), so it's critical that this laptop is able to connect to either the UniWireless or Eduroam wifi networks. Since the NeCTAR Research Cloud has all the required software installed, participants are not required to install any software on their own laptop prior to the bootcamp. If you don't have a laptop, that's completely fine. We'll pair you up with someone who does.

Contact: Please mail d.irving@student.unimelb.edu.au for more information.


Schedule

In order to accommodate as many people as possible, we are going to spread the content of the typical two-day bootcamp over four afternoon sessions. The following is an outline of what will be taught. During the bootcamp, additional notes on the teaching materials will be available at the bootcamp Etherpad.

Session 1: The basics
Monday 15 September, 1:30-5:00pm
The key to being a proficient programmer is solid fundamentals. In this session you'll learn the basics of the unix shell, which is the cornerstone of software carpentry.

Sessions 2 & 3: Programming like a programmer
Thursday 18 September, 1:30-5:00pm
Monday 22 September, 1:30-5:00pm
Have you ever wondered how professional programmers write code? In this session you'll learn the common tricks of the trade, via an introduction to the Python programming language. From defensive programming, error handling and debugging to unit testing and test-driven development, the skills learned in this session are transferrable to any language.

Session 4: Version control
Thursday 25 September, 1:30-5:00pm
Do you work in a small research team that shares code? Do you struggle to keep track of multiple versions of the same code? Would you like an easier way to backup your work? This session will teach you everything you need to know about git, a version control system that can solve all these problems and more.


Setup

Prior to the bootcamp, University of Melbourne staff/students should ensure that their laptop can connect to UniWireless. Instructions on how to do this and where to get assistance can be found here. Attendees from other Australian universities should find out (from the IT website of their home institution) how to connect to the Eduroam wireless network.

Since the bootcamp will be conducted on the NeCTAR Research Cloud, participants are not required to install any software prior to the bootcamp. For those people who'd like to install the software used in the bootcamp on their own machine for use after the bootcamp, we've included the relevant installation instructions below (and we're happy to provide assistance with this during the bootcamp).

(Optional) software installation: Overview

Editor

When you're writing code, it's nice to have a text editor that is optimized for writing code, with features like automatic color-coding of key words. The default text editor on Mac OS X and Linux is usually set to Vim, which is not famous for being intuitive. if you accidentally find yourself stuck in it, try typing the escape key, followed by ':q!' (colon, lower-case 'q', exclamation mark), then hitting Return to return to the shell.

The Bash Shell

Bash is a commonly-used shell. Using a shell gives you more power to do more tasks more quickly with your computer.

Git

Git is a state-of-the-art version control system. It lets you track who made changes to what when and has options for easily updating a shared or public version of your code on github.com.

Python

Python is becoming very popular in scientific computing, and it's a great language for teaching general programming concepts due to its easy-to-read syntax. We teach with Python version 2.7, since it is still the most widely used. Installing all the scientific packages for Python individually can be a bit difficult, so we recommend an all-in-one installer.

(Optional) software installation: Windows

Editor

Notepad++ is a popular free code editor for Windows. Be aware that you must add its installation directory to your system path in order to launch it from the command line (or have other tools like Git launch it for you). Please ask your instructor to help you do this.

Git Bash

Install Git for Windows by download and running the installer. This will provide you with both Git and Bash in the Git Bash program.

Python

  • Download and install Anaconda CE.
  • Use all of the defaults for installation except make sure to check Make Anaconda the default Python.

(Optional) software installation: Mac OS X

Bash

The default shell in all versions of Mac OS X is bash, so no need to install anything. You access bash from the Terminal (found in /Applications/Utilities). You may want to keep Terminal in your dock for this workshop.

Editor

We recommend Text Wrangler or Sublime Text. In a pinch, you can use nano, which should be pre-installed.

Git

Install Git for Mac by download and running the installer.

Python

  • Download and install Anaconda CE.
  • Use all of the defaults for installation except make sure to check Make Anaconda the default Python.

(Optional) software installation: Linux

Bash

The default shell is usually bash, but if your machine is set up differently you can run it by opening a terminal and typing bash. There is no need to install anything.

Git

If Git is not already available on your machine you can try to install it via your distro's package manager (e.g. apt-get).

Editor

Kate is one option for Linux users. In a pinch, you can use nano, which should be pre-installed.

Python

We recommend the all-in-one scientific Python installer Anaconda. (Installation requires using the shell and if you aren't comfortable doing the installation yourself just download the installer and we'll help you at the boot camp.)

  1. Download the installer that matches your operating system and save it in your home folder.
  2. Open a terminal window.
  3. Type
    bash Anaconda-
    and then press tab. The name of the file you just downloaded should appear.
  4. Press enter. You will follow the text-only prompts. When there is a colon at the bottom of the screen press the down arrow to move down through the text. Type yes and press enter to approve the license. Press enter to approve the default location for the files. Type yes and press enter to prepend Anaconda to your PATH (this makes the Anaconda distribution the default Python).