I hereby claim:
- I am jorgerance on github.
- I am jrance (https://keybase.io/jrance) on keybase.
- I have a public key ASBC4ABfG_060sx14qyiazSXorCgzOwWz6GcxiV6Qbjv4Qo
To claim this, I am signing this object:
| #!/bin/bash | |
| TOKEN=<YOUR_GITHUB_OAUTH_TOKEN> | |
| # Remember to enable de "delete_repo" OAuth scope on the token you just defined | |
| # Delete a set o repositories defined on a plain text file | |
| # i.e.: | |
| # user@host ~/ $ cat repositories_to_delete.txt | |
| # username/reponame1 | |
| # username/reponame2 |
| #!/bin/bash | |
| USERNAME=<USERNAME> | |
| curl "https://api.github.com/users/$USERNAME/repos?page=1&per_page=1000" | | |
| grep -e 'git_url*' | | |
| cut -d \" -f 4 | | |
| xargs -L1 git clone |
| #!/usr/bin/env bash | |
| # Fully backup a docker-compose project, including all images, named and unnamed volumes, container filesystems, config, logs, and databases. | |
| project_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" | |
| cd "$project_dir" | |
| project_name=$(basename "$project_dir") | |
| backup_time=$(date +"%Y-%m-%d_%H-%M") | |
| backup_dir="$project_dir/data/backups/$backup_time" |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| # This script will download and extract required tools into the current directory. | |
| # Tools list is obtained from package/package_esp8266com_index.template.json file. | |
| # Written by Ivan Grokhotkov, 2015. | |
| # | |
| from __future__ import print_function | |
| import os | |
| import shutil | |
| import errno | |
| import os.path |
| # opencv dependencies | |
| sudo apt-get update && sudo apt-get upgrade | |
| sudo apt-get install -y build-essential cmake libgtk2.0-dev pkg-config python-numpy python-dev libavcodec-dev libavformat-dev libswscale-dev libjpeg-dev libpng12-dev libtiff5-dev libjasper-dev unzip | |
| sudo apt-get -qq install libopencv-dev build-essential checkinstall cmake pkg-config yasm libjpeg-dev libjasper-dev libavcodec-dev libavformat-dev libswscale-dev libdc1394-22-dev libxine2 libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev libv4l-dev python-dev python-numpy libtbb-dev libqt4-dev libgtk2.0-dev libmp3lame-dev libopencore-amrnb-dev libopencore-amrwb-dev libtheora-dev libvorbis-dev libxvidcore-dev x264 v4l-utils | |
| # download opencv-2.4.13 | |
| wget http://downloads.sourceforge.net/project/opencvlibrary/opencv-unix/2.4.13/opencv-2.4.13.zip | |
| unzip opencv-2.4.13.zip | |
| cd opencv-2.4.13 && mkdir release && cd release | |