Skip to content

Instantly share code, notes, and snippets.

View picsoung's full-sized avatar
🧀
🇫🇷 🐸 Hacking around 🤓👨‍💻

Nicolas Grenié picsoung

🧀
🇫🇷 🐸 Hacking around 🤓👨‍💻
View GitHub Profile
@picsoung
picsoung / middleware_twilio_firebase.lua
Created February 27, 2015 11:22
APItools middleware to read text from twilio and push data to firebase
-- 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
@picsoung
picsoung / filter_rewards_by_category.lua
Created May 14, 2015 14:43
Ifeelgoods middleware for APItools
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")
@picsoung
picsoung / hook_openagenda.lua
Created July 13, 2015 16:01
Snippets used on APItools to receive event suggestions on Slack from OpenAgenda events API.
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={
@picsoung
picsoung / citybike_calculate_distance.lua
Last active August 29, 2015 14:26
Bike Sharing API project with Streamdata.io and APItools.
-- 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
@picsoung
picsoung / switch.lua
Created August 3, 2015 11:04
a switch in Lua
-- 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
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");
{
"first": null,
"item": [
{
"id": "ejd91q5351",
"methodByHttpMethod": {
"httpMethod": null,
"name": null,
"resourceId": "ejd91q5351",
"restApiId": "5yf1obhc79",
@picsoung
picsoung / helloWorld.js
Last active November 5, 2015 19:58
All code snippets need to fullfill Amazong API gateway integration with 3scale
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."});
}
};
@picsoung
picsoung / alexa_apistrat_lambda.js
Created January 13, 2016 15:01
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.
'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');
@picsoung
picsoung / script.js
Created February 11, 2016 15:32
Script that uses APIstrat API to get all speakers of the conference and run analysis using Namsor API to get gender of speakers
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){