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
db.comments.mapReduce( | |
function(){ | |
emit(this.PostId, { Comments: [ this ]}) | |
}, | |
function(key, val){ | |
var first = val.shift(); | |
var comments = val.reduce(function(valorAnterior, valorActual){ | |
return Array.prototype.concat.apply( valorAnterior, valorActual.Comments); | |
}, first.Comments ); |
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
/* | |
T-Rex J. | |
T-Rex for waiting rooms and so. | |
see how it works: https://youtu.be/-D2s_9RCOrw | |
go this url: chrome://network-error/-106 | |
press ctrl + shift + j |