https://www.youtube.com/watch?v=aCMbSyngXB4
HealtheIntent syndication API for Population Science projects
http://docs.healtheintent.com/api/alpha/data_syndication/#data-syndication-api
Chrome's DevTools going places with all the trappings of an OS
https://www.youtube.com/watch?v=PjjlwAvV8Jg
Example of assync functions: https://github.com/SBU-BMI/sandboxEarth/blob/master/earth.js#L4
// assyncronous processes using new ES6 cmds
var sleep = n => new Promise(resolve => setTimeout(resolve,n))
async function process(n){
n = n||1000
console.log('started ...')
await sleep(n)
//debugger
console.log('... ended normal process')
await sleep(n)
console.log('... ended twice as long process')
}
// now try process(1000)
Your favorites from G.IO 2017: