Skip to content

Instantly share code, notes, and snippets.

View Floby's full-sized avatar
🐮
Moo

Florent Jaby Floby

🐮
Moo
View GitHub Profile
@Floby
Floby / fibb.js
Last active August 29, 2015 14:14
var util = require('util');
var stream = require('stream');
var Readable = stream.Readable;
var Writable = stream.Writable;
var map = require('through2-map');
util.inherits(Producer, Readable);
function Producer () {
if(!(this instanceof Producer)) return new Producer;
@Floby
Floby / consistent case example
Last active March 22, 2016 14:32
octo restful api design blue refcard
GET /v1/orders?id_user=007
OR
GET /v1/orders?idUser=007
---------------------------------
POST /v1/orders {"id_user":"007"}
OR
POST /v1/orders {"idUser":"007"}
@Floby
Floby / bumpme
Last active April 19, 2016 11:58
My concourse gist
Tue Apr 19 11:58:40 UTC 2016