Skip to content

Instantly share code, notes, and snippets.

View Iteratix's full-sized avatar

Bobby Cox Iteratix

  • San Francisco, CA
View GitHub Profile
real 5.208
real 0.207
real 5.203
real 0.217
real 5.216
real 0.276
real 0.203
real 5.203
real 0.308
real 0.202
[james@anywhere-be anywhere-server]$ ./start-server.sh --nodaemon
Not running as root. Unable to raise file/socket limit.
serving static files out of root: public
Descriptor table resized to 1024.
reading ASGW servers file...
Connecting to SIP Gateway: rtmp.any.convorelay.com:5486
Listening on 0.0.0.0:8182
ASGW Certificate accepted.
ASGW Certificate accepted.
< ASGW Hello
passwordStrength: function(password) {
if (typeof password == 'undefined') {
return 'none';
}
var score = 0;
score += Math.min(password.length, 10);
var types = 0;
if ((/[A-Z]/).test(password)) {types += 1;}