I hereby claim:
- I am richardnbanks on github.
- I am richardnbanks (https://keybase.io/richardnbanks) on keybase.
- I have a public key ASAFPXqz6mQAdRpz1GCr8VQiXJTAmc8h9g86op0n6JPciQo
To claim this, I am signing this object:
#!/bin/bash | |
# | |
# This script requires xpath to parse part of the dnscurl.pl output | |
# on CentOS/RedHat/Amazon Linux: | |
# | |
# sudo yum install perl-XML-XPath | |
# | |
# also, dnscurl.pl (from http://aws.amazon.com/code/Amazon-Route-53/9706686376855511) | |
# expects your secrets to be in ~/.aws-secrets | |
# using a file format like this (from http://dmz.us/wp/wp-content/uploads/r53/aws-secrets.txt) |
#!/bin/bash | |
# Get working dir | |
WORKING_DIR="${PWD}" | |
while [[ $WORKING_DIR != / && $WORKING_DIR != "" ]] ; do | |
if [ -e "$WORKING_DIR/.cf-sketch" ] ; then | |
DC_ROOT=$WORKING_DIR | |
break | |
else |
I hereby claim:
To claim this, I am signing this object:
from __future__ import print_function | |
import json, urllib, urllib2 | |
def send_slack(message): | |
""" | |
Send Slack Message to Deployments Channel | |
""" | |
slack_token = '' | |
slack_channel = '' | |
slack_user = 'Deployment Bot' |
<?php | |
require __DIR__ . '/vendor/autoload.php'; | |
// composer require league/iso3166 | |
$countries = []; | |
foreach ((new League\ISO3166\ISO3166)->all() as $country) { | |
$countries[$country['alpha2']] = $country['name']; | |
} |