Last active
February 9, 2020 06:13
-
-
Save chrisbarrett/6097925 to your computer and use it in GitHub Desktop.
Paste into the scratch buffer and `M-x eval-buffer` to begin the journey.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(url-copy-file "http://ulrichdesign.ca/wp-content/uploads/2011/11/YOU-LACK-discipline.jpg" | |
"~/discipline.jpg") | |
(defun you-lack-discipline () | |
(interactive) | |
(insert-image (create-image "~/discipline.jpg"))) | |
(dolist (k '([up] [left] [down] [right])) | |
(global-set-key k 'you-lack-discipline)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment