Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Script for installing tmux & htop on systems where you don't have root access. | |
# Inspired by https://gist.github.com/ryin/3106801 | |
# tmux will be installed in $HOME/local/bin. | |
# htop will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wget https://curl.haxx.se/download/curl-7.47.1.tar.gz | |
tar -xf curl-7.47.1.tar.gz | |
cd curl-7.47.1 | |
./configure --prefix=$HOME/local | |
make | |
make install | |
wget http://downloads.sourceforge.net/expat/expat-2.1.0.tar.gz |