Top "Uuid" questions

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

How to test valid UUID/GUID?

How to check if variable contains valid UUID/GUID identifier? I'm currently interested only in validating types 1 and 4, but it …

javascript regex validation uuid guid
How good is Java's UUID.randomUUID?

I know that randomized UUIDs have a very, very, very low probability for collision in theory, but I am wondering, …

java uuid
How can I generate UUID in C#

I am creating an .idl file programmatically. How do I create UUIDs for the interfaces and Methods Programmatically. Can I …

c# .net visual-studio-2008 com uuid
UUID max character length

We are using UUID as primary key for out oracle DB, and trying to determine an appropriate max character length …

oracle primary-key uuid
How should I store GUID in MySQL tables?

Do I use varchar(36) or are there any better ways to do it?

mysql guid uuid
How to get a unique device ID in Swift?

How can I get a devices unique ID in Swift? I need an ID to use in the database and …

ios swift uuid uniqueidentifier
Is there a method to generate a UUID with go language

I have code that looks like this: u := make([]byte, 16) _, err := rand.Read(u) if err != nil { return } u[8] = (u[8] | 0…

go uuid
How to create a GUID/UUID using iOS

I want to be able to create a GUID/UUID on the iPhone and iPad. The intention is to be …

ios uuid guid
A TypeScript GUID class?

Does anyone know of a good, solid, implementation of C# like GUID (UUID) in TypeScript? Could do it myself but …

typescript uuid guid
Is Secure.ANDROID_ID unique for each device?

I am using this call: Secure.getString(getApplicationContext().getContentResolver(), Secure.ANDROID_ID); To get a UID for the device. I …

android uuid uniqueidentifier