grault wrote 2 years ago: This is crazy (quote from comp.lang.lisp): CL-USER> (defmethod fib ((n (eql 0))) 1) #<STANDARD … more →
grault wrote 2 years ago: One can represent a graph of objects in REPL: CL-USER> (defmacro link (a b) `(push (lambda () ,b) … more →
grault wrote 2 years ago: My first hunchentoot page setup: % pwd /home/kotee % ls -d slime slime % ls slime/slime.el slime/sli … more →
grault wrote 2 years ago: Let’s have a look on Cells: login08% cat .ccells (load "~/asdfsys/asdf.lisp") (pushnew #p"~/as … more →
grault wrote 2 years ago: Gram-Smidth ortogonalization in scheme: (define dotprod (lambda (a b) (apply + (map * a b)))) (defin … more →
grault wrote 2 years ago: Here is the code to create an empty PDF document with one sheet in common lisp with the asdf package … more →
grault wrote 3 years ago: I figured out how to setup Gnus to use it with e-mail aliases: (defun make-address-list (ls) (cond ( … more →
grault wrote 3 years ago: If you wanna try out your command of your favorite language then visit that fuckin’ addictive … more →
grault wrote 3 years ago: In the Examples section of the Revised5 Report on the Algorithmic Language Scheme there is a Runge-K … more →
grault wrote 3 years ago: Hi, If one make the files below: login09% cat trafo.scm (define (trafo fn) (with-input-from-file fn … more →