A one paragraph description about the container.
These instructions will cover usage information and for the docker container
A Trello board is a software equivalent of a physical wall with columns of sticky notes. In Trello terminology, the wall is called a "board." The columns are called "lists." The sticky notes in columns are called "cards."
No two products are the same, so flexibility in the product management process is important. Trello responds well to changing the structure of the process "on the fly."
#!/bin/bash -e | |
# Wrapper for the toggle_alfred_theme.py script at | |
# https://gist.github.com/deanishe/ce442c3a768adedc9c39 | |
# (where this script also comes from) | |
# | |
# The purpose of this wrapper is to enable you to update the Python script | |
# without having to edit the script to change the settings each time. You keep | |
# them in here instead, and this script should hopefully prove dumb enough | |
# to require little updating... |
#!/bin/bash | |
#/ Usage: bin/strap.sh [--debug] | |
#/ Install development dependencies on Mac OS X. | |
set -e | |
# Keep sudo timestamp updated while Strap is running. | |
if [ "$1" = "--sudo-wait" ]; then | |
while true; do | |
mkdir -p "/var/db/sudo/$SUDO_USER" | |
touch "/var/db/sudo/$SUDO_USER" |
#!/usr/bin/python | |
# encoding: utf-8 | |
# Based off the script from https://gist.github.com/Paaskehare/3949299 | |
# @author: Ash Ramesh (27/10/2016) | |
import cookielib | |
import urllib | |
import urllib2 | |
import re |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: nginx-ingress | |
spec: | |
loadBalancerIP: xxxxxxx | |
type: LoadBalancer | |
ports: | |
# - port: 80 | |
# name: http |
#!/usr/bin/env bash | |
set -eo pipefail | |
DATE=$(date +%Y%m%d-%H%M%S) | |
GROUP_NAME="buildkite-agent" | |
TEMPLATE_NAME="${GROUP_NAME}-${DATE}" | |
# Builder Group | |
gcloud compute instance-templates create "${TEMPLATE_NAME}-builder" \ |
// This script will remove all Interests and Advertisers from your Facebook profile | |
// | |
// Instructions | |
// | |
// Go to: https://www.facebook.com/ads/preferences/ | |
// | |
// Open the browser console | |
// | |
// Paste the following code into the console and execute it |
aws_ecr_curl() { | |
login_cmd=$(aws ecr get-login) | |
username=$(echo "$login_cmd" | cut -d " " -f 4) | |
password=$(echo "$login_cmd" | cut -d " " -f 6) | |
endpoint=$(echo "$login_cmd" | cut -d " " -f 9) | |
args=("$@") | |
args_length=${#args[@]} | |
args_last=${args[$args_length-1]} | |
unset 'args[${args_length}-1]' |