0
votes
0answers
7 views

Generate Random double in the range[0,1) with a seed in the range [0,2^16}

I have to generate a random double in the range[0,1) providing with a seed in the range [0-2^16] in c or c++ The generated id's should have a uniform distribution. Can you suggest some methods or ...
0
votes
1answer
19 views

Generating uniformly distributed random numbers in distributed environment

I have to generate a "unique Random Number" in a Wireless sensor network which works on the principle of Gossiping. The requirements are: Each node has to generate a unique Random Number, without ...
2
votes
4answers
71 views

Generate ID fast and with high probability of uniqueness

I want to generate ID to event that occur in my application. The event frequency is up to the user load, so it might occur hundreds-thousand of time per second. I can't afford using UUID.randomUUID() ...
0
votes
3answers
134 views

Use Native Java UUID.getRandom() as Sharding key and as the _id?

I understand that with a write-heavy application, using the ObjectId is a really bad idea for a sharding key. However, would it be a good idea to use native *UUID.randomUUID() from Java as a Shard key ...
2
votes
1answer
435 views

Is there an issue with this UUID generation code?

So I have some code which needs to use UUID for database IDs. I've gone with v4 (random) for simplicity's sake, and I don't see any real reason to use any of the other less random version of UUID. My ...
0
votes
0answers
360 views

How does Amazon generate its order number?

Note: I have already read through older questions like What is the best format for a customer number, order number? , however my question is a little more specific. Generating pseudo-random numbers ...
6
votes
6answers
1k views

Is UUID.randomUUID() suitable for use as a one-time password?

As previous discussed, confirmation emails should have a unique, (practically) un-guessable code--essentially a one-time password--in the confirmation link. The UUID.randomUUID() docs say: The ...
5
votes
6answers
241 views

Randomize DB record IDs

In our web application we want to randomize the record IDs. The reason is because we want to hide how many entries there are in the DB already and we have unlisted things. In case IDs would be simple ...
5
votes
2answers
360 views

How can I generate a GUID in R?

How can I generate GUIDs and UUIDs in R? I would like to be able to generate GUIDs based on the hardware etc. of the machine running the rsession. As a fallback, however, I would be happy to create ...
2
votes
2answers
340 views

Random GUID in Java (A different format)

One of the components that I use needs to feed an XML into it. The component provider has not provided any documentation or the specs of the XML. I am trying to generate the XMLs by trial and error ...
3
votes
1answer
1k views

MySQL UUID primary key - generated by PHP or by MySQL?

I was under the impression that just having MySQL generate the primary key via UUID() would make the key unique across servers, etc. But, there is no way to fetch the last inserted UUID, which ...
1
vote
0answers
1k views

Are there any known incidents of UUIDs colliding? [closed]

Has anyone ever experienced a UUID collision in the wild? Anyone heard or read of one happening? Can you provide any details?
5
votes
3answers
479 views

Is there a way to generate a random UUID, which consists only of numbers?

Java's UUID class generates a random UUID. But this consists of alphabets and numbers. For some applications we need only numbers. Is there a way to generate random UUID that consists of only numbers ...
1
vote
0answers
171 views

Generate a random uuid in a maven archetype

I need to create a random UUID and write it to the generated project. Currently, I ask the user to fill in a random UUID each time a project is created, and I would like this to be done automatically. ...
9
votes
3answers
3k views

Are Java random UUID's predictable?

I would like to use a cryptographically secure primary key for sensitive data in a database - this cannot be guessable/predictable and it cannot be generated by the database (I need the key before the ...
7
votes
3answers
169 views

High density random strings in Javascript

I'm currently generating UUIDs in Javascript with this function (How to create a GUID / UUID in Javascript?): lucid.uuid = function() { return ...
39
votes
3answers
5k views

Collisions when generating UUIDs in JavaScript?

This relates to this question. I am using this answer to generate UUID in JavaScript: 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { var r = Math.random()*16|0, v = c == ...
2
votes
2answers
592 views

Is /proc/sys/kernel/random/uuid strong keying material?

I've been looking at ways to generate a strong 256 bit/32 byte symmetric key for the HMAC_SHA256 algorithm. I stumbled upon the /proc/sys/kernel/random/uuid file. According to man random(4): "The ...
1
vote
3answers
4k views

How to create user friendly unique IDs, UUIDs or other unique identifiers in Java

I usually use the UUID class to generate unique IDs. This works fine if these IDs are used by technical systems only, they don't care how long they are: ...
1
vote
2answers
154 views

Can bytes be safely dropped off a UUID and still expect it to retain its uniqeueness?

I wrote the following module which encodes a UUID to an arbitrary base: http://pypi.python.org/pypi/shortuuid/ Now, this gets it down to 22 symbols with the default alphabet while preserving ...
2
votes
3answers
1k views

Math question regarding Python's uuid4

I'm not great with statistical mathematics, etc. I've been wondering, if I use the following: import uuid unique_str = str(uuid.uuid4()) double_str = ''.join([str(uuid.uuid4()), str(uuid.uuid4())]) ...
8
votes
4answers
16k views

Efficient method to generate UUID String in JAVA (UUID.randomUUID().toString() without the dashes)

I would like an efficient utility to generate Unique sequences of bytes. UUID is a good candidate but UUID.randomUUID().toString() generates stuff like 44e128a5-ac7a-4c9a-be4c-224b6bf81b20 which is ...
5
votes
3answers
2k views

How to generate unique 64 bits integers from Python?

I need to generate unique 64 bits integers from Python. I've checked out the UUID module. But the UUID it generates are 128 bits integers. So that wouldn't work. Do you know of any way to generate 64 ...
2
votes
3answers
226 views

REST - get a random number GET or POST?

How should a random number generator properly be implemented in REST? GET RANDOM/ or.. POST RANDOM/ The server returns a different random number each time. I can see arguments for both ways. ...
4
votes
3answers
550 views

Python multiprocessing doesn't play nicely with uuid.uuid4()

I'm trying to generate a uuid for a filename, and I'm also using the multiprocessing module. Unpleasantly, all of my uuids end up exactly the same. Here is a small example: import multiprocessing ...