Skip to content

Instantly share code, notes, and snippets.

View awatson1978's full-sized avatar
🏠
Working from home

Abigail Watson awatson1978

🏠
Working from home
View GitHub Profile
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
@awatson1978
awatson1978 / gist:e6f23432c500f14451013b7c20502695
Last active March 21, 2017 15:06
FHIR Subscription with Meteor on FHIR

Client

var subscription = {
  criteria: "/Patient?identifier=http://acme.org/patient/123",
  status: 'active',
  channel: { 
    type: 'websocket',
    endpoint: Meteor.absoluteUrl()    
node -v
npm -v
node -p process.versions
node -p process.platform
node -p process.arch
meteor -v
https://chrome.google.com/webstore/detail/momentum/laookkfknpbbblfpciffpaejjkokdgca?hl=en
https://chrome.google.com/webstore/detail/focus/bjmcjeffnloaojffcbaekmcokegnejlf?hl=en-US
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
@awatson1978
awatson1978 / gist:8104f131fd17c20b0073bcd90e30c2cd
Created September 11, 2016 14:15
Principles of Clinical Meteor
One Common Language
Verified and Validated
Database Everywhere
Follow the Ecosystem
Isomorphisms Equal Productivity
Ergonomic Design
Standards Compliant
@awatson1978
awatson1978 / gist:487b121bb6375631bd93feaf4e889537
Last active June 2, 2017 21:53
Git - Pruning, Grafting, Splicing, Graphing

Pruning, Grafting, Splicing

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 
https://github.com/jalik/jalik-ufs
@awatson1978
awatson1978 / gist:2f73120565f295647590d2836e56e4df
Created August 28, 2016 14:40
Rendering Blaze into a React Template
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));
},