Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Generate randomness via atmospheric noise

Aug
1,929
71
Ref: http://www.random.org/clients/http/

Example;

Code:
@setlocal
@echo off
setdos /X-5
type http://www.random.org/integers/?num=300&min=1&max=100&col=1&base=10&format=plain&rnd=new
setdos /x0
endlocal

Site includes generators for Integer, sequence, string, and quota.

Joe
 
Code:
@setlocal
@echo off
setdos /X-5
type http://www.random.org/integers/?num=300&min=1&max=100&col=1&base=10&format=plain&rnd=new
setdos /x0
endlocal

Enough is:
Code:
type "http://www.random.org/integers/?num=300&min=1&max=100&col=1&base=10&format=plain&rnd=new"
 

<paranoid_mode on>
Not exactly. There are two external checks of numbers quality:
http://www.random.org/analysis/
But a bit old (2001, 2005). Both are excellent.
Visualisation (http://boallen.com/random-numbers.html) dated 2012-02-26 looks good.
There is no guarantee, that today we are talking about the same generator :)
</paranoid_mode>
 
Back
Top