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
from selenium import webdriver | |
from selenium.webdriver.chrome.options import Options | |
chrome_options = Options() | |
chrome_options.add_argument("--noerrdialogs") | |
chrome_options.add_argument("--disable-infobars") | |
chrome_options.add_argument("--kiosk") | |
chrome_options.add_argument("--start-maximized") | |
chrome_options.accept_untrusted_certs = True | |
chrome_options.assume_untrusted_cert_issuer = True |
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
sudo yum -y update | |
sudo yum -y localinstall https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-6-x86_64/pgdg-ami201503-96-9.6-2.noarch.rpm | |
sudo yum -y install postgresql96 postgresql96-server | |
sudo su - postgres -c "/usr/pgsql-9.6/bin/initdb" | |
sudo service postgresql-9.6 start | |
curl https://install.citusdata.com/community/rpm.sh | sudo bash | |
sudo yum install -y pg_cron_96 | |
sudo -u postgres echo "shared_preload_libraries = 'pg_cron'" >> /var/lib/pgsql/9.6/data/postgresql.conf |
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
# ChangeInterface/Facade.py | |
class A: | |
def __init__(self, x): pass | |
class B: | |
def __init__(self, x): pass | |
class C: | |
def __init__(self, x): pass | |
# Other classes that aren't exposed by the | |
# facade go here ... |
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 ruby | |
require 'optparse' | |
require 'nokogiri' | |
# This will hold the options we parse | |
options = {} | |
# Build command line parser | |
OptionParser.new do |p| | |
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
#!/bin/bash | |
set -e | |
exec bash -c \ | |
"exec /usr/local/sbin/varnishd -F \ | |
-a :80 \ | |
-a :6443 \ | |
-S /etc/varnish/secret \ | |
-f /etc/varnish/default.vcl \ |
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
vcl 4.0; | |
# Default backend definition. Set this to point to your content server. | |
backend default { | |
.host = "wordpress"; | |
.port = "80"; | |
} | |
acl edgecache { | |
"172.31.12.197"; |
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
# A basic setup for the edge | |
# Strips cookies and un-needed params | |
# Does a few redirects | |
# Sets forwarded proxy headers | |
# Custom error page | |
vcl 4.0; | |
import std; | |
# Backend setup | |
backend default { |
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
<?php | |
/** | |
* Message object class used to control when messages are output | |
* @package Brilliantcoding | |
*/ | |
/** | |
* Message Class | |
*/ |
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
FROM alpine:3.3 | |
MAINTAINER Matthew Jackowski <[email protected]> | |
# Update and install all of the required packages. | |
# At the end, remove the apk cache | |
RUN apk update && \ | |
apk upgrade && \ | |
apk add bash curl-dev ruby-dev build-base && \ | |
apk add ruby ruby-io-console ruby-bundler && \ | |
rm -rf /var/cache/apk/* |
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
# A heavily customized VCL to support WordPress | |
# Some items of note: | |
# Supports https | |
# Supports admin cookies for wp-admin | |
# Caches everything | |
# Support for custom error html page | |
vcl 4.0; | |
import directors; | |
import std; |
NewerOlder