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
{ | |
"message": "can't call something : /10.44.119.163:29117/xx_watcher", | |
"class": "com.mongodb.MongoException$Network", | |
"stackTrace": [ | |
"com.mongodb.DBPort._open(DBPort.java:206)", | |
"com.mongodb.DBPort.go(DBPort.java:94)", | |
"com.mongodb.DBPort.go(DBPort.java:75)", | |
"com.mongodb.DBPort.findOne(DBPort.java:129)", | |
"com.mongodb.DBPort.runCommand(DBPort.java:138)", | |
"com.mongodb.DBPort.checkAuth(DBPort.java:283)", |
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
{ [MongoError: quota exceeded] | |
name: 'MongoError', | |
err: 'quota exceeded', | |
code: 12501, | |
n: 0, | |
lastOp: { low_: 2, high_: 1324977215 }, | |
connectionId: 64862, | |
ok: 1 } |
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
PROMPT="function %n() { " | |
RPROMPT="};" |
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
/output |
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
// see: http://gimite.net/gimite/rubymess/moji.html | |
var zenkaku = /(?:[ !”#$%&’()*+,-./:;<=>?@[¥]^_‘{|} ̄])|(?:[、。・゛゜´`¨ヽヾゝゞ〃仝々〆〇ー―‐\~〜∥…‥“〔〕〈〉《》「」『』【】±×÷≠≦≧∞∴♂♀°′″℃¢£§☆★○●◎◇◇◆□■△▲▽▼※〒→←↑↓〓])|(?:[0-9])|(?:[A-Z])|(?:[a-z])|(?:[ぁ-ん])|(?:[ァ-ヶ])|(?:[Α-Ωα-ω])|(?:[А-Яа-я])|(?:[\u2570-\u25ff])|(?:[\u3400-\u4dbf\u4e00-\u9fff\uf900-\ufaff])/; | |
var hankaku = /(?:[\x00-\x1f\x7f])|(?:[ !"#$%&'()*+,\-.\/:;<=>?@\[\\\]\^_`{|}~])|(?:[\uFF61\uFF62\uFF63\uFF64\uFF70\uFF9E\uFF9F\uFF65])|(?:[0-9])|(?:[A-Z])|(?:[a-z])|(?:[\uFF66-\uFF6F\uFF71-\uFF9D])/; |
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
// For printout https://gist.github.com | |
// DOM | |
$('#header').remove(); | |
$('#repos').remove(); | |
$('.secondary').remove(); | |
$('.meta').remove(); | |
$('#footer').remove(); | |
$('.push').remove(); | |
$('#comments').remove(); |

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 before, after; | |
var obj, i; | |
var count = 1000000000; | |
var t; | |
console.log('%j', process.versions); | |
console.log(''); | |
console.log('* initialize'); |
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 now; | |
var obj, i; | |
var count = 10000000; | |
var key = 'key'; | |
obj = {}; | |
now = Date.now(); | |
for (i = 0; i < count; i++) { | |
obj[key] = 1; | |
obj[key] = null; |
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 now; | |
var fn, i; | |
var count = 10000000; | |
now = Date.now(); | |
fn = function() { | |
arguments[0]; | |
} | |
for (i = 0; i < count; i++) { | |
fn(); |