Skip to content

Instantly share code, notes, and snippets.

@ryangreenberg
Created July 16, 2018 15:56
Show Gist options
  • Save ryangreenberg/ba35c81bde51fb6979c83b3866ec8e89 to your computer and use it in GitHub Desktop.
Save ryangreenberg/ba35c81bde51fb6979c83b3866ec8e89 to your computer and use it in GitHub Desktop.
Generate UUID in various languages

Python

python -c 'import uuid; print(uuid.uuid4())'

Ruby

ruby -r securerandom -e 'puts SecureRandom.uuid'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment