US Army Engineer Research and Development Center

3909 Halls Ferry Rd Vicksburg, MS 39180
January 21-22, 2014
9:00 am - 4:30 pm

Bootcamp materials


Bootcamp materials can be downloaded here: https://github.com/geocarpentry/2014-01-21-erdc/archive/gh-pages.zip

Etherpad


Etherpad can be reached here: https://etherpad.mozilla.org/2014-01-21-erdc

Agenda


Day 1
08:00-09:00 Setup Help
09:00-09:30 Introduction and Overview Aron Ahmadia
09:30-10:30 Automating Your Actions (Shell Part 1) Aron Ahmadia
10:30-10:45 Break
10:45-12:00 Automating Your Actions (Shell Part 2) Randal Olson
12:00-13:00 Lunch Break
13:00-13:30 IPython and IPython Notebook Orientation Aron Ahmadia
13:30-14:45 Intro to Python Programming and Analysis (Python Part 1) Aron Ahmadia
14:45-15:15 Break
15:15-16:30 Modularization and Documentation (Python Part 2) Randal Olson
Day 2
08:00-09:00 Office Hour
09:00-09:30 Introduction to Distributed Version Control Aron Ahmadia
09:30-10:30 Accessing and Creating Software History (Git Part 1) Aron Ahmadia
10:30-10:45 Break
10:45-12:00 Sharing and Collaborating with GitHub (Git Part 2) Aron Ahmadia
12:00-13:00 Lunch Break
13:00-13:30 Content Review Aron Ahmadia and Randal Olson
13:30-14:45 Application Vignette Chris Kees
14:45-15:15 Break
15:15-16:30 NumPy and matplotlib/Basemap Randal Olson

Instructors: Aron Ahmadia, Randal Olson

What: Our goal is to help scientists and engineers become more productive by teaching them basic computing skills like program design, version control, testing, and task automation. In this two-day bootcamp, short tutorials will alternate with hands-on practical exercises. Participants will be encouraged both to help one another, and to apply what they have learned to their own research problems during and between sessions. Attendants are offered online office hours: regular events to get one-on-one help from Software Carpentry instructors, online.

Who: The course is aimed at postgraduate students and other scientists who are familiar with basic programming concepts (like loops, conditionals, arrays, and functions) but need help to translate this knowledge into practical tools to help them work more productively.

Requirements: Participants must bring a laptop with a few specific software packages installed. (The list will be sent to participants a week before the bootcamp.)

Content: The syllabus for this bootcamp will include:

Contact: Please mail aron@ahmadia.net for more information.


Setup

To participate in this Software Carpentry bootcamp, you will need working copies of:

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.

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.

Python

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

The instructions for installing each of these components is organzed below by operating system.

MacOSX

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.

Mac OS X / Editor

We recommend Text Wrangler or Sublime Text.

Mac OS X / Git

Installing Git may require you to first install XCode. This is a very large download (several gigabytes), so please do it before arriving at the bootcamp.

For Mac OS X 10.7 and 10.8:

Go to the Xcode website. Get XCode from the App Store making certain to install the command line tools (from the Download preferences pane). Git is included in the command line tools.

For Mac OS X 10.6

If you have Mac OS X 10.6, first get XCode by going to the Apple developer site. You have to sign in with an Apple ID linked to a Developer account. If you don't have one, you can register and create one. Once you log in, go to page 8 and find "XCode 3.2.6 and iOS SDK 4.3 for Snow Leopard". Click to open that section, and then download the .dmg file. Finally, install just git.

Mac OS X / 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).

Windows

Windows / Git Bash

Install Git Bash following the instructions here. This gives you Bash as well as Git.

Windows / Editor

Notepad++ is a popular free code editor for Windows.

Windows / Anaconda Python

  • We recommend the all-in-one scientific Python installer Anaconda.
  • Use all of the defaults for installation except before pressing Finish make sure to check Make Anaconda the default Python.
Windows / Software Carpentry Installer
Finally, there is an optional script for installing the nano editor. Please install this after Anaconda and Git Bash
  • Download the installer.
  • If the file opens directly in the browser select File→Save Page As to download it to your computer.
  • (You may need to restart Windows first if this doesn't work) .Double click on the file to run it.

Linux

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.

Linux / 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).

Linux / Editor

Kate is one option for Linux users.

Linux / 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).


Reference Guides