diff --git a/src/components/lib/Uuid.svelte b/src/components/lib/Uuid.svelte new file mode 100644 index 00000000..e16604dc --- /dev/null +++ b/src/components/lib/Uuid.svelte @@ -0,0 +1,120 @@ + + +
+

Generated UUID: {uuid}

+
+ +
+ + Copied! +
+
+
+ + diff --git a/src/content/project/2024-02-19-uuid.mdx b/src/content/project/2024-02-19-uuid.mdx new file mode 100644 index 00000000..8520a046 --- /dev/null +++ b/src/content/project/2024-02-19-uuid.mdx @@ -0,0 +1,27 @@ +--- +title: UUID Tool +description: UUID Tool for easy generation of UUIDs (v4) +createdDate: "2024-02-19" +coverImage: "../../images/uuid.png" +imageAlt: "Screenshot of uuid tool" +--- + +import Uuid from "../../components/lib/Uuid.svelte"; + +
+ +
+ +## What is a UUID? + +A UUID (Universally Unique Identifier) is a 128-bit number used to identify +information in computer systems. The term globally unique identifier (GUID) +is also used, typically in software created by Microsoft. + +When generated according to the standard methods, UUIDs are for practical +purposes unique, without depending for their uniqueness on a central +registration authority or coordination between the parties generating them, +unlike most other numbering schemes. + +While the probability that a UUID will be duplicated is not zero, it is close +enough to zero to be negligible. diff --git a/src/images/uuid.png b/src/images/uuid.png new file mode 100644 index 00000000..7bbe91ab Binary files /dev/null and b/src/images/uuid.png differ