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

Signal Box - Burn After Coding

Signal Box - Burn After Coding

A talk by Josh Nesbitt & Brent Murphy on Signal Box, a SAAS built by Stac a few years ago. First presented at Hey!Stac #1.

Josh Nesbitt

June 04, 2013
Tweet

Other Decks in Technology

Transcript

  1. Use Cases iOS / Android apps Single page JS app

    Wordpress plugins Facebook apps More...
  2. Prioritise Restrict initial feature set Code quality can wait Build

    demo apps Write good documentation Client libraries first
  3. Manage Your Time Don’t over work yourself Be wary of

    burnout Take mental breaks Know when to quit
  4. app.js SignalBox.create('users', { params : { name : 'Bob', email

    : '[email protected]' }, success : function(user, xhr){ console.log('Created: ' + user.name); } });
  5. app.js var q = 'SELECT * FROM users WHERE name

    = {name} LIMIT {count}'; SignalBox.query(q, { name : 'josh', count : 10 });
  6. sdk.js this.query = function(query, replacements, options){ var q = this.encodeSBQL(query,

    replacements); return this.get('/resources?query=' + q, options); };