Skip to content

Instantly share code, notes, and snippets.

There he lie, in his bed, a cold sweat freezing him like arctic wind. He had no idea what had happened. Hours later this had happened to him.
Josh had woken up, or so he thought, from sleep, on a normal night, on a normal Wednesday. He heard noises coming outside of his window. “Come!” he had heard a familiar voice cry.
“Who's there?” Josh had yelled. Just as suddenly as he heard the voice, the window had opened.
“Finally, Jesus Christ! Didn't you here me?” Drake exclaimed.
“Why the fuck are you here?” yelled Josh.
He replied, “Come out the window, you must. The windflames are about to kill you and I.”
Josh had said, “What the fuck? You come to my house at 3 in the fucking morning...”
“2:25,” interrupted Drake.
“Smartass,” said Josh sarcastically. “Anyway, you say some firefucks are, I mean windflames, are coming to kill you and I.”
Josh's friend replied, “That's what I said, didn't I?”
http://paste.pocoo.org/show/216783/
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCdBqyggVPEPTtpwS325slKUFUEUL6C4p8sL/VsCnRjaPekPUiH3GkmeBkBfb4U0jTk5sT3KFStD9KPsiowG0Cvfo/ksXJ0B1mxYaGi/0tryIeHJ7H0sll+Ga6UR4iCg+BnrJpcIYg+8VGDN09yXgMKrYIDFSPkWzdfs5KqAaP5pNBtpAAGbOFwaE8WHzn5tqnqHo7CbHq6KPSIuaU4CQ/AXpUjsx2phPB2AElUpGBfv1E4lpT3FNZiJ2SJBFxfvNsPuqepOufvjul5GoJOcTHXFx4pdMeEWAvTlM/FlszcChZaPPh79vuwUBin2L4aKq+OwC8u9SJ11JsMZ6QBfCa7 ircd@opal
http://paste.pocoo.org/show/216783/
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCdBqyggVPEPTtpwS325slKUFUEUL6C4p8sL/VsCnRj
aPekPUiH3GkmeBkBfb4U0jTk5sT3KFStD9KPsiowG0Cvfo/ksXJ0B1mxYaGi/0tryIeHJ7H0sll+Ga6U
R4iCg+BnrJpcIYg+8VGDN09yXgMKrYIDFSPkWzdfs5KqAaP5pNBtpAAGbOFwaE8WHzn5tqnqHo7CbHq6
KPSIuaU4CQ/AXpUjsx2phPB2AElUpGBfv1E4lpT3FNZiJ2SJBFxfvNsPuqepOufvjul5GoJOcTHXFx4p
dMeEWAvTlM/FlszcChZaPPh79vuwUBin2L4aKq+OwC8u9SJ11JsMZ6QBfCa7 ircd@opal
(progn (load "/usr/share/emacs/site-lisp/slime/swank-loader.lisp" :verbose t) (funcall (read-from-string "swank-loader:init")) (funcall (read-from-string "swank:start-server") "/tmp/slime.10824" :coding-system "iso-latin-1-unix"))
This is SBCL 1.0.37, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.
SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses. See the CREDITS and COPYING files in the
distribution for more information.
*
(define-easy-handler (test-page :uri "/") (entered-text)
(setf (content-type*) "text/html")
(html-string
(:html
(:head
(:title "Hello world!"))
(:body
(:h "Foo Bar")
(:p "Text you entered:" (:br)
(format nil "~a" entered-text))))))
(define-easy-handler (test-page :uri "/") (entered-text)
(setf (content-type*) "text/html")
(html-string
(:html
(:head
(:title "Hello world!"))
(:body
(:h "Foo Bar")
(:p "Text you entered:" (:br)
(str entered-text))))))
(define-easy-handler (test-page :uri "/") (entered-text)
(setf (content-type*) "text/html")
(html-string
(:html
(:head
(:title "Hello world!"))
(:body
(:h1 "Foo Bar")
(:p "Text you entered:" (:br)
(str entered-text) (:br)
(define-easy-handler (test-page :uri "/") (entered-text)
(setf (content-type*) "text/html")
(html-string
(:html
(:head
(:title "Hello world!"))
(:body
(:h1 "Foo Bar")
(:p "Text you entered:" (:br)
(str entered-text) (:br)