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 bs4 import BeautifulSoup | |
import requests | |
import mechanize | |
import time | |
import logging | |
import logging.handlers | |
logger = logging.getLogger('Alexa') | |
debug_level = True | |
# debug_level = False |
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
// Flora_Pac by @leaskh | |
// www.leaskh.com, [email protected] | |
function FindProxyForURL(url, host) { | |
var proxy = 'HTTPS 54.238.90.55:443; '; | |
var cdcib_proxy = 'DIRECT '; | |
if (shExpMatch(url, "*.trendmicro.com/*")) | |
return "DIRECT"; | |
var list = [ |
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
wget https://opscode-omnibus-packages.s3.amazonaws.com/el/6/x86_64/chef-server-11.0.8-1.el6.x86_64.rpm |