Since 5/5/2012 7:47:08 AM, nathan_baum has written 8 articles and participated in 220 conversations. nathan_baum signature: nathan_baum
nathan_baum's articles:
Items(8) /1
CLISP always outputs a newline when it exits1424 (1/8/2007 9:33:26 AM) comp.lang.lisp CLISP always outputs a newline when it exits. This is extremely wrong if I'm using it in a pipeline and need precise control over what gets output. I can hack up a fix by doing: (push (lambda () (setf *term... Nathan
Top-level environments as first-class objects128 (1/8/2007 2:37:29 AM) comp.lang.lisp Talking about making a persistent Lisp in an earlier post made me think about how best to implement it. The principle issue is what to do when multiple Lisp sessions are running at the same time: which one pers... Nathan
Access REPL's history in CLISP1525 (1/7/2007 11:47:42 PM) comp.lang.lisp Can one do this? I want to preserve the REPL's history between invocations of CLISP. Obviously, I'll have to be able to access the history in order to do that, and I'd like it if there was a slightly easier op... Nathan
CLISP + xinetd = Instant failure.1820 (1/2/2007 3:19:21 AM) comp.lang.lisp I wanted to make a simple HTTP server in CLISP using xinetd as the front end. (format t "HTTP/1.1 200 OK~%~%") (loop :for line = (remove #\Return (read-line) :from-end t :count 1) :until (zerop (l... Nathan
(La)TeX package (or similar) for Lisp documentation?132 (7/27/2006 10:53:38 PM) comp.lang.lisp Is there a (La)TeX package which makes writing Lisp documentation (as in, documentation of Lisp packages, rather than of Lisp programs) a little more convenient? Or something similar for another document prep... Nathan
(warn) isn't doing what I expect it to3145 (8/29/2005 10:06:35 PM) comp.lang.lisp I'm expecting (handler-case (warn "foo") (warning (c) (muffle-warning c))) to produce no output, successfully. Instead it produces *** - INVOKE-RESTART: No restart named MUFFLE-WARNING is v... Nathan
Not releasing socket address220 (8/21/2005 3:17:48 AM) comp.lang.lisp I have a program listening on a socket via SBCL's BSD socket inteface. No matter if the program completes successfully or via an error, Linux still thinks the address is in use for a couple of minutes after i... Nathan
Problem with CL-SDL-OPENGL, SBCL222 (8/19/2005 4:31:39 AM) comp.lang.lisp I'm having a problem compiling the opengl component of CL-SDL. I'm using CL-SDL 0.2.2, UFFI 1.2.x and SBCL 0.9.0 on Debian Sarge 3.1. There is no error, as such: evaluating (require 'opengl) at the top-level ... Nathan
CLISP always outputs a newline when it exits1424 (1/8/2007 9:33:26 AM) comp.lang.lisp CLISP always outputs a newline when it exits. This is extremely wrong if I'm using it in a pipeline and need precise control over what gets output. I can hack up a fix by doing: (push (lambda () (setf *term... nathan_baum(228)
Access REPL's history in CLISP1525 (1/7/2007 11:47:42 PM) comp.lang.lisp Can one do this? I want to preserve the REPL's history between invocations of CLISP. Obviously, I'll have to be able to access the history in order to do that, and I'd like it if there was a slightly easier op... nathan_baum(228)
Editors with some support for Lisp?639 (1/2/2007 4:42:54 AM) comp.lang.lisp Howdy, What editors do folks know have support for Common Lisp syntax? Not much comes up in a google for editors other than Emacs that advertise having some support for Lisp (paren balancing, indentation). I ... kreuter(202)
CLISP + xinetd = Instant failure.1820 (1/2/2007 3:19:21 AM) comp.lang.lisp I wanted to make a simple HTTP server in CLISP using xinetd as the front end. (format t "HTTP/1.1 200 OK~%~%") (loop :for line = (remove #\Return (read-line) :from-end t :count 1) :until (zerop (l... nathan_baum(228)
CloserLookAtCharacters article at cliki.net525 (8/8/2006 3:11:22 AM) comp.lang.lisp I just took a look at the CloserLookAtCharacters article recently posted to cliki.net, which I understand was authored by Pascal Bourguinon. It's good info, thanks Pascal! I did have a quibble with one paragr... no.spam6794(161)
static typing1740 (8/7/2006 1:34:42 AM) comp.lang.lisp I've been learning Lisp since about Februrary, and I've implemeted some small projects (~300 lines) in lisp. I've built up a small library of utility functions and macros so things are going well. But there ... jz87(58)
Remote debugging2932 (8/6/2006 11:34:32 PM) comp.lang.lisp I've already read quite some times that one of the wonderful features of Lisp is the ability to debug an application that is running, by changing it's state and even definitions (macros, functions, objects and ... nowhere.man(106)