HOC will soon (EOY?) launch an API for our DPS solution. The interface will be simple:
-
You give us a set of examples (input/output pairs)
-
We'll give you a (Python?) function that models it
And that's it. It will be an universal function finder.
| blueprint: | |
| name: Link On/Off State of Multiple Devices | |
| description: | | |
| ## Link On/Off State of Multiple Devices v1.5 | |
| Select multiple entities to link their on/off state. If any selected entity is turned on or off, the other selected entities will be sent a matching on or off command. | |
| You can select any entity, but only entities supported by the `homeassistant.turn_on` or `homeassistant.turn_off` service calls will work. | |
| ### Requirements |
| Rules: | |
| * only output valid JSON | |
| Example JSON action list: | |
| {"action":"Example CRM: Create Lead","params":{"first_name":"str","last_name":"str","notes":"str"}} | |
| Example input: add joe smith to my crm, he really loves cheese | |
| Example output: {"action":"Example CRM: Create Lead","params":{"first_name":"joe","last_name":"smith","notes":"joe really loves cheese"}} | |
| Real JSON action list: |
| mike keynote (short, 5 minutes) | |
| jason, platform (activation, embeds) | |
| bryan/james, making changes to zapier (things you can edit in admin, how2github, future of editing code) | |
| mike, flow (progress, whats next) |
Startup Weekend "Snapier" (v0):
Entirely Django "Zapier" (v1):
| # APPLICATION CODE (uses underscore.js) | |
| lawnchair = new Lawnchair({}, (->)) | |
| # hackery to cope with firefox and lawnchair, indexedDB not doing asnyc validation | |
| # so well. If indexedDB isn't available (after doing a .open() check) then remove it | |
| # from the available adapters and re-init lawnchair with a new instance. | |
| # see: https://github.com/brianleroux/lawnchair/issues/189 | |
| indexedDBValid = (callback) => | |
| idb = window.indexedDB or window.webkitIndexedDB or window.mozIndexedDB or window.oIndexedDB or window.msIndexedDB |
| <div>There is {{#article}}{{animal}}{{/article}} in the middle of the room.</div> | |
| <!-- context passed as {noun: 'elephant'} --> | |
| <div>There is an elephant in the middle of the room.</div> | |
| <!-- context passed as {noun: 'mouse'} --> | |
| <div>There is a mouse in the middle of the room.</div> |
| # accessor: returns the article "a" or "an" depending on the context string. Eg. "Computer" will return "a" | |
| # and "Elephant" will return "an". Can pass a hash option `capitalize` which will capitalize the article. | |
| # usage: {{#article}}string{{/article}} outputs "a string" | |
| Handlebars.registerHelper "article", (options) -> | |
| # options: pass `capitalize` true to get a capital article | |
| string = options.fn(@) | |
| vowels = ['a', 'e', 'i', 'o', 'u'] | |
| vowel = false | |
| letter = string.toLowerCase()[0] | |
| vowel = true for v in vowels when letter == v |
| define([ | |
| 'jquery', | |
| 'use!underscore', | |
| 'use!backbone', | |
| 'mustache', | |
| 'text!template/header.html', | |
| 'text!template/loggedInLinks.html', | |
| 'text!template/loggedInTempLinks.html', | |
| 'text!template/loggedOutLinks.html', | |
| 'views/home/__init__', |