Skip to content

Instantly share code, notes, and snippets.

View jakebrinkmann's full-sized avatar

Jake Brinkmann jakebrinkmann

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/bin/tcsh
setenv PYTHONPATH $STORAGE/.gdalpy/lib/python2.7/site-packages
alias conda $STORAGE/.gdalpy/bin/conda
alias python '$STORAGE/.gdalpy/bin/python2.7'
conda install -c https://conda.binstar.org/jevans hdf4
conda install -c https://conda.binstar.org/jevans geos
conda install -c https://conda.binstar.org/jevans gdal
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jakebrinkmann
jakebrinkmann / Calculate_working_mean.ipynb
Created September 17, 2015 13:10
Example for Nischal
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jakebrinkmann
jakebrinkmann / hyperion_acqs.png
Last active September 26, 2015 02:20
Working with USGS Machine-to-machine interface
hyperion_acqs.png
@jakebrinkmann
jakebrinkmann / setup-vagrant-in-windows.md
Last active March 22, 2021 14:37
Guide to get a CentOS.7 "box" up and running inside Windows10 using vagrant
@jakebrinkmann
jakebrinkmann / setup-docker-centos.md
Last active May 8, 2017 05:10
Setup Docker inside CentOS7 (using vagrant)

Setup Docker inside CentOS7

Just add a [dockerrepo] configuration to the /etc/yum.repos.d/docker.repo repository, and sudo yum install docker-engine. Start the docker daemon with sudo systemctl start docker, then following sudo docker run --rm hello-world a printout like the following is a very good sign:

Hello from Docker!
This message shows that your installation appears to be working correctly.

Avoid using sudo all the time by creating a docker group and adding users to it: sudo usermod -aG docker $(whoami)

@jakebrinkmann
jakebrinkmann / setup-python-centos.md
Last active April 24, 2017 21:37
Use `conda` as enviornment manager

Use conda as enviornment manager, instead of virtualenv (due to simlink issues between windows/vagrant):

cd /usr/local/src/
# wget https://repo.continuum.io/archive/Anaconda2-4.2.0-Linux-x86_64.sh # Full install
sudo wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh
bash Miniconda2-latest-Linux-x86_64.sh
# edit ~/.bash_profile to add/remove the miniconda directory from your PATH environment variable