About 67 results
Open links in new tab
  1. 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 …

  2. How to write an extremely efficient AND testable GUID generator

    Sep 24, 2024 · How to write an extremely efficient AND testable GUID generator Asked 1 year, 3 months ago Modified 1 year, 3 months ago Viewed 1k times

  3. Generate Globally Unique Identifier (GUID) in Windows

    Jan 1, 2020 · It's nearly impossible for the numbers generated for the GUID to have two numbers repeated making them unique. For more information about GUID, see: GUID structure (Windows) …

  4. Generating a plain GUID in Visual Studio - Stack Overflow

    Oct 30, 2019 · 2 Install this extension: Insert Guid by Mads Kristensen (works with Visual Studio 2017, 2019, 2022). And you will have a new entry in the Edit menu (with the shortcut Ctrl + K, Ctrl + …

  5. Generate GUID in Windows with batch file - Stack Overflow

    Nov 30, 2010 · How can I generate a GUID in a batch file running using the commandline in Windows?

  6. How to generate unique ID with node.js - Stack Overflow

    The randomUUID () method of the Crypto interface is used to generate a v4 UUID using a cryptographically secure random number generator. Return A string containing a randomly …

  7. How to generate a Guid in SQL Server? - Stack Overflow

    Dec 20, 2016 · I need to create an Id as Guid in SQL(no identity) How I can do this? I defined the Id as uniqueidentifier but what is save in Db is 00000000-0000-0000-0000-000000000000

  8. php - How to generate a new GUID? - Stack Overflow

    Feb 10, 2014 · I'm working on a web service which requires a new GUID() passed as a reference to a method within the service. I am not familiar with C# or the GUID() object, but require something …

  9. Javascript GUID (Global Unique Identifier) Generator Explanation

    Aug 13, 2017 · I'm trying to write a JavaScript GUID generator for 8 characters including lowercase / uppercase letters, numbers and symbols. I found these solutions but need an explanation on what is …

  10. c# - How to seed GUID generation? - Stack Overflow

    Nov 2, 2012 · What would be the easiest way to code a function in .NET to generate a GUID based on a seed so that I can have greater confidence about its uniqueness? string GenerateSeededGuid(int …