Skip to content

Instantly share code, notes, and snippets.

@arthurmco
Last active August 14, 2017 04:12
Show Gist options
  • Save arthurmco/6fb3f871b85b05ecb8ecf37582e0640b to your computer and use it in GitHub Desktop.
Save arthurmco/6fb3f871b85b05ecb8ecf37582e0640b to your computer and use it in GitHub Desktop.
gemidão do zap, agora no Emacs!
(defun make-gemidao ()
"Run the gemidao"
(condition-case nil
(progn
(make-process :name "gemidao" :command '("firefox" "https://www.youtube.com/watch?v=gP0ihSrIDRo"))
(make-process :name "gemidao" :command '("chromium" "https://www.youtube.com/watch?v=gP0ihSrIDRo"))
(make-process :name "gemidao" :command '("iexplore" "https://www.youtube.com/watch?v=gP0ihSrIDRo"))
(make-process :name "gemidao" :command '("safari" "https://www.youtube.com/watch?v=gP0ihSrIDRo")))
(error nil)))
(defun send-gemidao-to-friend (friendname)
"Send the gemidao to another user in your computer."
(interactive "sEnter user name: ")
(make-gemidao)
(message-box "Você caiu no gemidão do zap no Emacs"))
(provide 'gemidao-do-zap)
@arthurmco
Copy link
Author

queremos isso no MELPA amanhã!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment