A UUID (Universally Unique IDentifier) is an identifier that is created with the intent of being, as the name suggests, universally unique.

learn more… | top users | synonyms

2
votes
0answers
27 views

SecureRandom.uuid vs UUID gem

Is there a difference between ruby's SecureRandom.uuid (Ruby 1.9.3) and the UUID gem? Is the UUID gem the "old" way of doing things? From the docs I gather that the gem is more "safe" to be a real ...
1
vote
1answer
30 views

Change UUID format in Django foreign key

I have postgresql DB and using UUID as PK in my models. When I do something like model.rel_model.id it returns me uuid in 32 chars (without '-' separators, as uuid.hex does) - it so because I wrote ...
0
votes
0answers
14 views

Bluetooth UUID from String Crashing

I am trying to listen for connections to my BluetoothServerSocket, but happens that the creation of the UUID is crashing the application.. Don't know why. private void listenServerSocket() { ...
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
17 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 ...
-1
votes
0answers
19 views

RFC Compliant UUID v4 implementation to use with PHP [closed]

Edit: PECL UUID extension -> Based on libuuid, same one used in e2fsprogs http://pecl.php.net/package/uuid OSSP UUID PHP extension -> Looks independent implementation ...
1
vote
0answers
22 views

Making checks before rsyncing external drive on OSX

I have the following issue on OSX though I guess this could equally be filed under bash. I have several encrypted portable drives that I use to sync an offsite data store or as an on-the-go data store ...
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
1answer
51 views

this Java UUID5 implementation not passing unit test

I couldn't find a self-contained UUID5 implementation for Java, so I tried rolling this solution below. It passes some of my unit tests but fails others. Any obvious bugs in this? public static UUID ...
1
vote
2answers
44 views

How unique are the ids generated with CFUUID , in iOS?

The title is my question actually. Now that Apple doesnt allow any more the use of UUID i decided to go with the CFUUID. However i have some questions regarding it. Is is unique for every device? ...
0
votes
3answers
55 views

How to compare two ID

I have two Ids 85816465-FA7B-48B1-8AD3-7FB0A1B6C011 - 85816465-fa7b-48b1-8ad3-7fb0a1b6c011 As you can see, they are almost the same, but there is difference ) 85816465-FA7B-48B1-8AD3-7FB0A1B6C011 ...
0
votes
0answers
17 views

Android Bluetooth Connection without Scan

I'm currently working an appliction where i have. A server : my Computer. And a Client : my Android Device I've already built a version of my program using http connection, but now, I want to ...
-1
votes
0answers
10 views

How can I recover the UUID in BIOS [migrated]

In BIOS my UUID is showing all zeros after a re-install of authentic windows. This is causing some issues for my computer. Is it possible to retrieve/re-write this information?
-2
votes
1answer
34 views

ways to store uuid in android [closed]

I was wondering what will be the easiest and efficient way to store UUID in Android? I want to use UUID in my application for bluetooth transfer. The app will generate uuid when it runs for the first ...
2
votes
1answer
45 views

Are UUID's in Android specific to application within the device?

looking in the the web for answers, I am sort of confused id UUID's are unique to a service within the device. I want to know if an application on a particular device can generate a UUID during ...
0
votes
0answers
6 views

Best way to represent a UUID in Avro?

I am curious to understand the best practice for encoding one very specific type of data within Avro: UUIDs.
1
vote
1answer
192 views

Connecting multiple devices to bluetooth in Android

So far what I know that its possible to communicate to multiple devices from your android phone. But my case is that I want to connect two 'similar' devices. My understanding is that, I need to use ...
1
vote
1answer
88 views

UUID bluetooth and android devices

I'm trying to develop an application for Android devices that connects two devices, but the problem is that I can only connect (using Bluetooth) with PC Bluetooth or devices with another OS than ...
0
votes
1answer
86 views

Android get UUID(Services) of own bluetooth device

I am creating a application in which one module is there where i want to retrieve the services supported by my own Bluetooth device... Currently i am able to fetch the UUID of remote devices, by i ...
1
vote
2answers
45 views

Secure ID in Java with persistency

I'm preparing a Java library that need to assign a unique id to the generated objects for serialization purposes. Once a unique id is generated, I have to ensure that the next time I use the library, ...
0
votes
1answer
14 views

Ggenerating UUID in Jruby using java.util.UUID?

Is there any Gem available to generate UUID in Jruby using java.util.UUID?
0
votes
1answer
39 views

should i use sequence ids for database or uuid_short()?

i want to implement facebook like id's for user, pages, photo, album, event, comments and like. they all are unique id's and most of them can be accessed from http://facebook.com/{object_id} and to ...
1
vote
3answers
91 views

Cassandra: Generate a unique ID?

I'm trying to generate a unique ID that will serve as a column family primary key in Cassandra. I read some articles about doing this with java using UUID but its seems like there is a probability for ...
0
votes
2answers
314 views

Unique iOS Device ID Across Applications [duplicate]

I'm currently working on a suite of iOS applications that will be using the same server for authentication. The server uses a UDID for device authentication. I'm aware that uniqueIdentifier is now ...
0
votes
0answers
24 views

Moved MySQL datadir to Secondary Drive, MySQL Won't Startup [closed]

Evening, I run Linux from a 100GB SSD, and because I have a lot of databases, I have moved the MySQL datadir to a different hard drive (/media/Data/Databases/). I mount the Data drive on startup ...
1
vote
1answer
55 views

Defina a default type mapping on Hibernate 4

I need to define/override the default hibernate mapping to solve the problem of the java.util.UUID default mapping. I've been looking at several comments related to this topic: Here Postgresql UUID ...
0
votes
0answers
18 views

How are NTFS volumes UUIDs evaluating in linux-bases OSes?

could you help me, please. I'm a noob, I'm lost at util-linux-ng sources... How are NTFS volumes UUIDs evaluating in linux-based operating systems? Why ntfs partitions UUIDs are 16 bytes long instead ...
0
votes
2answers
77 views

Modify Devise to support UUID primary key

I want to modify Devise to make it work with a users table with a UUID primary key with PostgreSQL. Here is the migration: class DeviseCreateUsers < ActiveRecord::Migration def change ...
-1
votes
1answer
90 views

How can I access the iOS advertising identifier from a Rails app?

I've written an iOS app that gets a user's advertising identifier UUIDString and writes it to a database along with that user's score. I also have a corresponding Ruby on Rails web app, and I want to ...
0
votes
0answers
71 views

jqgrid Use inline add row and generate UUID before posting new data

sorry for trivial question but I am new to the jqgrid. I am using the commercial version of the product and their forum has not being very helpful so far. The following is my code: // Connection to ...
1
vote
1answer
25 views

UUID send to client with str(value) but ib server when receive back badly formed hexadecimal string

I ma using in SQLAlchemy uuid4 for one column and I got value like 16d11d6abdaf4fe9905a56e0be8d15d1 I need to send this id to client using json format and in future to receive from client id and make ...
0
votes
1answer
39 views

UUID when we select database - performance test

I have primary key UUID (in the number, not as a String). String is very slow. Is standard Integer primary key much more faster then UUID when I'm writing SQL SELECT? Do you have that tastes?
0
votes
1answer
98 views

python: how to convert a valid uuid from String to UUID?

I receive the data as { "name": "Unknown", "parent": "Uncategorized", "uuid": "06335e84-2872-4914-8c5d-3ed07d2a2f16" }, and I need to convert the uuid from String to ...
0
votes
0answers
110 views

Hibernate with user defined IdentifierGenerator UUID

I am working with a environment using Hibernate 3.6. I am trying to implement a MySQL table that uses UUIDs from java.util as the PK, these UUIDs are generated from multiple Strings defined by the ...
0
votes
2answers
49 views

