- Install Ruby dev
$ sudo apt-get install ruby-dev
- Install dependencies
[libs] | |
./node_modules/fbjs/flow/lib | |
[options] | |
esproposal.class_static_fields=enable | |
esproposal.class_instance_fields=enable | |
module.name_mapper='^\(.*\)\.css$' -> 'react-scripts/config/flow/css' | |
module.name_mapper='^\(.*\)\.\(jpg\|png\|gif\|eot\|otf\|webp\|svg\|ttf\|woff\|woff2\|mp4\|webm\)$' -> 'react-scripts/config/flow/file' |
Hi Nicholas,
I saw you tweet about JSX yesterday. It seemed like the discussion devolved pretty quickly but I wanted to share our experience over the last year. I understand your concerns. I've made similar remarks about JSX. When we started using it Planning Center, I lead the charge to write React without it. I don't imagine I'd have much to say that you haven't considered but, if it's helpful, here's a pattern that changed my opinion:
The idea that "React is the V in MVC" is disingenuous. It's a good pitch but, for many of us, it feels like in invitation to repeat our history of coupled views. In practice, React is the V and the C. Dan Abramov describes the division as Smart and Dumb Components. At our office, we call them stateless and container components (view-controllers if we're Flux). The idea is pretty simple: components can'
const request = require('request-promise-native'); | |
const co = require('co'); | |
const getWebPage = co.wrap(function * (url) { | |
let body; | |
try { | |
body = yield request({ | |
uri: url, | |
method: 'GET' |
var fs = require('fs'), | |
request = require('request'); | |
function (url, path, callback) { | |
request({uri: url}) | |
.pipe(fs.createWriteStream(path)) | |
.on('close', function() { | |
callback(); | |
}); |
import os | |
DATADIR = "" | |
DATAFILE = "beatles-diskography.csv" | |
SEPARATOR = "," | |
def parse_file(datafile): | |
data = [] | |
header= [] | |
with open(datafile, "rb") as f: |
$ git submodule update --init --recursive
# mv /etc/localtime /etc/localtime.bak
# ln -s /usr/share/zoneinfo/UTC /etc/localtime
plotOptions: { | |
series: { | |
events: { | |
legendItemClick: function(event) { | |
var seriesIndex = this.index; | |
var series = this.chart.series; | |
for (var i = 0; i < series.length; i++) { | |
if (series[i].index !== seriesIndex) { | |
series[i].hide(); | |
} |