Search found 16 matches
- Mon Jun 30, 2008 3:52 pm
- Forum: The Lounge
- Topic: StumpWM
- Replies: 2
- Views: 10058
Re: StumpWM
StumpWM is awesome. Hack the good hack! I'm a ratpoison convert. I learned about StumpWM when I discovered Lisp, writing your .stumpwmrc is a great way to do something with Lisp when you're just starting out. Here's my .stumpwmrc: http://www.g-brain.net/dotfiles/stumpwmrc I really do need to get cl-...
- Sat Jun 28, 2008 12:35 pm
- Forum: Common Lisp
- Topic: Welcome
- Replies: 8
- Views: 30719
Re: Welcome
I like that!findinglisp wrote: Maybe:Code: Select all
(defun lispforum (people) (apply people '(ideas fun)))

- Sat Jun 28, 2008 11:34 am
- Forum: The Lounge
- Topic: Thank you.
- Replies: 22
- Views: 56271
Re: Thank you.
Hehe: http://forum.xatrix.orgMarcusE wrote: Also I must say that the looks of it (layout, colour scheme, etc.) is wonderful. Horray for this.
At least we got our own logo

It's still a nice theme though. I don't think it matters much as long as it's easy on the eyes, it's the content that matters.
- Sat Jun 28, 2008 6:36 am
- Forum: Common Lisp
- Topic: Welcome
- Replies: 8
- Views: 30719
Re: Welcome
Looking good so far



- Sat Jun 28, 2008 6:17 am
- Forum: Books and Resources
- Topic: Concrete Mathematics
- Replies: 9
- Views: 75843
Re: Concrete Mathematics
The non-recursive form is fairly straightforward (think second difference of the number pattern). This is how I solved it: Unfolding L3, we get: L3 = L3 L3 = L2 + 3 L3 = L1 + 2 + 3 L3 = L0 + 1 + 2 + 3 L3 = 1 + 1 + 2 + 3 See the 1 + 2 + 3? How would we get from 3 to 1 + 2 + 3? Triangular numbers: A ...
- Sat Jun 28, 2008 4:28 am
- Forum: Books and Resources
- Topic: Concrete Mathematics
- Replies: 9
- Views: 75843
Concrete Mathematics
While this isn't a book about Lisp at all, I am thoroughly enjoying it and the fact that mathematics are so easily portable to lisp. Take this problem for example: How many slices of pizza can a person obtain by making n straight cuts with a pizza knife? or... What is the maximum number Ln of region...