var subscription = {
criteria: "/Patient?identifier=http://acme.org/patient/123",
status: 'active',
channel: {
type: 'websocket',
endpoint: Meteor.absoluteUrl()
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.ibm.com/watson/developercloud/services-catalog.html | |
https://www.ibm.com/watson/developercloud/speech-to-text.html | |
https://github.com/watson-developer-cloud/node-sdk | |
https://github.com/watson-developer-cloud/node-sdk#speech-to-text |
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
node -v | |
npm -v | |
node -p process.versions | |
node -p process.platform | |
node -p process.arch | |
meteor -v | |
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://chrome.google.com/webstore/detail/momentum/laookkfknpbbblfpciffpaejjkokdgca?hl=en | |
https://chrome.google.com/webstore/detail/focus/bjmcjeffnloaojffcbaekmcokegnejlf?hl=en-US |
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://chrome.google.com/webstore/detail/momentum/laookkfknpbbblfpciffpaejjkokdgca?hl=en | |
http://stackoverflow.com/questions/38000374/google-chrome-extension-default-in-a-new-tab | |
https://developer.chrome.com/extensions/tabs#event-onCreated | |
https://github.com/clinical-meteor/clinical-chrome-extension | |
http://extensionizr.com/!#{"modules":["hidden-mode","with-bg","with-persistent-bg","no-options","no-override"],"boolean_perms":[],"match_ptrns":[]} | |
https://github.com/wojtkowiak/meteor-desktop |
================================================
https://react.rocks/example/React-motion_reorder_list
https://react.rocks/example/chat-template
https://react.rocks/example/repeat-todo
https://react.rocks/example/react-atv-img
https://react.rocks/example/react-scifi
https://react.rocks/example/react-sortable-hoc
https://react.rocks/example/react-absolute-grid
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
One Common Language | |
Verified and Validated | |
Database Everywhere | |
Follow the Ecosystem | |
Isomorphisms Equal Productivity | |
Ergonomic Design | |
Standards Compliant |
A team member (or self) has checked in a few bad commits into GitHub and broken the build. Here's how to move their commits into a new branch, and bring master back to green.
git pull origin development
git checkout -b prune
git push origin prune
git checkout development
git reset --hard 2c9ab34fe1bee4c0c124ab6da35e47c7ee020619
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://github.com/jalik/jalik-ufs |
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
http://stackoverflow.com/questions/36269581/meteor-rendering-a-blaze-template-within-a-react-template | |
To render blaze from react, you make a wrapper class: | |
``` | |
AccountsWrapper = React.createClass({ | |
componentDidMount() { | |
this.view = Blaze.render(Template.Accounts, | |
React.findDOMNode(this.refs.container)); | |
}, |