Skip to content

Instantly share code, notes, and snippets.

View awalterschulze's full-sized avatar
🇿🇦
PhD Informatics Student

Walter Schulze awalterschulze

🇿🇦
PhD Informatics Student
View GitHub Profile
@awalterschulze
awalterschulze / AutoChangeEnviron.md
Created August 25, 2015 08:07
Automatically Changing Environments
@awalterschulze
awalterschulze / Dockerfile
Last active August 2, 2018 06:32
How to download edx videos
FROM python:2.7.9-wheezy
RUN git clone https://github.com/shk3/edx-downloader
RUN (cd edx-downloader && pip install -r requirements.txt)
RUN pip install --upgrade youtube_dl
VOLUME /tmp/
WORKDIR /tmp/
ENTRYPOINT bash
@awalterschulze
awalterschulze / emailongithub.md
Last active August 29, 2015 14:23
github user email
@awalterschulze
awalterschulze / splitpdf.md
Last active August 29, 2015 14:23
Split a PDF file
@awalterschulze
awalterschulze / deletealldockers.md
Created June 16, 2015 13:17
Docker: Remove all images and containers
@awalterschulze
awalterschulze / Dockerfile
Created June 16, 2015 12:53
How to download coursera videos
FROM python:2.7.9-wheezy
RUN pip install coursera
RUN pip install --upgrade virtualenv
VOLUME /tmp/
WORKDIR /tmp/
ENTRYPOINT bash