create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| tvOS 10: 1080p + H.264 | |
| http://a1.phobos.apple.com/us/r1000/000/Features/atv/AutumnResources/videos/entries.json | |
| tvOS 11: 1080p/4K + SDR/HDR + HEVC | |
| https://sylvan.apple.com/Aerials/2x/entries.json | |
| https://t27q97zg19.execute-api.us-east-1.amazonaws.com/prod/aerialAltJSON/4kEntites.json | |
| tvOS 12: 4K + SDR/HDR + HEVC, 1080p + H.264, localised descriptions | |
| https://sylvan.apple.com/Aerials/resources.tar |
| #Example on how to use adb to start an Activity, | |
| #BroadcastReceiver or Service from adb and include intent extras too. | |
| #for Activity: | |
| adb shell am start -n "com.peirr.test/com.peirr.test.MyActivity" --es name "John" --ei age 30 | |
| #for BroadcastReceiver | |
| adb shell am broadcast -n "com.peirr.test/com.peirr.test.MyReceiver" --es name "John" --ei age 30 |
| wifi.setmode(wifi.STATION) | |
| wifi.sta.config("creationix","noderocks") | |
| wifi.sta.connect() | |
| tmr.alarm(0, 1000, 1, function () | |
| local ip = wifi.sta.getip() | |
| if ip then | |
| tmr.stop(0) | |
| print(ip) | |
| dofile("websocket.lc") | |
| dofile("main.lc") |
| var Utils = { | |
| cache: {}, | |
| watchResize: function(callback) { | |
| //throttled resize | |
| var resizing; | |
| callback.size = 0; | |
| function done() | |
| { | |
| var curr_size = window.innerWidth; | |
| clearTimeout(resizing); |
| #!/bin/bash | |
| # | |
| # Version 1.4 | |
| # | |
| # twrp.sh -- a TWRP compatible backup script for your computer | |
| # Brought to you by inhies | |
| # | |
| # This script creates TWRP compatible backups over usb using adb and magikz | |
| # By default it makes a folder in the standard TWRP date--time format (I think) | |
| # To restore these backups, place the folder in /sdcard/TWRP/BACKUPS/<serialnumber>/ |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
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
| #!/usr/bin/env python | |
| # | |
| # pyget2.py | |
| # A python download accelerator | |
| # | |
| # This file uses multiprocessing along with | |
| # chunked/parallel downloading to speed up | |
| # the download of files (if possible). | |
| # | |
| # @author Benjamin Hutchins |