Page 1 of 3

What are you doing in Common Lisp lately?

Posted: Tue Jul 01, 2008 7:25 pm
by mmmk
I'm updating CL-Selenium, messing around with Lispy's version storage approach and hacking on a Space Invaders clone.

Re: What are you doing in Common Lisp lately?

Posted: Tue Jul 01, 2008 8:23 pm
by dan
I'm writing a Go (http://en.wikipedia.org/wiki/Go_(board_game)) AI for a competition with some friends.
(http://ai.mindstab.net)
I'm also trying to get it installed on a hardened PaX linux server so I can play around with it on the web.

Re: What are you doing in Common Lisp lately?

Posted: Wed Jul 02, 2008 2:22 am
by yena
I've just implemented a compiler that reads a specification file and outputs code that can encode/decode a communication protocol for an on-line game. Sure beats manually making code to for hundreds of packet types. Another advantage is that I can easily add back ends for many languages. Not to mention that using Lisp made the compiler coding fun ;)

Re: What are you doing in Common Lisp lately?

Posted: Wed Jul 02, 2008 5:32 am
by findinglisp
I have been working on a Linux shell written in Common Lisp. It's designed to be extended in interesting ways and Lisp provides the flexibility to do that easily.

Re: What are you doing in Common Lisp lately?

Posted: Wed Jul 02, 2008 9:26 am
by pperez
findinglisp: Is there a way to test this CL shell?

Re: What are you doing in Common Lisp lately?

Posted: Wed Jul 02, 2008 1:00 pm
by findinglisp
pperez wrote:findinglisp: Is there a way to test this CL shell?
No, not yet. It's still a work in process and nowhere near ready for release.

Re: What are you doing in Common Lisp lately?

Posted: Wed Jul 02, 2008 6:40 pm
by wm.annis
Libraries! I just finished modifying a slightly aged bit of code in the CMU AI repository to make Gambol (basic prolog-like functionality).

My current big project is to make my SVG library lively enough to privide basic GUI behaviors. That means I have to learn Javascript and the whole DOM API first. :) Fortunately, parenscript has made this go more nicely, so far at least.

Re: What are you doing in Common Lisp lately?

Posted: Wed Jul 02, 2008 8:39 pm
by findinglisp
wm.annis wrote:Libraries! I just finished modifying a slightly aged bit of code in the CMU AI repository to make Gambol (basic prolog-like functionality).
Very cool. Lisp needs some more Prolog-like libraries. I started learning a bit of Prolog the other day, and while I really couldn't see writing a large program only in Prolog, I can see that it would be very handy for solving certain smaller problems within a larger Lisp program. One of the things I love about Lisp is that sexprs are so convenient for expressing things like Prolog within Lisp.

Re: What are you doing in Common Lisp lately?

Posted: Thu Jul 03, 2008 12:07 am
by Jacques Chester
Learning it, essentially. I'm sick of reading articles about how it's awesome, will find me women and stitch up my socks etc etc.

Instead I want to be in a position to nod knowingly, and stroke a deservedly-earned beard of wisdom.

Also, I've expressed thoughts about writing the Last And Bestest Blog Engine Ever and I reckon I'd like to try my hand at doing it in Lisp. Mostly because I have come to detest Wordpress.

Re: What are you doing in Common Lisp lately?

Posted: Thu Jul 03, 2008 4:59 am
by donkey
In these few hours, I'm writing a program that will help me manage my tea collection (I keep tea in my own boxes, and I always forget how long I should brew them, what to sweeten them with and so on). Yea, I could just make a list, but where's the fun? I'm also making it modular, so that I can write various frontends to it. I'm not sure why something that tells you how to make your tea should be this big, but what the heck...

I'm currently thinking about doing some experiments with retargetable assemblers, but I'm caught up with a bit of work right now.