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
One thing I haven't seen mentioned is Dave Verwer's iOS Weekly: http://iosdevweekly.com/. I like this newsletter a lot, even though I've usually seen the links by the time it comes out it often reminds me I want to bookmark them. | |
Blogs: | |
- Matt Gemmell's blog - Matt is a brilliant UI/UX evangelist with incredible wit (@mattgemmell) | |
- Mike Ash's Friday Q&A - Mostly nitty-gritties, but incredibly helpful (@mikeash) | |
- Cocoa, With Love (Matt Gallagher) - opinion pieces and how-tos, mostly (@mattgallagher) | |
- Cocoa Is My Girlfriend (Marcus Zarra and Matt Long) - Core Data and Core Animation experts (@mzarra and @perlmunger) | |
- Daring Fireball (John Gruber) - Witty and enlightening tech punditry (@gruber) | |
- Apple Outsíder (Matt Drance) - Pundit, developer. Infrequent but profound updates. (@drance) | |
- Ole Begemann: iOS Development - Developer with terrific monthly roundups of important links/resources (@olebegemann) |
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
One thing I haven't seen mentioned is Dave Verwer's iOS Weekly: http://iosdevweekly.com/. I like this newsletter a lot, even though I've usually seen the links by the time it comes out it often reminds me I want to bookmark them. | |
Blogs: | |
- Matt Gemmell's blog - Matt is a brilliant UI/UX evangelist with incredible wit (@mattgemmell) | |
- Mike Ash's Friday Q&A - Mostly nitty-gritties, but incredibly helpful (@mikeash) | |
- Cocoa, With Love (Matt Gallagher) - opinion pieces and how-tos, mostly (@mattgallagher) | |
- Cocoa Is My Girlfriend (Marcus Zarra and Matt Long) - Core Data and Core Animation experts (@mzarra and @perlmunger) | |
- Daring Fireball (John Gruber) - Witty and enlightening tech punditry (@gruber) | |
- Apple Outsíder (Matt Drance) - Pundit, developer. Infrequent but profound updates. (@drance) | |
- Ole Begemann: iOS Development - Developer with terrific monthly roundups of important links/resources (@olebegemann) |