We build a Rails application together that let's us dig deeper into Rails.
- Syllabus
- The instructor, Matt Mongeau, can be found at @halogenandtoast or halogenandtoast
| // Assumes Bourbon - See http://bourbon.io/docs/#transform | |
| // To see it in action, check out http://codepen.io/dwayne/pen/gjDGx | |
| @mixin vertical-center { | |
| position: relative; | |
| top: 50%; | |
| @include transform(translateY(-50%)); | |
| } |
We build a Rails application together that let's us dig deeper into Rails.
A list of resources (tutorials, articles and courses) I've collected for leveling up my skills in HTML5 & CSS3.
https://tutsplus.com/course/how-to-build-a-hypermedia-driven-rest-api/ by @rhodesjason
In this video series we’ll walk through building a simple REST API with node.js and express. By focusing on nouns, verbs, and relationships, you'll also finish with a clear understanding of what hypermedia is all about and how emerging hypermedia-driven API standards can make all of our lives as developers a little easier. ~ Jason Rhodes
| // http://css-tricks.com/snippets/css/exactly-center-an-imagediv-horizontally-and-vertically/ | |
| @mixin exact-center($width, $height) { | |
| width: $width; | |
| height: $height; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| margin-left: -$width / 2; | |
| margin-top: -$height / 2; | |
| } |
Author: Ari Lerner.
AngularJS offers a single framework that can be used to build dynamic, client-centric applications. It provides: