Skip to content

Instantly share code, notes, and snippets.

@constellationsoftware
constellationsoftware / gist:2373822
Created April 13, 2012 04:59 — forked from Vaguery/gist:2372617
Followup notes from my CleRB talk, 4/12/12
workshop I'm thinking of giving, if folks are interested; note it's not the usual GP workshop:
http://williamtozier.com/slurry/2011/10/21/the-mirror-dojo
very nice Java ("classic" style) GP libraries:
http://cs.gmu.edu/~eclab/projects/ecj/
Good-ish recent GP overview book (free):
http://www.gp-field-guide.org.uk/
NetLogo demo I showed of GP with turtle graphics:
@carlosantoniodasilva
carlosantoniodasilva / post-receive
Created February 9, 2011 01:28
Basic git post-receive hook file to deploy a Rails app.
#!/bin/bash
APP_NAME="your-app-name-goes-here"
APP_PATH=/home/deploy/${APP_NAME}
# Production environment
export RAILS_ENV="production"
# This loads RVM into a shell session. Uncomment if you're using RVM system wide.
# [[ -s "/usr/local/lib/rvm" ]] && . "/usr/local/lib/rvm"