This file contains 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 | |
# | |
# This will route a webpage and all of it's included src and hrefs | |
# calls through this proxy. | |
# | |
# This is meant to be used in a virtualenv with pip installed packages: | |
# tornado beautifulsoup4 requests lxml | |
# Note: the proxy terminal output will display errors related to | |
# urllib3 and SSL unless python >= 2.7.9 is used | |
# |
This file contains 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 bash | |
######################################################################## | |
# Author: Joseph Nix nixjdm@terminallabs.com 6-18-2015 | |
# Copyright (c) 2015 Terminal Labs | |
# Distributed under the MIT License. | |
# (See http://opensource.org/licenses/MIT) | |
# | |
# This tests the average page load time for a given url. It can be set | |
# to run any number of tests, and then will average the results. | |
# |