Skip to content

Instantly share code, notes, and snippets.

View jeremedia's full-sized avatar

Jeremy Roush jeremedia

View GitHub Profile
@unakatsuo
unakatsuo / gist:5909894
Created July 2, 2013 14:44
force rvm to compile binary from source. (with favorite cc options)

command line example:

% CFLAGS="-O0 -g" rvm install 2.0.0  --disable-binary
@TXDynamics
TXDynamics / rails-scaffold-existing-model
Created June 10, 2013 21:30
Ruby Rails: Create Scaffold from Existing Model
rails g scaffold_controller Model
@adamwiggins
adamwiggins / adams-heroku-values.md
Last active November 27, 2024 17:06
My Heroku values

Make it real

Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.

Ship it

Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.

Do it with style

# proxying through apache to a local rails instance, http & https
# apache *.conf file
<VirtualHost *:80>
ServerName psl.localhost
ServerAlias cms.psl.localhost
ServerAlias *.psl.localhost
ProxyPass / http://localhost:3000/
ProxyPassReverse / http://localhost:3000/