http://www.reactd3.org/
https://github.com/yang-wei/rd3
http://oli.me.uk/2015/09/09/d3-within-react-the-right-way/
https://github.com/QubitProducts/d3-react-sparkline
http://www.adeveloperdiary.com/react-js/create-reusable-charts-react-d3-part1/
http://www.adeveloperdiary.com/d3-js/how-to-integrate-react-and-d3-the-right-way/
https://adeveloperdiary.github.io/react-d3-charts/02_Admin_Dashboard/part4/index.html
https://adeveloperdiary.github.io/react-d3-charts/01_Visitor_Dashboard/index.html
https://github.com/Olical/react-faux-dom
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
Daniel Rinehart | |
https://groups.google.com/forum/#!searchin/nightwatchjs/radio|sort:relevance/nightwatchjs/PV-zaHLRtsA/2nbZ8v1ud84J | |
``` | |
module.exports = { | |
'Form': function(browser) { | |
browser | |
.url('http://nightwatch-form.herokuapp.com/') | |
.setValue('input[name="first_name"]', 'First') | |
.setValue('input[name="last_name"]', 'Last') | |
.click('select[name="dob_month"] option[value="3"]') |
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
<link rel="prefetch" href="/images/landing/hero.jpg"> |
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
https://www.npmjs.com/package/python-shell | |
http://www.r-bloggers.com/new-in-v8-calling-r-from-javascript-from-r-from-javascript/ |
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 React from 'react'; | |
import ProfileInfo from './ProfileInfo.jsx'; | |
const DRAG_THRESHOLD_PERCENTAGE = 30; | |
class VoteProfile extends React.Component { | |
constructor(props) { | |
super(props); |
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
- add circle.yml to project | |
- delete GitHub repo CircleCI services | |
- delete GitHub repo deploy keys | |
- turn off Project Watching on Circle CI | |
Should now be in a default state. | |
- turn on Project Watching on Circle CI |
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
cd examples | |
git clone https://github.com/awatson1978/clinical-scheduling.git | |
git add --all . | |
git submodule init | |
git submodule update | |
git commit -a -m 'added submodules' | |
git push origin master | |
https://github.com/blog/2104-working-with-submodules |
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
````js | |
//packages/clinical-router/lib/version_conflict_error.js | |
if (Package['cmather:iron-router']) { | |
throw new Error("\n\n\ | |
Sorry! The cmather:iron-{x} packages were migrated to the new package system with the wrong name, and you have duplicate copies.\n\ | |
You can see which cmather:iron-{x} packages have been installed by using this command:\n\n\ | |
> meteor list\n\n\ | |
Can you remove any installed cmather:iron-{x} packages like this:\ |
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
let remote = DDP.connect(Meteor.settings.public.remote.url); | |
Meteor.connection = remote; | |
Accounts.connection = remote; | |
Meteor.users = new Mongo.Collection('users', remote); | |
Orders = new Mongo.Collection('orders', remote); | |
FlowRouter.subscriptions = function () { | |
this.register('workstation', Meteor.settings.remote.id); |
function addComponent(api, name, imports) {
api.addFiles('components/' + name + '/' + name + '.html', 'client');
api.addFiles('components/' + name + '/' + name + '.js', 'client');
api.addFiles('components/' + name + '/' + name + '.styl', 'client');
if(imports) {
api.addFiles('components/' + name + '/skin.import.styl', 'client');
api.addFiles('components/' + name + '/structure.import.styl', 'client');