Skip to content

Instantly share code, notes, and snippets.

New Developer Setup
READING
You can find the old wiki dump, of which some of these pages are based off of, attached as a pdf at the bottom of this page.
[new dev pages start around pg 170, additional tips at the end of the pdf... some info is outdated, so look here first]
The Pragmatic Programmers have a few solid books that are considered essential reading within the ruby community:
Programming Ruby 1.9 "The Pickaxe Book" (we aren't using 1.9 yet but moving our code from 1.8 to 1.9 is a priority) [ http://pragprog.com/titles/ruby3/programming-ruby-1-9 ]
Agile Web Dev w/ Rails 4.0 (in beta right now & covers Rails 3.0 exclusively, which we aren't on. The 3rd ed. is recommended for now.)
@miyamoto-daisuke
miyamoto-daisuke / bgd-php.template
Created March 14, 2014 09:35
AWS CloudFormation tempate for PHP Blue-Green Deployment environment
{
"AWSTemplateFormatVersion" : "2010-09-09",
"Description" : "PHP Blue-Green Deployment environment template",
"Parameters" : {
"KeyName" : {
"Description" : "Name of an existing EC2 KeyPair to enable SSH access to the instances",
"Type" : "String",
"MinLength" : "1",
"MaxLength" : "64",
"AllowedPattern" : "[-_ a-zA-Z0-9]*",