show/hide this revision's text 3 added 20 characters in body

It's not as good as using atmospheric noise but it's still truly random since it depends on the characteristics of the network which is notorious for random non-repeatable behavior.

See Random.org for more on randomness.

Here's an attemp attempt at an implementation:

@prng        = PseudorandomNumberGenerator();
@ips  : list = getIpAddresses();
@rnd         = PseudorandomNumberGenerator(0 to (ips.count - 1));

@getTrueRandomNumber() { return ping(ips[@prng.nextNumber()]).averageTime; 
 ping(ips[rnd.nextNumber()]).averageTime }
show/hide this revision's text 2 added 226 characters in body

It's not as good as using atmospheric noise but it's still truly random since it depends on the characteristics of the network which is notorious for random non-repetable non-repeatable behavior.

See Random.org for more on randomness.

Here's an attemp at an implementation:

@prng        = PseudorandomNumberGenerator();
@ips  : list = getIpAddresses();

@getTrueRandomNumber()
 { return ping(ips[@prng.nextNumber()]).averageTime; 
 }
show/hide this revision's text 1

It's not as good as using atmospheric noise but it's still truly random since it depends on the characteristics of the network which is notorious for random non-repetable behavior.

See Random.org for more on randomness.