Can You Verify an iOS UUID Through iCloud via PHP

I have not worked with iCloud but have been looking through some of the documentation. I am simply trying to figure out if it is possible to send a UUID & an App ID (?) to iCloud and have iCloud ...
1
vote
2answers
84 views

iPhone iOS createUUID leaking memory with ARC

I have a little method I found on the web that creates universally unique identifiers (UUID). The xCode static analyzer tells me that this method is leaking memory where it is marked in the code ...
0
votes
2answers
44 views

How to deal with guid or uuid type primary key in Yii's urlManager instead of only digital type?

I'm trying to figure out how to pass the guid type primary key value in the HTTP GET method to the controller. I have changed my urlManager as follows: 'urlManager'=>array( ...
1
vote
1answer
100 views

How to generate unique id in Dart

I write websocket chat. How to generate unique id for user? now i use this code: id = new DateTime.now().millisecondsSinceEpoch; is there any more neat solution?
2
votes
1answer
35 views

is libuuid rfc4122 compliant

I am currently using uuid_generate_random and uuid_unparse of libuuid to generate uuids. According to the contract requirements of the project that I am working on, uuids generated by our system are ...
1
vote
1answer
62 views

RFC 4122 UUID on Android?

Is there a way to generate RFC 4122 version 1 UUIDs on Android? UUID version 1 means timestamp-based UUIDs.
-1
votes
1answer
64 views

Time-based UUID (version 1) on iOS?

How can we create a RFC 4122 complaint UUID (version 1, time-based) with iOS?
0
votes
1answer
134 views

Can the UID on a RFID chip be overriden?

I'm working on a project where I use RFID chips to identify different units, using the UID on the chip. But a security issue came to mind. Is it anyway possible the override or spoof the UID of a RFID ...
0
votes
1answer
94 views

MariaDB BEFORE INSERT TRIGGER for UUID

I'm using MariaDB 5.5.29 on a Windows 64 Platform. I created this table: CREATE TABLE DM_COUNTRIES ( COUNTRY_UUID BINARY(16) NOT NULL, C_NAME VARCHAR(255) NOT NULL UNIQUE, C_LOCALNAME ...
0
votes
1answer
76 views

How do i generate a random UUID in xquery

Can anyone help me with this one? I want to be able to generate a random UUID in x-query. Is there any function to do this? thanks!
5
votes
3answers
254 views

When using UUIDs, should I also use AUTO_INCREMENT?

We're building a new web app that will have an offline iPad/Android app version on a number of local devices that will involve inserts of new data. As such we require the use of UUIDs to allow for the ...
0
votes
2answers
65 views

How can I install packages on my heroku app?

I have an app that makes use of shortuuid (https://pypi.python.org/pypi/shortuuid/0.1) that is working fine locally when I run it with runapp.py: import os from paste.deploy import loadapp from ...
0
votes
2answers
43 views

What happens when an invalid argument is fed to uuid.UUID()?

Will an exception get thrown? Does UUID() ever silently fail? Is there ANY circumstance in which 'myStatus' from myStatus = True myUUID = uuid.UUID( someWeirdValue ) if myUUID == None: myStatus = ...
2
votes
1answer
231 views

Why iOS device has both UUID and serial number?

Why do iOS devices have both the UUID and serial number? Are they not the same; a number that uniquely identifies a device?
0
votes
1answer
53 views

Generete Unique Id and pass into text field

I am new to php and would like some help on solving a problem I am having. I have a form that has 3 visible input fields, Name, Email address, phone number. Also it includes 3 hidden fields, one is a ...
1
vote
2answers
173 views

How to generate unique Long using UUID

I have a requirement to generate unique Long ids for my database primary key column. I thought i can use UUID.randomUUID().getMostSignificantBits() but sometimes its generating some negative long ...

1 2 3 4 5 14