6
votes
5answers
176 views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
1
vote
1answer
29 views
Is there a way to distinguish a GUID from just a random number?
Being able to distinguish a GUID from random data can be useful when debugging obscure code defects.
On Windows each GUID generated is of version 4 therefore it has '4' as the fir …
0
votes
4answers
104 views
Weighted random numbers
Cheers,
I'm trying to implement a weighted random numbers. I'm currently just banging my head against the wall and cannot figure this out.
In my project (Hold'em hand-ranges, sub …
1
vote
10answers
177 views
Fastest way to pick a random element from a list that fulfills certain condition
I need to pick a random element from a list, that fulfills certain condition. The approach I've been using works, but I'm sure is not every efficient. What would be the most effici …
2
votes
5answers
96 views
use random functions (python)
Hi,
I wonder if we can do that in python, let's suppose we have 3 differents functions to processing datas
like this:
def main():
def process(data):
.....
def process1( …
0
votes
5answers
115 views
replace or remove one null (python)
Hi Everyones,
I would like to remove one null byte in a string, and sometime replace it with another char.
Like that :
string = "41 00 36 00 36 00 00 00 57 00 46 00 42 00 41 00 6 …
1
vote
6answers
227 views
how can I create a password?
I want to give maybe a million password to some users that should be like:
it must have at least 6 characters
it must have digits and also letters
Should I use Random here? How …
3
votes
3answers
54 views
Comprehensive information about hash salts
There are a lot of questions about salts and best practices, however most of them simply answer very specific questions about them. I have several questions which feed into one an …
0
votes
4answers
90 views
Generate unique names???
I am working on a php site in which we have to upload images from users.i have to rename that file for preventing conflicts in the name of the image.
uniqid(rand(), true);
and add …
0
votes
3answers
67 views
Java permutations with least random numbers possible
hi folks!
i looking to generate a permutation of the array a and I dont want to use util function such as shuffle on collections...
The permutations(#) should be randomised and eve …
0
votes
2answers
62 views
Java Random Slowdowns on Mac OS cont’d
I asked this question a few weeks ago, but I'm still having the problem and I have some new hints. The original question is here:
http://stackoverflow.com/questions/1651887/java- …
1
vote
2answers
68 views
How to get two random records with Django
How do I get two distinct random records using Django? I've seen questions about how to get one but I need to get two random records and they must differ.
7
votes
4answers
190 views
How do I generate a random list of person names?
I need to generate a list of people's name randomly.
Where can I find lists of names? I need a list of first names, a list of middle names and a list of surnames.
--EDIT--
Just w …
0
votes
2answers
115 views
Shake iphone to view random html files
hi every ,
i have 20 HTML files ok ?
i am going to shake the iphone , after shook , one of 20 html files shows up as random .
i don't know random value on the objective C . can …
2
votes
5answers
90 views
Replacing sequence with random number
I would like to replace some of the sequences I use for id's in my postgresql db with my own custom made id generator. The generator would produce a random number with a checkdigit …
