Skip to content

Instantly share code, notes, and snippets.

View dahernan's full-sized avatar

David Hernandez dahernan

View GitHub Profile
@netologist
netologist / recommendation-engine-services.md
Created August 2, 2012 09:17
Recommendation Engine Services

##Recommendation Engine Services

####IREUS Recommendation Engine for stores as SaaS

http://www.ireus.net/

####Plista

@mynameisfiber
mynameisfiber / gist:2853066
Created June 1, 2012 15:44
Golang http close body blocking problem
package main
import (
"crypto/tls"
"net"
"net/http"
"time"
"fmt"
"errors"
)
@jfrazee
jfrazee / twitter_filter.js
Created January 10, 2012 23:22
Twitter Streaming API with Node.js Request module
var request = require('request');
function filter(options, callback){
var params = {
uri: "https://stream.twitter.com/1/statuses/filter.json",
}
if (typeof options['oauth'] !== 'undefined'){
params.oauth = options.oauth;
delete options.oauth;
}