Search found 5 matches

by anton
Sun Aug 31, 2008 1:22 pm
Forum: Common Lisp
Topic: Pipe program output to stream
Replies: 6
Views: 15372

Re: Pipe program output to stream

You do something wrong. This works for me: (setq proc (sb-ext:run-program #+win32"C:\\Windows\\System32\\cmd.exe" #-win32 "/bin/bash" nil :input :stream :output :stream :wait nil)) (princ "echo hello" (sb-ext:process-input proc)) (princ #\Newline (sb-ext:process-input p...
by anton
Thu Aug 28, 2008 7:27 am
Forum: Common Lisp
Topic: SBCL fails to start in VPS
Replies: 2
Views: 7334

Re: SBCL fails to start in VPS

Or you may choose another VPS provider. I am using http://www.linode.com/ and quite satisfied. SBCL runs without problems on their VPSes.
by anton
Sun Aug 17, 2008 4:39 am
Forum: Lisp Quiz
Topic: Lisp Quiz #1: Minesweeper
Replies: 10
Views: 76750

Re: Lisp Quiz #1: Minesweeper

Rich_Robot wrote:Playing Minesweeper is an NP Complete problem.

Was this an intentional choice? If it was then Lisp programmers are freaking hardcore. :D

Check Out Clay Mathematics Institute - Popular Lectures - Minesweeper
Rich_Robot, IMHO this note is inappropriate during the 48-hour No-Spoiler Period.
by anton
Tue Jul 15, 2008 2:12 am
Forum: Common Lisp
Topic: How do I install Hutchentoot using Corman CL or SBCL/Win32?
Replies: 2
Views: 11674

Re: How do I install Hutchentoot using Corman CL or SBCL/Win32?

Hello, I'm barely competent with even configuring a basic apache installation, although I have managed to get svn integration and TRAC up and running. Now I want to set up Hutchentoot, but all the tutorials assume Linux and SBCL. I'm on Windows XP. Has anyone done this particular setup before? I am...
by anton
Tue Jul 15, 2008 2:06 am
Forum: Common Lisp
Topic: Best way to start on Windows : need advices
Replies: 13
Views: 34928

Re: Best way to start on Windows : need advices

I am on Windows and do not use asdf-install too. It is not that difficult to unpack the library somewhere. After loading asdf do: (pushnew "path/to/the/library/dir/" asdf:*central-registry* :test #'equalp) Now the library is registered in asdf can find it. I have a file 'setup-asdf-registr...