A UUID (Universally Unique IDentifier) is an identifier that is created with the intent of being, as the name suggests, universally unique.
5
votes
0answers
269 views
getting UUIDs from G- Shock watch bluetooth android
I am working on Bluetooth Low Energy in Android. I want to get the UUIDs of remote device when the device is paired. I have found that BluetoothDevice.getUuids() will give the UUIDs of a remote ...
3
votes
0answers
132 views
How can I get the current Macbook's UUID from Objective-C?
Does the SDK provide an API for retrieving the current Macbook's UUID?
3
votes
0answers
203 views
Java / .NET implementation of deterministic GUID/UUID generation
I am trying to replicate the following .NET code in Java
https://github.com/LogosBible/Logos.Utility/blob/master/src/Logos.Utility/GuidUtility.cs
I have written equivalent code in Java but I get ...
3
votes
0answers
515 views
Mac OS X gethostuuid function
It appears that a "gethostuuid" function was added in Mac OS X 10.6:
http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man2/gethostuuid.2.html
Is there any ...
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 ...
2
votes
0answers
116 views
How do I auto-generate a GUID for a join table?
I'm using Hibernate 4.1.0.Final, JPA 2.0, and MySQL 5.5. I have the following entity:
@GenericGenerator(name = "uuid-strategy", strategy = "uuid.hex")
@Entity
@Table(name = "cb_organization", ...
1
vote
0answers
23 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 ...
1
vote
0answers
119 views
How to generate UUID in J2ME?
I want to generate UUID in J2ME. but I can't get it. please help me.
I found everywhere..
UUID uuid= UUID.randomUUID();
System.out.println("UUID : " + uuid);
but this is not working in my ...
1
vote
0answers
142 views
Random UUID generation
Greetings fellow programmers,
I am writing a simple bluetooth application to discover devices and connect with them.
When I use the UUID "00001101-0000-1000-8000-00805F9B34FB" to connect with my ...
1
vote
0answers
79 views
Create uuid in vmdk without VboxManage
How can I add the uuid to the image of the hard disk *.vmdk? I have no rights install the kernel modules, so any command VBoxManage I get:
WARNING: The vboxdrv kernel module is not loaded. ...
1
vote
0answers
126 views
install uuid-dev on heroku
I am quite new to dealing with dependencies on Linux and an application that I wish to install depends on Unix libraries. I have installed the application on my local Linux machine but when I tried to ...
1
vote
0answers
229 views
Is Mysql UUID_SHORT() comparable to UUID()
A quick question or opinion if you will.
I need to generate some UUID's for a database table.
Auto incrementing keys won't cut it as I need the key to be unique across databases and systems also. ...
1
vote
0answers
774 views
Setting UUID strategy throw me an error
after a lot of googling and debugging, I can't figure it out why I get an error when using UUID strategy in my Model instance.
I am using localStorage to store remote data on the user's device, ST2 ...
1
vote
0answers
96 views
uuid_it : Can't mass-assign protected attributes: uuid
I used uuid_id gem to generate UUID for various models in my application(Rails 3.2.5 with Ruby 1.9.3p194). I correctly followed the steps given here
I am getting this error while creating the model ...
1
vote
0answers
194 views
Is the admob tracking methods safe to use on iOS?
I want to somehow know when a user has pressed an ad from admob and know if an app download from the app-store came from an click on an ad.
In the documentation for admob about this on this link:
...
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.
...
0
votes
0answers
10 views
Rails 4.0 integer ID -> UUID / Add options hash to table in ActiveRecord Migration?
stackoverflow newbie here, although I've been on here many times to look for helpful answers in the past. This is my first question though, so please be nice :)
I've been trying to figure out how to ...
0
votes
0answers
18 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
0answers
18 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 ...
0
votes
0answers
8 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.
0
votes
0answers
19 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
0answers
74 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 ...
0
votes
0answers
118 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
0answers
19 views
WebSphere v8.5: What is the equivalent of com.ibm.ejs.util.Uuid;
I have the following legacy code (WASv6.1)
import com.ibm.ejs.util.Uuid;
...
return Uuid.generateUuid().subSequence(0, 65).toString();
When I look at newer options I see...
...
0
votes
0answers
73 views
Generating UUID takes a long time
When my application first sets up a UserTransaction for Hibernate, it takes ten minutes to do so. I have gone through the stack and it hangs on a UUID.generateRandom().
0
votes
0answers
146 views
Writing file stream in SOAP response to file with Python
I am working with a SOAP web services that has three methods: 1) one to request that a certain file be created on the server, 2) one to check whether the file has been created,a nd one to download the ...
0
votes
0answers
68 views
Uncaught ReferenceError: clock is not defined
I need to generate a uuid with sencha touch
requires: ['Ext.data.identifier.Uuid'],
in the code i reconfigure the uuid
Ext.data.identifier.Uuid.Global.reconfigure({
version: 1,
...
0
votes
0answers
94 views
Hibernate ID using UUID2 not working with column length 36
I am currently generating the hibernate identifier using UUID strategy.
@Id
@GeneratedValue(generator = "system-uuid")
@GenericGenerator(name = "system-uuid", strategy = "uuid")
@Column(length = 36)
...
0
votes
0answers
26 views
Is it counter-intuitive to have the property “id” be part of a composite key to uniquely identify an entity?
Struggling with a bit of naming conventions here.
I have an object which is uniquely identifiable through two properties: the UUID of its parent and an auto-incremented count.
Example:
Parent ...
0
votes
0answers
174 views
Optimal UUID RegEx with optional delimeters
I have already found a question for UUID regular expressions here, but these expressions do not account missing delimeters.
I have come up with the following expression, but is there a more optimal ...
0
votes
0answers
167 views
ScalaQuery Table with UUID
Is there a way to create a scalaquery table with a UUID key:
val User = new Table[(UUID,String,String)]("Users") {
def id = column[UUID]("UserID", O.PrimaryKey)
def username = ...
0
votes
0answers
85 views
Django custom field for UUID using binary column type
Any django plugin for custom UUID Field using binary column type? (I found some using char type which could cost too much space in my project scenario.)
or more detailed, I need an example of custom ...
0
votes
0answers
55 views
php: compare UUID and strings
The following code is not working:
if ($entryByPhaseID["activity_ID"] == "50e5cde678bf94.62826693")
{
echo $entryByPhaseID["activity_ID"]. ...
0
votes
0answers
124 views
How could I get the bluetooth UUIDs of my own android device?
I currently can fetchUuidsWithSdp of a remote device. (getUuids doesn't work, not sure why)
But how could I get the UUIDs of my own android device?
It is supposed that when I successfully execute ...
0
votes
0answers
62 views
Identifying UUID
I am building a application where i will scan for all bluetooth devices and connect to the interested bluetooth device.
I read that I need the UUID of the device so that i can connect to it.
I am ...
0
votes
0answers
51 views
Difference between OSSP vs PECL-extension based UUIDs in PHP
Team sof,
I wish to understand the following concepts, as its blocking my work. Please clarify my doubts.
Problem : I am supposed to generate Name-based UUIDs and I generated then using OSSP-php ...
0
votes
0answers
68 views
phpCassa doesn't recognize UUID when passed as string
I'm having a problem with UUIDType in Cassandra. I'm using phpCassa. When I set the id as string I get an error saying:
Notice: Trying to get property of non-object in ...
0
votes
0answers
83 views
link_to model with binary uuid
I'm using uuid for my models who will have comments. I do this so i don't have to define any types in my comments table.
For best performance and storage limits i have my uuid as binary in my tabel.
...
0
votes
0answers
289 views
mysql innodb primary key
Currently we have tables that has type 4 UUID(random) as primary key.
Our application layer does a batch insert into DB.
But still since the primary key is random, this will result in multiple disk ...
0
votes
0answers
222 views
Declaring uuid_t type variable
I want to use libuuid in my program.
I copied over the uuid.h header file and created two symlinks - libuuid.so & libuuid.so.16
pointing to libuuid.so.16.0.22
I have included the directory ...
0
votes
0answers
236 views
fetchUuidWithSdp always giving the cached UUID
i am writing an app in which i have to do a service discovery on a selected device, but whenever i am doing a fetchUuid it is always giving me the cached UUIDs on the remote device.
here is what i am ...
0
votes
0answers
414 views
XCode: all my archived iOS dSYM files have the same UUID?
Long time listener, first time caller. 8^)
I'm using 10.6.8 running XCode 4.2 building for an iOS 5.0 iPad app with Ad Hoc Provisioning (FWIW, I can't upgrade any of this [yet]; company ...
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 ...
0
votes
0answers
30 views
Idendify valid purchase owner inside android
I read a lot about androids security. We have a Server side Application that communicate with our Android app. The user can buy Tickets from the server which are validated by another app. Because this ...
0
votes
0answers
207 views
Querying by non-mongo-generated Id (Java UUID) in Morphia
I know this is fairly embarrassing because querying by ID is like a trivial use case of databases, but for some reason, I'm having issues with the java UUID class.
public class ARecord extends ...
0
votes
0answers
253 views
Android Bluetooth: Connecting as a Client
I am attempting to connect an android device as client to a Parani-ESD210 module (http://sena.com/products/industrial_bluetooth/esd.php).
Currently I have an activity class which discovers the name ...
0
votes
0answers
56 views
Change master table PK and update related table FK (changing PK from Autoincrement to UUID on Mysql)
I have two related tables: Groups and Clients. Clients belongs to Groups so I have a foreign key "group_id" that references the group a client belongs to.
I'm changing the Group id from an ...
0
votes
0answers
141 views
I cannot get the device.uuid in the second page of Iphone Phonegap
I have create a phonegap project in xcode.
At the first page index.html, I add the code to get the device.uuid in the onDeviceReady(), and print it out as alert. Then I add a form and submit/pass it ...
0
votes
0answers
459 views
Why does Win32_ComputerSystemProduct UUID returns all F's?
I'm running the following code on a Windows XP SP3 machine with the purpose of obtaining its UUID:
On Error Resume Next
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer ...

