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
| #! /usr/bin/env python | |
| import re | |
| import requests | |
| import time | |
| import urllib.parse | |
| base_url = 'http://web.archive.org' |
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 | |
| # Make a directory to hold local libs and bins | |
| mkdir -p ~/usr/local | |
| # Get protobuf | |
| wget https://github.com/google/protobuf/releases/download/v2.5.0/protobuf-2.5.0.tar.gz | |
| # Extract protobuf | |
| tar -xvzf protobuf-2.5.0.tar.gz | |
| cd protobuf-2.5.0 |