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
<head> | |
<title>meteor_servercall</title> | |
</head> | |
<body> | |
{{> simple}} | |
{{> passData}} | |
</body> | |
<template name="simple"> |
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 twilio = require('twilio'), | |
SerialPort = require("serialport").SerialPort, | |
express = require('express'); | |
var app = express(); | |
function sendMessage(res, message) { | |
var resp = new twilio.TwimlResponse(); | |
resp.message(message); | |
res.type('text/xml'); |
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
#!/usr/bin/env python | |
import sys | |
import cv2 | |
import subprocess | |
from subprocess import call | |
import aalib | |
import Image |
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
NUMBERS_SET = 'numbers' | |
TWILIO_NUMBER = '+12345678900' | |
TWILIO_SID = 'account_sid' | |
TWILIO_TOKEN = 'auth_token' | |
express = require('express') | |
http = require('http') | |
path = require('path') | |
redis = require('redis') | |
app = express() |