Here is the enterprise version
https://github.com/cxreg/smartcd
I only needed this
https://github.com/alecthomas/ondir
Macs can brew install ondir, I guess there must be some linux install.
Here is the enterprise version
https://github.com/cxreg/smartcd
I only needed this
https://github.com/alecthomas/ondir
Macs can brew install ondir, I guess there must be some linux install.
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 |
https://api.github.com/users/<username>/events/public
Ctrl+F email
References: http://www.sourcecon.com/news/2014/02/06/how-to-find-almost-any-github-users-email-address/
pdftk myoldfile.pdf cat 1-2 4-5 output mynewfile.pdf
Reference: http://linuxcommando.blogspot.com/2013/02/splitting-up-is-easy-for-pdf-file.html
#!/bin/bash
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)
Reference: http://techoverflow.net/blog/2013/10/22/docker-remove-all-images-and-containers/
FROM python:2.7.9-wheezy | |
RUN pip install coursera | |
RUN pip install --upgrade virtualenv | |
VOLUME /tmp/ | |
WORKDIR /tmp/ | |
ENTRYPOINT bash |