0
votes
2answers
79 views
Question about Random function
Hi everybody. I'm new to programming in C#. My question is this;
how can i, after generating random numbers (i got so far), get these numbers to show random images in imageboxes?
…
8
votes
12answers
7k views
Java: generating random number in a range
Hello,
I am trying to generate a random number with Java, but random in a specific range. For example, my range is 5-10, meaning that 5 is the smallest possible value the random n …
2
votes
6answers
509 views
SecureRandom: init once or every time it is needed?
Our team is using a SecureRandom to generate a list of key pairs (the SecureRandom is passed to a KeyPairGenerator). We cannot agree on which of the following two options to use:
…
2
votes
8answers
167 views
Randomize value in Javascript
I need to randomize set of values in JS, and I call function randomize for example three times. How can I remember and block random generator from giving me results that it gave me …
0
votes
1answer
54 views
Does anyone know where I can find a random text generator tutorial for xcode?
I am trying to make an app that uses a random text generator but I don't know how to do it so i was looking for a tutorial that would help me with it but I haven't found any yet..
…
3
votes
11answers
477 views
How can I create an unique random sequence of characters in C#?
I'm implementing a URL shortening feature in my application in order to provide my users shorter alternative URLs that can be used in Twitter. The point is to be independent from t …
5
votes
3answers
594 views
Algorithm to generate Poisson and binomial random numbers?
i've been looking around, but i'm not sure how to do it.
i've found this page which, in the last paragraph, says:
A simple generator for random numbers taken from a Poisson distr …
0
votes
4answers
120 views
Php, should i use sha1 or others version of sha? Whats are the differences?
Hi, I am going to generate a random password for my users. Probably I will use salt and sha1 method. But I found that there are other version of sha1, like sha256, sha512 etc.
Wh …
4
votes
6answers
919 views
c# random string generator
Hi, I've developed a random string generator but it's not behaving quite as I'm hoping. My goal is to be able to run this twice and generate two distinct four character random str …
0
votes
1answer
185 views
How do I select a random key from an NSDictionary?
When I was using an NSArray, it was easy:
NSArray *array = ...
lastIndex = INT_MAX;
...
int randomIndex;
do {
randomIndex = RANDOM_INT(0, [array count] - 1);
} while (randomInde …
7
votes
6answers
844 views
Generating (pseudo)random alpha-numeric strings
How can I generate a (pseudo)random alpha-numeric string, something like: 'd79jd8c' in PHP?
1
vote
7answers
904 views
What is the best way to generate a random key within PHP?
I'm looking to create a reusable function that will generate a random key with printable ACSII characters of choosen length (anywhere from 2 to 1000+). I'm thinking printable ASCII …
2
votes
3answers
299 views
Is this a good way to generate a string of random characters?
I found this snippet of code that generates a string of random characters:
http://www.c-sharpcorner.com/UploadFile/mahesh/RandomNumber11232005010428AM/RandomNumber.aspx
But is the …
4
votes
7answers
2k views
Vb6 How do I make a Random String of 0-9 and a-z of x characters
Trying to create a random string, x characters in length using 0-9 and a-z/A-Z and can't seem to find a good example, any ideas?
1
vote
4answers
123 views
Consistent pseudo-random numbers across platforms
Hello,
I am looking for a way to generate pseudo random number sequences that will yield identical sequence results for a given seed across any platform. I am assuming that rand() …
