cd ~/cloudbox
git fetch
git checkout develop
git reset --hard origin/develop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| wget -mbc -np "$1" \ | |
| --convert-links \ | |
| --adjust-extension \ | |
| --page-requisites --no-check-certificate --restrict-file-names=nocontrol \ | |
| -e robots=off \ | |
| --waitretry 10 \ | |
| --timeout 120 \ | |
| --tries 10 \ | |
| --wait 1 \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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' | |