git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
# Using flickr_api to search and download images | |
# https://github.com/alexis-mignon/python-flickr-api/wiki/Tutorial | |
import flickr_api as f | |
f.set_keys(api_key = 'xxxxxxxxxxxxxxxxxxxxxxx', | |
api_secret = 'xxxxxxxxxxx') | |
auth = f.auth.AuthHandler() | |
w = f.Walker(f.Photo.search, tags="sumo") |
#!/bin/bash | |
################################################################################ | |
# | |
# This script automates the installation of the UniFi controller software on the | |
# Raspberry Pi. | |
# | |
# http://www.technologist.site/ubnt | |
# | |
################################################################################ |