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
(function(exports) { | |
'use strict'; | |
/* | |
activecontexts is a two level map | |
Map(object -> Map(context -> true)) | |
The second map is simply used for efficient set lookup (has) | |
*/ | |
var activecontexts = new WeakMap(); |
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
Hey Ryan, | |
I thought this would be the easiest way to answer you in 140+ characters. | |
My first point is that the entropy of a random string is not defined by the number of possible characters. If you were to randomly pick a number between 1 and 100, and I randomly picked seven 1's or 0's, my string would have more entropy | |
log(100,2) = 6.64 | |
and | |
2^7 > 2^6.64 |
NewerOlder