This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- fct to split a string by a delimeter | |
local function split(s, delimiter) | |
local result = {} | |
for match in (s..delimiter):gmatch("(.-)"..delimiter) do | |
table.insert(result, match) | |
end | |
return result | |
end | |
-- funct to send data to Firebase |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
indexOf = function( t, object ) | |
if "table" == type( t ) then | |
for i = 1, #t do | |
if object == t[i] then | |
return i | |
end | |
end | |
return -1 | |
else | |
error("table.indexOf expects table for first argument, " .. type(t) .. " given") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local floor=math.floor | |
local DSEC=24*60*60 -- secs in a day | |
local YSEC=365*DSEC -- secs in a year | |
local LSEC=YSEC+DSEC -- secs in a leap year | |
local FSEC=4*YSEC+DSEC -- secs in a 4-year interval | |
local BASE_DOW=4 -- 1970-01-01 was a Thursday | |
local BASE_YEAR=1970 -- 1970 is the base year | |
local _days={ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- fct to split a string by a delimeter | |
local function split(s, delimiter) | |
local result = {} | |
for match in (s..delimiter):gmatch("(.-)"..delimiter) do | |
table.insert(result, match) | |
end | |
return result | |
end | |
-- transform a query string into an array |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- fct to simulate a switch | |
function switch(t) | |
t.case = function (self,x) | |
local f=self[x] or self.default | |
if f then | |
if type(f)=="function" then | |
f(x,self) | |
else | |
error("case "..tostring(x).." not a function") | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var threescale = require('3scale'); | |
var Client = threescale.Client; | |
client = new Client("YOUR_PROVIDER_KEY"); | |
var authenticate = function(user_key,callback){ | |
client.authrep_with_user_key({"user_key": user_key, "usage": { "hits": 1 } }, function(resp){ | |
if(resp.is_success()){ | |
callback(null,resp.is_success()); | |
}else{ | |
callback("403, unauthorized"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"first": null, | |
"item": [ | |
{ | |
"id": "ejd91q5351", | |
"methodByHttpMethod": { | |
"httpMethod": null, | |
"name": null, | |
"resourceId": "ejd91q5351", | |
"restApiId": "5yf1obhc79", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.handler = function(event, context) { | |
console.log('Received event:', JSON.stringify(event, null, 2)); | |
if(event.httpMethod === "POST" && event.body.name){ | |
context.succeed({"message":"Hello "+event.body.name}); | |
}else{ | |
context.succeed({"message":"Hello world."}); | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/** | |
* Author: Nicolas Grenié, @pisoung | |
* Date: November 2015 | |
* This is the code for the Amazon Echo app for APIstrat Austin conference. Using the app you can ask for the schedule of the conference. | |
* It uses APIstrat API developed by Kin Lane | |
*/ | |
require('jaws-core-js/env'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Q = require("q"); | |
var request = Q.denodeify(require("request")); | |
var _ = require('underscore') | |
var SPEAKERS=[]; | |
var RESULTS={} | |
var r = getAllSpeakers() | |
.then(function(res){ | |
SPEAKERS = res; | |
SPEAKERS.forEach(function(s){ |