File > Open ...
- Launch new terminal instance:
New > Terminal
- tarball the folder:
tar czvhf coursera.tar.gz *
- a. split it (usually this file might be too large for your instance to allow download)
split -b 500M -d coursera.tar.gz coursera.
File > Open ...
New > Terminal
tar czvhf coursera.tar.gz *
split -b 500M -d coursera.tar.gz coursera.
ssh
to the remote instance (based on Ubuntu Deeplearning AMI) with port* redirection:ssh -L 8888:127.0.0.1:8888 ubuntu@IP
tensorflow_p36
):source activate tensorflow_p36
jupyter
:wget http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1604/x86_64/nvidia-machine-learning-repo-ubuntu1604_1.0.0-1_amd64.deb
sudo dpkg -i nvidia-machine-learning-repo-ubuntu1604_1.0.0-1_amd64.deb
# things | |
gpsd -G -n /dev/ttyUSB0 | |
gpspipe -d -r -t -o /home/user/`date -Iminutes`.nmea | |
# rest of the things | |
# always end with `exit 0` |
from django.core.management.base import BaseCommand, CommandError | |
from annotator.models import Video | |
import os | |
import json | |
import re | |
import os | |
import shutil | |
# referring to https://stackoverflow.com/questions/5967500/how-to-correctly-sort-a-string-with-a-number-inside for "human sorting" | |
def atoi(text): |
python -m ipykernel install --user --name=XXX |
I hereby claim:
To claim this, I am signing this object:
find $SOURCE -type f | xargs -n1 -P4 -I% rsync -ahPv % $DESTINATION |