What are you doing in Common Lisp lately?

Discussion of Common Lisp
mmmk
Posts: 8
Joined: Sat Jun 28, 2008 11:37 pm

What are you doing in Common Lisp lately?

Post by mmmk » Tue Jul 01, 2008 7:25 pm

I'm updating CL-Selenium, messing around with Lispy's version storage approach and hacking on a Space Invaders clone.

dan
Posts: 7
Joined: Sun Jun 29, 2008 9:50 am
Contact:

Re: What are you doing in Common Lisp lately?

Post by dan » Tue Jul 01, 2008 8:23 pm

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.

yena
Posts: 12
Joined: Sat Jun 28, 2008 2:33 am

Re: What are you doing in Common Lisp lately?

Post by yena » Wed Jul 02, 2008 2:22 am

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 ;)

findinglisp
Posts: 447
Joined: Sat Jun 28, 2008 7:49 am
Location: Austin, TX
Contact:

Re: What are you doing in Common Lisp lately?

Post by findinglisp » Wed Jul 02, 2008 5:32 am

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.
Cheers, Dave
Slowly but surely the world is finding Lisp. http://www.findinglisp.com/blog/

pperez

Re: What are you doing in Common Lisp lately?

Post by pperez » Wed Jul 02, 2008 9:26 am

findinglisp: Is there a way to test this CL shell?

findinglisp
Posts: 447
Joined: Sat Jun 28, 2008 7:49 am
Location: Austin, TX
Contact:

Re: What are you doing in Common Lisp lately?

Post by findinglisp » Wed Jul 02, 2008 1:00 pm

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.
Cheers, Dave
Slowly but surely the world is finding Lisp. http://www.findinglisp.com/blog/

wm.annis
Posts: 7
Joined: Sat Jun 28, 2008 6:01 am

Re: What are you doing in Common Lisp lately?

Post by wm.annis » Wed Jul 02, 2008 6:40 pm

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.
ἀραχναῖος ὗς ἀραχναῖος ὗς —
πράττει ἄττ’ ἂν πράττῃ ἀραχναῖός τις ὗς..

findinglisp
Posts: 447
Joined: Sat Jun 28, 2008 7:49 am
Location: Austin, TX
Contact:

Re: What are you doing in Common Lisp lately?

Post by findinglisp » Wed Jul 02, 2008 8:39 pm

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.
Cheers, Dave
Slowly but surely the world is finding Lisp. http://www.findinglisp.com/blog/

Jacques Chester
Posts: 12
Joined: Sat Jun 28, 2008 11:51 pm

Re: What are you doing in Common Lisp lately?

Post by Jacques Chester » Thu Jul 03, 2008 12:07 am

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.

donkey
Posts: 11
Joined: Sun Jun 29, 2008 11:05 am

Re: What are you doing in Common Lisp lately?

Post by donkey » Thu Jul 03, 2008 4:59 am

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.

Post Reply