Skip to content

Instantly share code, notes, and snippets.

View jonmarkgo's full-sized avatar
🎓
preparing the MLH Fellowship

Jonathan Gottfried jonmarkgo

🎓
preparing the MLH Fellowship
View GitHub Profile
var nodeio = require('node.io');
var methods = {
input: false,
run: function() {
this.getHtml('http://www.google.com/', function(err, $, data, headers) {
$('a').each('href', function (href) {
//Print all links on the page
@jonmarkgo
jonmarkgo / gist:3637140
Created September 5, 2012 14:06 — forked from wiscoDude/gist:3636075
TwiML.rb
# build up a response
response = Twilio::TwiML::Response.new do |r|
r.Say 'Hello, please wait.', :voice => 'woman'
r.Dial :callerId => '+14159992222' do |d|
d.Conference 'myfirstconference', :waitUrl => 'http://mysite.com/waiturl.mp3'
end
end