Skip to content

Instantly share code, notes, and snippets.

View nateware's full-sized avatar

Nate Wiger nateware

View GitHub Profile
@nateware
nateware / gist:3997958
Created November 2, 2012 00:53
Cheat sheet to create auto-scaling group behind ELB
  1. Create the appropriate VPC that your application is going to live in. Create subnets for each availability zone you want to use.

  2. Create VPC security group(s) for your auto-scaling instances. For example, if you're going to auto-scale web servers, create a "web" VPC security group.

  3. Go into AWS console and create an ELB. Easy wizard. Select HTTP and (if needed) HTTPS. Make sure it's associated with the VPC you created in step 1.

  4. Create an auto-scaling launch configuration from the CLI. The launch configuration has the AMI, size, and security group from step #2. The security group must be by ID not name ("sg-12345"):

       as-create-launch-config web --image-id ami-2e31bf1e --instance-type m1.medium \
    

-g sg-7619041a --key root

@nateware
nateware / nginx.conf
Last active November 23, 2021 10:54
Nginx sample config for EC2
#
# Sample nginx.conf optimized for EC2 c1.medium to xlarge instances.
# Also look at the haproxy.conf file for how the backend is balanced.
#
user "nginx" "nginx";
worker_processes 10;
error_log /var/log/nginx_error.log info;
@nateware
nateware / haproxy.conf
Created October 31, 2012 15:36
HAProxy sample config for EC2
#
# This config file is a combination of ideas from:
# http://www.37signals.com/svn/posts/1073-nuts-bolts-haproxy
# http://www.igvita.com/2008/05/13/load-balancing-qos-with-haproxy/
# http://wiki.railsmachine.com/HAProxy
# http://elwoodicious.com/2008/07/15/nginx-haproxy-thin-fastcgi-php5-load-balanced-rails-with-php-support/
# http://upstream-berlin.com/2008/01/09/using-haproxy-with-multiple-backends-aka-content-switching/
# http://wiki.railsmachine.com/HAProxy
# http://gist.github.com/raw/25482/d39fb332edf977602c183194a1cf5e9a0b5264f9
#
@nateware
nateware / gist:3955947
Created October 25, 2012 22:47
S3 file hashing scheme for linear distribution
#!/bin/sh
# Get crazy throughput if you do this (>5000 puts/sec)
#
# What some customers have done is something like this: say this is the filename:
#
# mybucket/17476/26466/16.png
#
# Then to get the hash do something that seems silly but works great (pretty
# much any two characters from the hash will work):
#
@nateware
nateware / gist:3939891
Created October 23, 2012 16:27
Setup Mac gvim with tpope's vim bundles
mkdir -p ~/.vim/autoload ~/.vim/bundle
curl -Sso ~/.vim/autoload/pathogen.vim https://raw.github.com/tpope/vim-pathogen/master/autoload/pathogen.vim
cd ~/.vim/bundle
git clone git://github.com/tpope/vim-fugitive.git
git clone git://github.com/tpope/vim-rails.git
git clone git://github.com/tpope/vim-bundler.git
git clone git://github.com/tpope/vim-markdown.git
git clone git://github.com/tpope/vim-endwise.git
git clone git://github.com/tpope/vim-git.git
@nateware
nateware / gist:3915757
Created October 19, 2012 01:27
Start Mac VNC server from command line
# Step 1: Set priveleges
$ sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -allowAccessFor -allUsers -privs -all
Starting...
Setting allow all users to YES.
Setting all users privileges to 1073742079.
Done.
# Step 2: Allow VNC clients
@nateware
nateware / mini_record_syntax.rb
Created September 26, 2011 19:23
Proposed syntax for mini_record
class Contact < ActiveRecord::Base
col :name, :type => String, :null => false
col :contact_type_id, :type => Integer, :null => false
col :address, :type => String, :limit => 1000
col :city, :type => String
col :state, :type => String, :limit => 40
col :zip, :type => String, :limit => 20
col :phone, :type => String, :limit => 20
col :email, :type => String, :limit => 100
end
@nateware
nateware / migrate.rb
Created September 23, 2011 23:25
Task for Rakefile to hook into mini_record
# For Sinatra, put this a the top-level Rakefile directly:
namespace :db do
desc "Use model properties to auto-migrate"
task :automigrate => :environment do
Dir[File.expand_path 'app/models/**.rb', File.dirname(__FILE__)].each do |model|
require model
klass = File.basename(model.sub(/\.rb$/,'')).classify.constantize
puts "== Migrating #{klass.name}"
klass.auto_upgrade!
end
@nateware
nateware / create_vs_insert.rb
Created May 24, 2010 16:20
Sequel create vs insert benchmark
#!/usr/bin/env ruby
require 'sequel'
require 'logger'
require 'benchmark'
STDOUT.sync = true
DB = Sequel.mysql 'seqtest', :user => 'root', :password => 'secret'#, :logger => Logger.new(STDOUT)
Sequel::Model.plugin :schema
# Ruby 1.9 compat for FasterCSV (painful)
# http://matthewbass.com/2008/01/05/csv-transmogrifies-into-fastercsv-in-ruby-19/
require 'csv'
if CSV.const_defined? :Reader
require 'faster_csv' # For CSV data files
else
FasterCSV = CSV
end
namespace :db do