Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Asynchronous wombats - some of the communication issues from our differences we face on GitHub

Asynchronous wombats - some of the communication issues from our differences we face on GitHub

at http://npm.camp - July 30, 2016

Daijiro Wachi

July 16, 2016
Tweet

More Decks by Daijiro Wachi

Other Decks in Programming

Transcript

  1. npm whoami --long { "id": "@watilde", "name": "Daijirō Wachi", "devCommunities":

    [ "Node.js Japanese localisation team", "Node.js Intl WG", "Nodeschool", "Nodebots", "ECMA402" ] }
  2. Metcalfe's law function metcalfe (n) { return n * (n

    - 1) / 2 } mtcalfe(2) // => 1 mtcalfe(5) // => 6 mtcalfe(12) // => 66 Image from https://en.wikipedia.org/wiki/Metcalfe%27s_law
  3. Complexity = D * L * N Distance(Time Zone) x

    Language Differences x Network Size(Involved peeps) } - Communication Organization
  4. Asynchronous way Promise.all([ hello, myEnv, myError, myQuestion, bestRegards ]).then(message =>

    { return postIssue(message); }, function(misunderstand) { iFixedByMyselfBecause(misunderstand); });
  5. • Documentation: answer first, before questions come • README.md, CONTRIBUTING.md,

    ISSUE_TEMPLATE.md • Reproduce: use the same environment to reporters AMAP • Same Node.js Version nvm • Same npm version npmbrew • Same platform amazon.com Tools