Quote:
Originally Posted by sammyg2
Freaking crybabies. If you can't go for 15 minutes without porn, then GO HANG OUT AT A PORN SITE!
There are rules here. Follow them or go away. It really is that simple. Just please, stop your incessant whining!
|
Was it this thread or that other one? Kept whining and whining with all those gay photos (where did they find them all anyhow?) and feeble attempt at sarcasm, and then bam someone posts some leggy picture and the crowd goes wild... "this thread is awesome" and even the Nazi salute (haha very funny). Surely easy to please, and talk about short attention span, didn't last all of 3 pages.
What a great specimen for a social experiment.
http://www.codinghorror.com/blog/archives/000728.html
Quote:
System.Cryptography.RandomNumberGenerator.
const int maxlen = 3000;
Random r = new Random();
RandomNumberGenerator rng = RandomNumberGenerator.Create();
Byte[] b = new Byte[4];
using (StreamWriter sw = new StreamWriter("random.csv"))
{
for (int i = 0; i < maxlen; i++)
{
sw.Write(r.Next());
sw.Write(",");
rng.GetBytes(b);
sw.WriteLine(Math.Abs(BitConverter.ToInt32(b, 0)));
}
}
|
3000 random numbers:
10000 random numbers:
30000 random numbers: