Skip to content

Instantly share code, notes, and snippets.

View cliffom's full-sized avatar

Michael Clifford cliffom

View GitHub Profile
@patmigliaccio
patmigliaccio / install-cf-gae-ssl.md
Last active March 25, 2024 18:01
Configuring Cloudflare SSL/TLS certificates on Google App Engine

Configuring Cloudflare SSL/TLS on Google App Engine

Implementing end-to-end HTTPS encryption with CloudFlare for Google App Engine applications.

Google App Engine - Custom Domains

Add Domains

Register the root domain with Google Cloud Platform at the following:

@ishu3101
ishu3101 / reset-wsl.sh
Created July 22, 2016 23:38
Resetting your Windows Subsystem for Linux (WSL) Environment
# Resetting your Windows Subsystem for Linux (WSL) Environment
lxrun.exe /uninstall /full
lxrun.exe /install
@saada
saada / docker-cloud-sync-redeploy.sh
Last active February 22, 2017 23:10
Redeploy stack in Docker Cloud synchronously. Great for redeploying in Jenkins and other build systems and provides relevant output.
#!/bin/bash
#############################################################
# This script depends on docker.
# simply run ./docker-cloud-sync-redeploy.sh <stack name>
#############################################################
set -e
STATE_RUNNING='Running'
STATE_NOT_RUNNING='Not running'
STATE_STARTING='Starting'
@lalyos
lalyos / build-rpi-alpine.md
Last active July 12, 2017 08:22
Build alpine docker image for raspberry pi

There is no official alpine Docker image for the arm platform. The onec i found are not taking advantage of the much quicker Fastly CDN basedpackage mirror option

build

Here are steps to rebuild the images on a rpi:

git clone https://github.com/gliderlabs/docker-alpine.git docker-alpine-gliderlabs
cd docker-alpine-gliderlabs/
@jeresig
jeresig / .vimrc
Created May 4, 2011 16:46
VIM Config
au BufRead,BufNewFile jquery.*.js set ft=javascript syntax=jquery
set nocompatible
set autoindent
set tabstop=2
set showmatch
set vb t_vb=
set ruler
set nohls
set incsearch
syntax on