Search found 85 matches

by marcoxa
Fri Nov 08, 2013 11:28 am
Forum: Common Lisp
Topic: Do you need some HEΛP?
Replies: 0
Views: 6626

Do you need some HEΛP?

Hi

if anybody wants to check out Yet Another^n Common Lisp Documentation System, I have just posted an entry on my blog:

http://within-parens.blogspot.com/2013/ ... le-he.html

Enjoy.

Marco
by marcoxa
Tue Jul 16, 2013 12:33 pm
Forum: Common Lisp
Topic: Parsing HTML in Lisp
Replies: 5
Views: 13444

Re: Parsing HTML in Lisp

In XHTMLambda there is a preliminary XML parser which is a symptom of my personal NIH syndrome. You can take it for a spin. :) YMMV etc etc.

Cheers

MA
by marcoxa
Fri Jun 28, 2013 1:33 pm
Forum: Common Lisp
Topic: ANN: (X)HTMLambda on common-lisp.net
Replies: 0
Views: 6519

ANN: (X)HTMLambda on common-lisp.net

Hi

I put the XHTMLambda library (yet another (X)HTML library) on common-lisp.net. Check out http://common-lisp.net/project/xhtmlambda; contact me for directions to the git repository.

Cheers
--
MA
by marcoxa
Thu Mar 14, 2013 8:15 am
Forum: Common Lisp
Topic: novice question about QUOTE and LIST
Replies: 5
Views: 10601

Re: novice question about QUOTE and LIST

It appears that the printer of CCL is set to print anything like

Code: Select all

(quote <x>)
as

Code: Select all

'<x>
It really does not matter as the reader treats them appropriately.

MA
by marcoxa
Mon Mar 11, 2013 8:13 am
Forum: Common Lisp
Topic: novice question about QUOTE and LIST
Replies: 5
Views: 10601

Re: novice question about QUOTE and LIST

Which implementation is this?
by marcoxa
Fri Feb 01, 2013 10:30 am
Forum: Common Lisp
Topic: convert char to symbol
Replies: 17
Views: 26186

Re: convert char to symbol

santiago wrote:I Call the function like this: char-to-symbol(char)

Thanks
Looks wrong to me.

You should be doing something like:

Code: Select all

cl-prompt> (char-to-symbol #\C)
C
by marcoxa
Fri Feb 01, 2013 6:29 am
Forum: Common Lisp
Topic: convert char to symbol
Replies: 17
Views: 26186

Re: convert char to symbol

santiago wrote:Hi,

When I try to execute this function: char-to-symbol, appears this error

APPLY: too few arguments given to CHAR

What this mean?

Thanks
How do you call the function at the prompt? I have the suspicion that you are still confusing a few things....

MA
by marcoxa
Sat Dec 29, 2012 8:46 am
Forum: Common Lisp
Topic: Function (operator) as function parameter: how?
Replies: 5
Views: 9108

Re: Function (operator) as function parameter: how?

Please note that if you have a LAMBDA, you do not need FUNCALL

Code: Select all

((lambda (x) (+ x 42)) -42) ==> 0
by marcoxa
Thu Dec 13, 2012 9:30 am
Forum: Common Lisp
Topic: refined common lisp
Replies: 6
Views: 14680

Re: refined common lisp

This thread pops up every once in a while (hey! *I* popped it up a few years ago). Problem is, the notion of "community driven" is ill-defined and it leads to the Python 2.x-3.x thingy. My 2 cents opinion? The CDR is the best effort so far. There is a clear and simple model for discussing ...