python -c "import uuid;print uuid.uuid4()"Changing that to a emacs function so I can insert them where ever I need we get:
(defun genUUID () "Generates a UUID" (interactive) (shell-command "python -c \"import uuid;print uuid.uuid4()\"" t) )
A blog of my ideas, findings and thoughts about the stuff I do with technology
python -c "import uuid;print uuid.uuid4()"Changing that to a emacs function so I can insert them where ever I need we get:
(defun genUUID () "Generates a UUID" (interactive) (shell-command "python -c \"import uuid;print uuid.uuid4()\"" t) )
0 comments:
Post a Comment