About 28,200,000 results
Open links in new tab
  1. glossary - What is a UUID? - Stack Overflow

    Nov 15, 2008 · UUID is the same as GUID (Microsoft) and is part of the Distributed Computing Environment (DCE), standardized by the Open Software Foundation (OSF). As mentioned, they are intended to have a high likelihood of uniqueness over space and time and are computationally difficult to guess.

  2. How to create a GUID/UUID in Python - Stack Overflow

    Feb 10, 2009 · How do I create a GUID/UUID in Python that is platform independent? I hear there is a method using ActivePython on Windows but it's Windows only because it uses COM. Is there a method using plain P...

  3. Is there any difference between a GUID and a UUID?

    Oct 29, 2008 · Reserved, Microsoft Corporation backward compatibility Reserved for future definition. According to RFC 4122, all UUID variants are "real UUIDs", then all GUIDs are real UUIDs. To the literal question "is there any difference between GUID and UUID" the answer is definitely no for RFC 4122 UUIDs: no difference (but subject to the second part below).

  4. javascript - How do I create a GUID / UUID? - Stack Overflow

    May 7, 2019 · How do I create GUIDs (globally-unique identifiers) in JavaScript? The GUID / UUID should be at least 32 characters and should stay in the ASCII range to avoid trouble when passing them around. I'm...

  5. Which UUID version to use? - Stack Overflow

    Dec 3, 2013 · Which version of the UUID should you use? I saw a lot of threads explaining what each version entails, but I am having trouble figuring out what's best for what applications.

  6. Generating a UUID in Postgres for Insert statement?

    Sep 20, 2012 · Postgres natively supports UUID as a data type, even capable of being indexed and used as primary key. But to generate a UUID value, such as to establish a default value for a column, you need a Postgres extension (a plugin). Many builds (distributions) of Postgres include such an extension but do not activate the extension. See the correct answer by Craig Ringer …

  7. guid - How unique is UUID? - Stack Overflow

    Version 4 is the random number UUID. There's six fixed bits and the rest of the UUID is 122-bits of randomness. See Wikipedia or other analysis that describe how very unlikely a duplicate is. Version 3 is uses MD5 and Version 5 uses SHA-1 to create those 122-bits, instead of a random or pseudo-random number generator.

  8. guid - UUID format: 8-4-4-4-12 - Why? - Stack Overflow

    May 21, 2012 · A UUID can be used for multiple purposes, from tagging objects with an extremely short lifetime, to reliably identifying very persistent objects across a network. The internal representation of a UUID is a specific sequence of bits in memory, as described in Section 4. To accurately represent a UUID as a URN, it is necessary to convert the bit

  9. NPM: Cannot find module 'uuid' - Stack Overflow

    I have this message when i try to use npm: > $ npm module.js:472 throw err; ^ Error: Cannot found module 'uuid' at Function.Module._resolveFilename (module.js:470:15) at Function.

  10. uuid - Safest way to generate a unique hash in Python - Stack …

    Dec 2, 2017 · I need to produce unique identifiers that can be used in filenames and can be reproduced given the same input values. I need to produce millions of these identifiers as the source input has millio...