Comic Navigation
Alt Text
An emacs lisp program that prints a little guy comic. The caption reads "Bad news, they found out how to automate Little Guy Comics"
5/7/2026
Here's the source code if you want to make your own. All you have to do is copy it into your emacs scratch buffer, which you definitely have open all the time, right?
(defun make-little-guy-comic ()
"Makin little guy comics"
(interactive)
(message (concat
"-----------------------------\n"
"|+5/7 |\n"
"| |\n"
"| |\n"
"| #################### |\n"
"| # # |\n"
"| # ########## # |\n"
"| # # # # # # |\n"
"| # # # # # # |\n"
"| ## ########## ## |\n"
"| # # # # |\n"
"| # # # # |\n"
"| # # # # |\n"
"| # # # # |\n"
"| # #################### # |\n"
"| # # # # |\n"
"| # # # # |\n"
"| # # |\n"
"| # # |\n"
"| ### ### |\n"
"------------------------------\n"
" \n"
" Bad news, they found out how \n"
" to automate Little Guy \n"
" Comics \n"
)))
(make-little-guy-comic)