Skip to content

Instantly share code, notes, and snippets.

View digitalknk's full-sized avatar

Jon Molina digitalknk

View GitHub Profile
@axelav
axelav / gist:1839777
Created February 15, 2012 22:51 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@spicycode
spicycode / tmux.conf
Created September 20, 2011 16:43
The best and greatest tmux.conf ever
# 0 is too far from ` ;)
set -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-option -g set-titles on
#set -g default-terminal screen-256color
set -g status-keys vi
set -g history-limit 10000
@woodie
woodie / Gemfile .rb
Created September 18, 2010 21:42
Rails 3.0 on GAE
# Gemfile for Rails 3.0
source 'http://rubygems.org'
gem 'rails', '3.0.0'
gem 'activerecord-nulldb-adapter' # for now
gem 'jruby-openssl' # for cookie sessions
gem 'appengine-rack' # jruby-jars & jruby-rack
@woodie
woodie / README.rdoc
Created September 5, 2010 12:29
Rails 2.3.9 on App Engine with DataMapper

Rails 2.3.9 on App Engine (DataMapper)

Do not use rvm (or install and run from JRuby). The google-appengine gem must install into your system MRI. The appengine-sdk gem includes a complete Java app server. We bootstrap Java from MRI, then your app runs inside a servlet container (with access to all the APIs) using the version of JRuby installed into each app.

We assumed Rails 2 would never work without rubygems, and we committed to gem bunlder for JRuby on App Engine, so we were waiting for Rails 3. Fortunately, Takeru Sasaki was able to patch the Rails 2.3.x calls to rubygems, and now we have it working. Rails 2.3.x currently spins up several seconds faster than Rails 3, and just a few seconds behind Sinatra.

See the TInyDS version also: gist.github.com/gists/269075

Install the Development Environment