Skip to content

Instantly share code, notes, and snippets.

View colbell's full-sized avatar

Colin Bell colbell

View GitHub Profile
@colbell
colbell / aws-ssl-termination-digicert.md
Created January 18, 2016 21:16 — forked from marcuswestin/aws-ssl-termination-digicert.md
How to set up an AWS SSL terminating Elastic Load Balancer with a Digicert certificate

1: Generate CSR

openssl req -new -newkey rsa:2048 -nodes -keyout server-cert.key -out server-cert-sign-req.csr

# Country Name (2 letter code) [AU]:US
# State or Province Name (full name) [Some-State]:California
# Locality Name (eg, city) []:
# Organization Name (eg, company) [Internet Widgits Pty Ltd]:Flutterby Labs, Inc.
# Organizational Unit Name (eg, section) []:
# Common Name (eg, YOUR name) []:www.dogo.co
@colbell
colbell / anything.el
Created August 9, 2010 05:01
Some anything wonderfulness for Emacs
;; Some anything wonderfulness for Emacs
;; See http://www.emacswiki.org/emacs/Anything
(global-set-key (kbd "C-x b") 'anything-mini)
(global-set-key (kbd "C-x f") 'anything-recentf)
(global-set-key (kbd "C-x C-i") 'anything-imenu)
@colbell
colbell / gist:219327
Created October 27, 2009 04:45
Useful Git alias
# Useful Git alias, found somewhere on the Internet
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative