Skip to content

Instantly share code, notes, and snippets.

View itsluke's full-sized avatar

Luke itsluke

View GitHub Profile
### Keybase proof
I hereby claim:
* I am itsluke on github.
* I am itsluke (https://keybase.io/itsluke) on keybase.
* I have a public key whose fingerprint is A38C D87C 01A7 1E2E B070 4DEB E275 56EA E94A E666
To claim this, I am signing this object:
//
// jquery.selectBoxIt.css 3.8.1
// Author: @gregfranko
// SassMonkey: @itsluke
//
//
// Common CSS Properties
// ---------------------
// These properties will be applied to any themes that you use
function dance()
config='
# Gems
w%{ rubygems bundler/setup sinatra haml pry json net/http}.each {|req| require req }
configure do
end
require "./app"
run App
'
@itsluke
itsluke / New Rails Project
Created January 12, 2014 10:46
Make a quick rails project in haml, bash function
function newrailsproject() {
rails new $1 -d mysql
cd $1
rm public/index.html
rm Gemfile
rm app/views/layout/application.html.erb
cp $HOME/code/rails/template/template_Gemfile Gemfile
bundle install
echo "\n ****** project created \n"
rails g nifty:layout --haml