Profile | download (kb/s) | upload (kb/s) | latency (ms) |
---|---|---|---|
Native | 0 | 0 | 0 |
GPRS | 50 | 20 | 500 |
56K Dial-up | 50 | 30 | 120 |
Mobile EDGE | 240 | 200 | 840 |
2G Regular | 250 | 50 | 300 |
2G Good | 450 | 150 | 150 |
3G Slow | 780 | 330 | 200 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 randomUint32() { | |
if (window && window.crypto && window.crypto.getRandomValues && Uint32Array) { | |
var o = new Uint32Array(1); | |
window.crypto.getRandomValues(o); | |
return o[0]; | |
} else { | |
console.warn('Falling back to pseudo-random client seed'); | |
return Math.floor(Math.random() * Math.pow(2, 32)); | |
} | |
} |