Project Title
One Paragraph of project description goes here
Overview
Top 5 things about this project
- List of them
git fetch origin | |
git rebase origin/master | |
git status | |
git add . | |
git status | |
git rebase --continue | |
git status | |
git add . | |
git status | |
git rebase --continue |
One Paragraph of project description goes here
Top 5 things about this project
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:PutObject", | |
"s3:CreateMultipartUpload", | |
"s3:AbortMultipartUpload" |
/Applications/IntelliJ\ IDEA.app/Contents/MacOS/idea |
type Callback = () => void; | |
export function describe(description: string, callback: Callback); | |
export function it(description: string, callback: Callback); |
#!/bin/bash | |
# Adapted from... | |
# https://stackoverflow.com/questions/26423515/how-to-automatically-update-your-docker-containers-if-base-images-are-updated | |
DATAPATH='./data/docker/updater/data' | |
UNAME="<DOCKER_HUB_USERNAME>" | |
UPASS="<DOCKER_HUB_PASSWORD>" |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Action": [ | |
"iam:CreateRole", | |
"iam:CreatePolicy", | |
"iam:AttachRolePolicy", | |
"iam:PassRole", | |
"lambda:GetFunction", |
{ | |
"AWSTemplateFormatVersion": "2010-09-09", | |
"Description": "AWS CloudFormation sample template that contains a single Lambda function behind an API Gateway", | |
"Resources": { | |
"GreetingLambda": { | |
"Type": "AWS::Lambda::Function", | |
"Properties": { |
var _ = require( 'lodash' ); | |
module.exports = function ( html ) { | |
var anyInlineCssTag = new RegExp( '<style type="text/css">[^<]*</style>', 'g' ); | |
var matches = html.match( anyInlineCssTag ); | |
_.uniq( matches ).forEach( function( styleTag ) { |
#!/bin/bash | |
# Create a temp file that runs install instructions on the host | |
cat > finish-code-deploy.sh <<- EOM | |
rm -fr tweetgest.com | |
mkdir tweetgest.com | |
unzip code-to-deploy.zip -d tweetgest.com | |
EOM | |
# Zip up and deploy the code and the install script |