From: MenTaLguY Date: 2009-07-26T07:11:58+09:00 Subject: Re: Pseudo random On Sun, 2009-07-26 at 06:55 +0900, Kless wrote: > Is safe to use Kernel#rand to get pseudo-random integers? It depends on what you need them for. - If you need them for something related to security or authentication, then no, you need a better-quality randomness source than that. - If you need them for a monte-carlo simulation, it *might* be acceptable. - If you are writing a game it's probably okay. -mental