I wrote my first Applescript today and I thought it could be useful, so I decided to share it with you
This script generates a random UUID and copies it to the clipboard.
set the clipboard to (do shell script "python -c 'import uuid; print uuid.uuid1()'") |