Varela Round (used for Endpoints logo) https://www.google.com/fonts/specimen/Varela+Round
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Untitled Works in the MoMA Collection</title> | |
<script type="text/javascript" src="http://d3js.org/d3.v3.js"></script> | |
</head> | |
<body> | |
<h2>MoMA Acquisition History for Untitled Works</h2> | |
<p><em>Total quantity of untitled works<sup>*</sup> acquired by the Museum of Modern Art in each calendar year between 1935 and 2015</em></p> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Untitled Works in the MoMA Collection</title> | |
<script type="text/javascript" src="http://d3js.org/d3.v3.js"></script> | |
</head> | |
<body> | |
<svg width="540" height="520"> | |
<style type="text/css"> |
This file contains hidden or 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
'use strict'; | |
var fs = require( 'fs' ); | |
var csv = require( 'csv' ); | |
var _ = require( 'lodash' ); | |
var parser = csv.parse({ | |
auto_parse: true, | |
skip_empty_lines: true, | |
columns: true, // auto-discover column headers |
This file contains hidden or 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
{ | |
"scripts": { | |
"jscs:branch": "jscs $(git diff --name-only --diff-filter=ACMRTUXB $(git merge-base head master) | grep '.js$') || true", | |
"jshint:branch": "jshint $(git diff --name-only --diff-filter=ACMRTUXB $(git merge-base head master) | grep '.js$') || true", | |
"jscs:diff": "jscs $(git diff --name-only --diff-filter=ACMRTUXB | grep '.js$') || true", | |
"jshint:diff": "jshint $(git diff --name-only --diff-filter=ACMRTUXB | grep '.js$') || true", | |
"jscs:prev": "jscs $(git diff head~1 --name-only --diff-filter=ACMRTUXB | grep '.js$') || true", | |
"jshint:prev": "jshint $(git diff head~1 --name-only --diff-filter=ACMRTUXB | grep '.js$') || true" | |
} | |
} |
This file contains hidden or 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
:cuttlefish: | |
:hotdog: | |
:shark: |
This file contains hidden or 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
function isWithin( className, node ) { | |
// Strip off leading period: classList api doesn't use CSS selectors | |
className = className.replace( /^\./, '' ); | |
// If we're all the way up the tree and haven't found a match, stop | |
if ( ! node.parentNode || node.parentNode.tagName === 'BODY' ) { | |
return false; | |
} | |
// If we've found a match, return true |
This file contains hidden or 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
Johann Sebastian Bach (31 March [O.S. 21 March] 1685 – 28 July 1750) was | |
a German composer and musician of the Baroque period. He enriched established | |
German styles through his skill in counterpoint, harmonic and motivic | |
organisation, and the adaptation of rhythms, forms, and textures from abroad, | |
particularly from Italy and France. Bach's compositions include the Brandenburg | |
Concertos, the Goldberg Variations, the Mass in B minor, two Passions, and over | |
three hundred sacred cantatas of which nearly two hundred survive. His music | |
is revered for its technical command, artistic beauty, and intellectual depth. | |
http://en.wikipedia.org/wiki/Johann_Sebastian_Bach |
This file contains hidden or 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 diff = require('child_process').spawn('git', [ | |
'diff', | |
'--name-only' | |
]); | |
diff.stdout.on('data', function (data) { | |
var files = data.toString().split('\n').filter(function(val) { | |
// Filter out "" | |
return val; | |
}); |
for q1, I've seen plugins that support eg
taskname: {
options: {
some: 'opts'
},
target1: {
src: []