- 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
- Compass - Open source CSS Authoring Framework.
- Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
- Font Awesome - The iconic font designed for Bootstrap.
- Zurb Foundation - Framework for writing responsive web sites.
- SASS - CSS extension language which allows variables, mixins and rules nesting.
- Skeleton - Boilerplate for responsive, mobile-friendly development.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Term: schools.address.state | |
* | |
* Stores the state abbreviation for a school's location. | |
*/ | |
module.exports = { | |
table: 'school', // Entity table in DB | |
// `?state=tx` is supported (or would throw) here | |
filter: function(qb, value) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default { | |
... | |
resolve: { | |
root: [ | |
path.join(process.cwd(), "lib"), | |
], | |
}, | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class HappyFactory { | |
constructor(message) { | |
return Promise.resolve(`${message} there!`); | |
} | |
} | |
new HappyFactory("Howdy").then(::console.log); | |
// "Howdy there!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var _ = require("lodash"); | |
var path = require("path"); | |
var env = process.env.NODE_ENV || "development"; | |
var debug = ["development", "test"].indexOf(env) !== -1; | |
var defaults = { | |
cache: debug, | |
debug: debug, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ecmaFeatures": { | |
"arrowFunctions": true, | |
"binaryLiterals": false, | |
"blockBindings": true, | |
"classes": true, | |
"defaultParams": true, | |
"destructuring": true, | |
"forOf": false, | |
"generators": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import assign from "object-assign"; | |
import Flux from "flummox"; | |
import React from "react"; | |
export default React.createClass({ | |
displayName: "FluxContainer", | |
contextTypes: { | |
flux: React.PropTypes.instanceOf(Flux), | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @jsx React.DOM | |
*/ | |
var React = require('react'); | |
var Router = require('react-router'); | |
var Routes = Router.Routes; | |
var Route = Router.Route; | |
var DefaultRoute = Router.DefaultRoute; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04 | |
ENV DEBIAN_FRONTEND noninteractive | |
ENV HOME /root | |
RUN apt-get -qq -y update | |
RUN apt-get -qq -y install software-properties-common | |
RUN apt-add-repository -y ppa:ansible/ansible | |
RUN apt-get -qq -y update | |
RUN apt-get -qq -y install ansible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'); | |
var jstransform = require('jstransform'); | |
var path = require('path'); | |
var js = require.extensions['.js']; | |
module.exports = function(visitors) { | |
visitors = visitors.reduce(function(visitors, visitor) { | |
return visitors.concat(visitor.visitorList); | |
}, []); |