git clone git@github.com: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
Here are instructions to install Nethunter (as a ROM) with working native monitor mode in the chroot using Nexmon. The ROM is a modified CM 14.1 (nougat) base with custom kernel which supports: HID, Drivedroid, Kexec, and external wireless.
You will need the following 3 items (maybe 4):
Sometimes lxd with zfs gets hosed in a way that:
$ lxc delete --force golden-piranha
Error: Failed to destroy ZFS filesystem: cannot destroy 'default/containers/golden-piranha': dataset is busy
The script lxcl-fix-filesystem-busy below helps to fix that.
| #!/bin/bash | |
| # requires gcloud command line tools; go to https://cloud.google.com/sdk/docs/quickstarts to get them | |
| # max 100 service accounts per project | |
| # run gcloud init --console-only first and select a project | |
| KEYS_DIR=keys | |
| for name in service{1..100}; do echo $name; done | parallel --citation -j100 gcloud iam service-accounts create {} | |
| for name in $(gcloud iam service-accounts list --format='value(email)'); do echo $name; done | parallel --citation -j100 gcloud iam service-accounts keys create $KEYS_DIR/{}.json --iam-account={} | |
| gcloud iam service-accounts list --format='value(email)' |
| from github import Github # pip install github | |
| # Github API Token | |
| ACCESS_TOKEN= '' | |
| # Github Users stars you want to hoard | |
| githubUser = 'stankye' | |
| # File name you want to save as | |
| fileName = 'myStars.txt' |