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

    Aug 12, 2009 · 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, …

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

    Nov 2, 2021 · Reserved, Microsoft Corporation backward compatibility Reserved for future definition. According to RFC 4122, all UUID variants are "real UUIDs", then all GUIDs are real …

  3. 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 …

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

    Aug 6, 2022 · 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 …

  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 v5 UUID. What is name and namespace?

    The generated type 3 or type 5 UUID holds a (partial) hash of the namespace id and name-within-namespace (key). It no more holds the namespace UUID than does a message MAC hold the …

  7. What exactly is GUID? Why and where I should use it?

    Dec 16, 2008 · GUID technically stands for globally unique identifier. What it is, actually, is a 128 bit structure that is unlikely to ever repeat or create a collision. If you do the maths, the domain …

  8. 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 …

  9. javascript - How to test valid UUID/GUID? - Stack Overflow

    Jan 21, 2020 · How to check if variable contains valid UUID/GUID identifier? I'm currently interested only in validating types 1 and 4, but it should not be a limitation to your answers.

  10. random - Create a GUID / UUID in Java - Stack Overflow

    Mar 8, 2023 · The Java UUID Generator (JUG) implementation purports to support "all 3 'official' types of UUID as defined by RFC-4122 " ... though the RFC actually defines 4 types and …