1
vote
4answers
55 views
Pseudorandom Sequence Generator not just a number generator.
I need an algorithm that pretty much will turn a unix timestamp into a suitably random number, so that if I "play back" the timestamps I get the same random numbers.
And here's wh …
7
votes
20answers
2k views
True random number generator
Sorry for this not being a "real" question, but Sometime back i remember seeing a post here about randomizing a randomizer randomly to generate truly random numbers, not just pseud …
8
votes
9answers
889 views
What Type of Random Number Generator is Used in the Gaming Industry?
Given the extremely high requirements for unpredictability to prevent casinos from going bankrupt, what random number generation algorithm and seeding scheme is typically used in d …
8
votes
10answers
963 views
Do stateless random number generators exist?
Is there a difference between generating multiple numbers using a single random number generator (RNG) versus generating one number per generator and discarding it? Do both impleme …
2
votes
6answers
268 views
Create programmatic colour picker
How would one create a deterministic Javascript HTML colour picker which given arguments of how many colours are desired returns an array of HTML hex colour codes, ie:
function c …
2
votes
2answers
138 views
Do PRNG need to be thread safe?
As long as concurrent calls don't cause seg-v's or return the same value, what reasons are there for preventing race conditions and data corruption in PRNGs when those error's prim …
