Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jontutcher on github.
  • I am jontutcher (https://keybase.io/jontutcher) on keybase.
  • I have a public key ASCh1ofX6sbMayVaF8MQP68Oa_yigcRl6w_dF0RcL3lsTgo

To claim this, I am signing this object:

// Script to parse the contents of MozFest 2017 Decentralization Issues and turn into TSV of relevant info
// Runs in Node.js 8
// cURL command to get JSON (paginated, need to request all pages through page parameter or follow LINK field)
// curl -X GET \
// 'https://api.github.com/repos/MozillaFoundation/mozfest-program-2017/issues?milestone=2&page=1' \
// -H 'accept: application/vnd.github.VERSION.text+json' \
// -H 'authorization: token [YOUR OAUTH TOKEN]' \
// -H 'cache-control: no-cache' \
// -H 'milestone: 2'
// Jon T <jon@jtutcher.co.uk>
#include "pattern.h"
#include "leds.h"
const uint32_t speed = 50;
const int numberOfColours = 7;
const int16_t maxHeightAbsolute = axis_max[2];
const int16_t minHeightAbsolute = axis_min[2];
const int16_t treeHeightAbsolute = maxHeightAbsolute - minHeightAbsolute;