Add uncategorised page for those things I can't give a category

This commit is contained in:
2018-06-12 13:01:02 +10:00
parent e6812840d3
commit d06e6d674b
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -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)
+9
View File
@@ -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.