Skip to content

Instantly share code, notes, and snippets.

View arnaudmolo's full-sized avatar

Arnaud Pichon arnaudmolo

View GitHub Profile
const fs = require('fs')
const path = require('path')
const exec = require('child_process').exec
const standardConfig = {
standard: {
parser: 'babel-eslint',
ignore: [
'*.test.js',
'/build',
git branch --merged | grep -v "\*" | grep -v master | grep -v dev | xargs -n 1 git branch -d
import React from 'react';
export default React.createClass({
animate(nextProps) {
const transition = d3
.select(this.getDOMNode())
.transition()
.duration(500);
/**
* Chunkify
* Google Chrome Speech Synthesis Chunking Pattern
* Fixes inconsistencies with speaking long texts in speechUtterance objects
* Licensed under the MIT License
*
* Peter Woolley and Brett Zamir
*/
var speechUtteranceChunker = function (utt, settings, callback) {