Skip to content

Instantly share code, notes, and snippets.

@citygent
citygent / restful_routes.md
Last active September 2, 2015 09:07 — forked from jemboh/restful_routes.md
7 Restful Routes
URL HTTP Verb Action
/photos/ GET index
/photos/new GET new
/photos POST create
/photos/:id GET show
/photos/:id/edit GET edit
/photos/:id PATCH/PUT update
/photos/:id DELETE destroy
@citygent
citygent / fade_in_backgroun_image
Last active September 2, 2015 09:11 — forked from alexpchin/fade_in_backgroun_image
Fade in background image
// HTML
<div class="background-image"></div>
// CSS
@-webkit-keyframes fade-in {
0% { opacity: 0; }
100% { opacity: 1; }
}
.background-image {