a list of slides from nodeconf
you may want to take a look at the jsconf-gist too!
var sys = require('sys'); | |
var http = require('http'); | |
var EventEmitter = require('events').EventEmitter; | |
TropoSession = function() { | |
this.responseBody; | |
}; |
var sip = require('sip'); | |
var sys = require('sys'); | |
var redis = require('redis'); | |
//Trim leading and trailing whitespace from string values. | |
function trim(str) { | |
return str.replace(/^\s+|\s+$/g, ''); | |
} | |
sip.start({},function(request) { |
var sip = require('sip'); | |
var sys = require('sys'); | |
var redis = require('redis'); | |
//Trim leading and trailing whitespace from string values. | |
function trim(str) { | |
return str.replace(/^\s+|\s+$/g, ''); | |
} | |
sip.start({},function(request) { |
a list of slides from nodeconf
you may want to take a look at the jsconf-gist too!
<!-- Put this in a file called post.php --> | |
<?php | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, 'https://spreadsheets.google.com/formResponse?formkey=your-google-form-key'); | |
curl_setopt($ch, CURLOPT_POST, TRUE); | |
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array( | |
'entry.0.single' => date('Y-m-d H:i:s'), | |
'entry.1.single' => $_POST['email'], | |
'entry.2.single' => $ref, |
<?xml version="1.0" encoding="ISO-8859-1"?> | |
<grammar xmlns="http://www.w3.org/2001/06/grammar" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://www.w3.org/2001/06/grammar http://www.w3.org/TR/speech-grammar/grammar.xsd" | |
version="1.0" xml:lang="en-US" mode="voice" root="main"> | |
<!-- Main gramar rule --> | |
<rule id="main" scope="public"> | |
<item> | |
<ruleref uri="#first" /> | |
</item> |
<!doctype html> | |
<!-- | |
To run this demo you need to have seriously and the nightvision effect. | |
wget https://raw.github.com/brianchirls/Seriously.js/master/seriously.js | |
mkdir effects | |
cd effects | |
wget https://raw.github.com/brianchirls/Seriously.js/aacdc75665d98a52c8a0c2e0e0cbbf85b136a151/effects/seriously.nightvision.js | |
--> | |
<html> |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2012 Sindre Sorhus <http://sindresorhus.com> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
# The script that I use to broadcast tweets about | |
# Nike to Dashku's demo account, in CoffeeScript. | |
# require some npm libraries | |
Twit = require 'twit' | |
analyze = require('Sentimental').analyze | |
Placefinder = require 'placefinder' | |
dashku = require 'dashku' | |
# Set your API Key |