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
| $('#container').highcharts({ | |
| chart: { | |
| alignTicks: true, // When using multiple axis, the ticks of two or more opposite axes will automatically be aligned by adding ticks to the axis or axes with the least ticks. | |
| animation: true, // Set the overall animation for all chart updating. Animation can be disabled throughout the chart by setting it to false here. | |
| backgroundColor: '#FFF', // The background color or gradient for the outer chart area. | |
| borderColor: '#4572A7', // The color of the outer chart border. | |
| borderRadius: 5, // The corner radius of the outer chart border. In export, the radius defaults to 0. Defaults to 5. | |
| borderWidth: 0, // The pixel width of the outer chart border. | |
| className: null, // A CSS class name to apply to the charts container div, allowing unique CSS styling for each chart. | |
| defaultSeriesType: 'line', // Alias of type. |
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
| // <script src="angular.min.js"></script> | |
| (function(name, factory) { | |
| // our basic IO module system that stores every module on modules with the "file" namespace | |
| // please use something like browserify rather than rolling your own like this | |
| window.modules = window.modules || {}; | |
| window.require = window.require || function require(name) { return window.modules[name] || window[name]; }; | |
| var exports = {}; factory(exports, window.require); | |
| window.modules[name] = exports; | |
| }('TodoService', function(exports, require) { |
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
| import Alt from './' | |
| // the magic sauce | |
| import { createTransform } from './utils/frp' | |
| // decorator utilities | |
| import { createStore, bind } from './utils/decorators' | |
| const alt = new Alt() |
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
| from sklearn.externals import joblib | |
| import time | |
| import numpy | |
| import pickle | |
| bigarray = numpy.zeros([190,91,190]) | |
| bigarray = bigarray.flatten() | |
| ### Saving |
Note: This is the first time we're sharing meeting notes publicly. The primary reason we haven't shared these is because we often mix public discussions with matters that are Facebook specific and should not be public. We're really trying to be more open about our development process and what's happening inside the project so moving forward, we'll be sharing meeting notes. While most of us do work at Facebook, we're committed to this being an open project - for now we'll filter out the private notes from the public notes. Hopefully we can make it possible for these meetings to be open to any who wish to attend.
Attendees:
- @zpao
- @sebmarkbage
- @spicyj
- @jeffmo
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 browserSync = require('browser-sync'), | |
| common = require('./__common__'), | |
| gulp = require('gulp'), | |
| watch = require('gulp-watch'); | |
| gulp.task('default', [ | |
| 'less' | |
| ], function () { | |
| browserSync({ | |
| server: { |
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 gulp = require("gulp"); | |
| var sass = require("gulp-sass"); | |
| var autoprefix = require("gulp-autoprefixer"); | |
| var filter = require('gulp-filter'); | |
| var browserSync = require('browser-sync'); | |
| var reload = browserSync.reload; | |
| /** | |
| * Start BrowserSync | |
| */ |
This blog post series has moved here.
You might also be interested in the 2016 version.
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'; | |
| /* | |
| This service can be used in MeanJS to add support for dynamic meta tag content depending on the | |
| view that is rendered by ui-router. The same code can be reused in other SPAs with minor adjustments. | |
| Usage: Copy this file in public/modules/core/services/ of MeanJS. Then inject the $meta service | |
| into a controller and use any of the following statements to set the view's meta tag content. | |
| $meta.setTitle('view title'); |