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

NodeConf NodeBots Session

NodeConf NodeBots Session

We only had 40 minutes, but we got >250 people to harness the power of Prometheus. I call that a success.

Avatar for Raquel Vélez

Raquel Vélez

June 28, 2013
Tweet

More Decks by Raquel Vélez

Other Decks in Technology

Transcript

  1. 1. Clean up after yourself 2. Keep all your stuff

    together - no mixing! 3. Ask many questions 4. If it breaks, don’t cry TODO
  2. var five = require("johnny-five"); five.Board().on("ready", function() { // "strobe" an

    led in 1000ms on-off phases five.Led(13).strobe(1000); });
  3. var five = require("johnny-five"), button, led; five.Board().on("ready", function() { button

    = new five.Button(8); led = new five.Led(13); button.on("down", function() { led.on(); }); button.on("up", function() { led.off(); }); });