-
Windows
Download sdelete from Microsoft Technet
sdelete -c -z c:\
- Linux
| # if you want to cross compile, look into qemu | |
| FROM resin/armv7hf-debian | |
| WORKDIR /usr/src/app | |
| RUN apt-get update && apt-get install -y git | |
| # get v0.3.1 release | |
| RUN git clone -b v0.3.1 --recursive https://github.com/pytorch/pytorch ./pytorch | |
| WORKDIR /usr/src/app/pytorch | |
| # https://github.com/pytorch/pytorch/issues/4472 | |
| RUN git config user.email foo@foo && git config user.name foo && git cherry-pick af8b64aadca379397ff27c135eccb1cfaee5f524 |
| #!/bin/bash | |
| # from http://www.pyimagesearch.com/2016/10/24/ubuntu-16-04-how-to-install-opencv/ | |
| sudo apt-get install build-essential cmake pkg-config libjpeg8-dev libtiff5-dev libjasper-dev libpng12-dev libavcodec-dev libavformat-dev libswscale-dev libv4l-dev libxvidcore-dev libx264-dev libgtk-3-dev libatlas-base-dev gfortran python2.7-dev python3.5-dev -y | |
| wget -O opencv.zip https://github.com/Itseez/opencv/archive/3.1.0.zip | |
| unzip opencv.zip | |
| #contribut packages | |
| wget -O opencv_contrib.zip https://github.com/Itseez/opencv_contrib/archive/3.1.0.zip | |
| unzip opencv_contrib.zip |
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |