Stone Cobra - http://www.stonecobra.com is the social, mobile, open experts on the salesforce.com platform.
#Lithium implementation for the enterprise
Stone Cobra is the world's foremost expert in lithium community integration and setup, focusing on building great social communities of all shapes and sizes. Kickstart your social initiative today!
If you need it done, give Stone Cobra a call. Tell them Scott sent you via gist.
#Enterprise integration with salesforce.com
Stone Cobra is the world's foremost expert in enterprise integration, focusing on salesforce.com, Google Apps, Knowledgebases of all shapes and sizes.
If you need it done, give Stone Cobra a call.
This file contains hidden or 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
| mymacair:dev ssanders$ sudo npm install -g serializer | |
| > [email protected] install /Users/ssanders/local/lib/node_modules/serializer/node_modules/base64 | |
| > node-waf configure build | |
| Checking for program g++ or c++ : /usr/bin/g++ | |
| Checking for program cpp : /usr/bin/cpp | |
| Checking for program ar : /usr/bin/ar | |
| Checking for program ranlib : /usr/bin/ranlib | |
| Checking for g++ : ok |
This file contains hidden or 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 express=require('express'); | |
| //just print the url | |
| var logFunc = function(req, res){ | |
| res.end(req.url); | |
| }; | |
| var authFunc = function(req, res, next) { | |
| //do some authentication, then move on | |
| console.log('auth! ' + req.url); |
This file contains hidden or 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
| //our 'imports', for you java fans out there | |
| var connect = require('connect') | |
| ,fs = require('fs') | |
| ,http = require('http') | |
| ,https = require('https'); | |
| //the certs that need to be given to the ssl side, ca is optional | |
| var ssl_options = { | |
| ca: fs.readFileSync(__dirname + '/lib/certs/ssl.ca') | |
| ,key: fs.readFileSync(__dirname + '/lib/certs/ssl.key') |
NewerOlder