Hey There Lisp Lover, We're sending you this email because you ordered Conrad Barski's Land of Lisp. We just wanted to let you know that because we received so many orders from so many awesome people in such a short amount of time, we ran out of our supply of books here in the office. [...]
Good for them and Conrad. No Starch press always impresses me with their general geekiness and awesomeness. I've never actually read a bad book from them. If someone is interested in Linux I heartily recommend their 'How Linux Works' title for an internals tutorial.
That probably explains why Amazon was saying that I would probably not receive it until December. On the plus side, they must've gotten more in, because I just received my copy on Tuesday of this week.
hunchentoot_stop ()
{
echo -n "Stopping Lisp Hunchentoot Server process..."
echo ""
# 6200 is the port to signal end of lisp process
(telnet 127.0.0.1 6200 &) > /dev/null
(sleep 7)
}
Surely, there must be a better alternative for shutting down the process. Telnet? Really?
Somewhat related... I've been reading HN long enough to know that HN itself is run on some kind of Lisp (or is it Arc?). Is there an old post to HN that outlines the configuration of the software used?
Can you really saying that this is from "scratch" when using substantial prebuilt components? Isn't that like saying, "cookies from scratch using Betty Crocker cookie dough"?
I thought the same the first time I read it, but this is about a web server, not an http server, i.e. we're talking about the host, not the program receiving and sending data streams.
Quicklisp looks especially nice, hopefully solving the packaging and dependency situation.