About 51 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 …

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

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

  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 …

  5. What kind of data can you extract from a UUID? - Stack Overflow

    Nov 10, 2009 · I know that we could easily extract the uuid version number. Is there a reliable way to extract information like timestamp, MAC address? Thanks!

  6. Generating v5 UUID. What is name and namespace?

    The namespace is either a UUID in string representation or an Does it mean that I need to store it (UUID v4) somewhere in relation to the generated UUID v5? In either case, why is this not done …

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

    Jul 21, 2009 · 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 …

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

  9. .net - How can I generate UUID in C# - Stack Overflow

    Dec 12, 2011 · I am creating an .idl file programmatically. How do I create UUIDs for the interfaces and Methods Programmatically. Can I generate the UUID programmatically?

  10. When should I use uuid.uuid1 () vs. uuid.uuid4 () in python?

    Here is an alternative approach to UUID. Though the chance of collision is infinitesimal UUID doesn't guarantee uniqueness. To guarantee the uniqueness you may want to use compound key as …