Land of Lisp is finally out...and has a music video.
31–40 of 115 posts
Re: Land of Lisp is finally out...and has a music video.
#32Re: Land of Lisp is finally out...and has a music video.
#33On p.42, when explaining the c*r functions, I found it easier to just read the "sequence" right-to-left.
For example:
(cadadr '((peas carrots tomatoes) (pork beef chicken) duck))
BEEF
Read as "rest, first, rest, first" of the cons cells, where "a" means "first" and "d" means "rest of the cons cell(s)".Aside: I am now beginning to appreciate Clojure more. :P
Re: Land of Lisp is finally out...and has a music video.
#34The comic on the Land of Lisp page is so well done. Click on the blinking words. I'm speechless...
Re: Land of Lisp is finally out...and has a music video.
#35Hi HNers- I'm Conrad (aka drcode) the author of said book. Thanks guys for helping build the buzz around LOL! (I should also thank pg for getting me into this stuff in the first place.) I'll be lurking in this thread today and tomorrow... feel free to post any questions about the book or about Lisp in general and I will answer them. Here's the only coupon code currently for the book. I'm posting it exclusively on HN…
This might be just the perfect companion to "Pratical Common Lisp" by Peter Seibel. I always thought PCL is an excellent book for someone who already knows some Lisp. With these two books, I believe you really achieve a powerfull combo to start learning and using Lisp!
And the music is very cool too :-)
Re: Land of Lisp is finally out...and has a music video.
#36Re: Land of Lisp is finally out...and has a music video.
#37Hi HNers- I'm Conrad (aka drcode) the author of said book. Thanks guys for helping build the buzz around LOL! (I should also thank pg for getting me into this stuff in the first place.) I'll be lurking in this thread today and tomorrow... feel free to post any questions about the book or about Lisp in general and I will answer them. Here's the only coupon code currently for the book. I'm posting it exclusively on HN…
Congrats on the release. I'm excited to finish reading the book. I just thought you should know, however, that there's a minor mistake (I think) in some of the walkthrough stuff in the pdf. On page 56: > (defun pudding-eater (person) (cond ((eq person 'henry) (setf *arch-enemy* 'stupid-lisp-alien) '(curse you lisp alien – you ate my pudding)) ((eq person 'johnny) (setf *arch-enemy* 'useless-old-johnny) '(i hope you c…
Re: Land of Lisp is finally out...and has a music video.
#38Re: Land of Lisp is finally out...and has a music video.
#39Re: Land of Lisp is finally out...and has a music video.
#40Hi HNers- I'm Conrad (aka drcode) the author of said book. Thanks guys for helping build the buzz around LOL! (I should also thank pg for getting me into this stuff in the first place.) I'll be lurking in this thread today and tomorrow... feel free to post any questions about the book or about Lisp in general and I will answer them. Here's the only coupon code currently for the book. I'm posting it exclusively on HN…
Congrats on the release. I'm excited to finish reading the book. I just thought you should know, however, that there's a minor mistake (I think) in some of the walkthrough stuff in the pdf. On page 56: > (defun pudding-eater (person) (cond ((eq person 'henry) (setf *arch-enemy* 'stupid-lisp-alien) '(curse you lisp alien – you ate my pudding)) ((eq person 'johnny) (setf *arch-enemy* 'useless-old-johnny) '(i hope you c…
At least the intent of the code is still clear.