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
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 |
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
[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 |
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
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;} |
NewerOlder