0
votes
4answers
82 views
What do you say of chopping type-4 UUID in this manner
Check this,
List<String> list = new ArrayList<String>();
for (int i = 0; i < 10000; i++) {
String value = (""+UUID.randomUUID().getLeastSignificantB …
0
votes
5answers
63 views
What kind of data can you extract from a UUID?
I know that we could easily extract the uuid version number. Is there a reliable way to extract information like timestamp, MAC address?
Thanks!
1
vote
3answers
89 views
Get UUID without iTunes
Hi, I am looking for a way to extract my iPhone (OS v3.0) UUID without using iTunes. I tried "UUID Revealer" from Cydia Store but that is not working on my system. I could SSH with …
0
votes
1answer
13 views
How to efficiently lookup information about a UUID in a distributed environment?
Hello All,
I am currently partitioning the UUID space using modulo, so data lookup doesn't require pinging every single server. However, the main problem with modulo is scaling be …
0
votes
2answers
29 views
RDF and uuid. why no urn schema ?
<rdf:Description about='uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031'>
Why this about does not contain urn:uuid:8949dbc6-31ad-11d9-9c7d-d112c21f7031 instead? Isn't the uuid a …
0
votes
3answers
129 views
Find UUID of connected Iphone devices from the objective-c on the mac
Can I find UUID of connected Iphone devices from the objective-c on the mac? Something of a list of connected Iphones trough the usb cable.
1
vote
5answers
242 views
How to make unique short URL with Python?
How can I make unique URL in Python a la http://imgur.com/gM19g or http://tumblr.com/xzh3bi25y
When using uuid from python I get a very large one. I want something shorter for …
1
vote
4answers
47 views
Creating IDs for uniqueness and URL referentiality
I need to create objects and make them available on the web. Similarly to stackoverflow, I have something like.
http://stackoverflow.com/users/78374
However, in my case the ID o …
0
votes
1answer
16 views
UUID namespace and name. How to retrieve it ?
I have the following problem. I assign to any object in my database a UUID. When I get a UUID from any source, to obtain the object I need to know what type of object is, so I can …
13
votes
7answers
381 views
How unique is UUID?
How safe is it to use UUID to uniquely identify something (I'm using it for files uploaded to the server)? As I understand it, it is based off random numbers. However, it seems to …
20
votes
9answers
3k views
Advantages and disadvantages of GUID / UUID database keys
I've worked on a number of database systems in the past where moving entries between databases would have been made a lot easier if all the database keys had been GUID / UUID value …
1
vote
2answers
1k views
Configure Hibernate to use Oracle’s SYS_GUID() for Primary Key
I am looking for a way to get hibernate to use oracle's SYS_GUID() function when inserting new rows. Currently my DB tables have SYS_GUID() as the default so if hibernate simply ge …
21
votes
8answers
3k views
How to create a GUID / UUID in Javascript?
I'm trying to create globally-unique identifiers in Javascript. I'm not sure what routines are available on all browsers, how "random" and seeded the built-in random number genera …
2
votes
4answers
267 views
cutdown uuid further to make short string
I need to generate unique record id for the given unique string.
I tried using uuid format which seems to be good.
But we feel that is lengthly.
so we need to cutdown the uuid …
0
votes
2answers
83 views
What are the various options and their tradeoffs for storing a UUID in a MYSQL table?
I'm planning on using client provided UUID's as the primary key in several tables in a MySQL Database.
I've come across various mechanisms for storing UUID's in a MySQL database b …
