Skip to content

Instantly share code, notes, and snippets.

View vishnun's full-sized avatar

Vishnu Narang vishnun

View GitHub Profile
@vishnun
vishnun / index.md
Created October 25, 2013 09:02 — forked from rstacruz/index.md

Rails Models

Generating models

$ rails g model User

Associations

belongs_to

has_one

@vishnun
vishnun / dabblet.css
Created October 24, 2012 07:02
Checkbox Hack
/* Checkbox Hack */
input[type=checkbox] {
position: absolute;
top: -9999px;
left: -9999px;
}
label {
-webkit-appearance: push-button;
-moz-appearance: button;