diff --git a/_sidebar.md b/_sidebar.md index 5d82961..5d271e6 100644 --- a/_sidebar.md +++ b/_sidebar.md @@ -17,5 +17,6 @@ - [Incident Management](categories/devops/incident.md) - [Web](categories/web.md) - [Success Team Work](categories/team-work.md) +- [Uncategorised](categories/uncategorised.md) - English - [Business English Speaking for Professionals](categories/english/business-spoken-english.md) diff --git a/categories/uncategorised.md b/categories/uncategorised.md new file mode 100644 index 0000000..dbb22c2 --- /dev/null +++ b/categories/uncategorised.md @@ -0,0 +1,9 @@ +# Uncategorised + + +## Some interesting questions + +### UUID or UUID4 + +* `UUID` use current time and your computer MAC address to generate the id +* `UUID4` which is much simpler. Each and every bit of a UUID v4 is generated randomly and with no inherent logic. With the sheer number of possible combinations (2^128), it would be almost impossible to generate a duplicate unless you are generating trillions of IDs every second, for many years.