compiling Rtml029 (3/28/2007 2:20:52 PM) comp.lang.lisp Rtml was a "very thin"[*] layer above CL for generating HTML. Classic Rtml may or may not have supported the following example[+], but its translation appears straightforward. Letters () TITLE "A B C.... gbacon
apparently undefined function called by macro628 (6/27/2006 3:32:50 PM) comp.lang.lisp I'm using the following simple system: ; foo.asd (defpackage :foo-system (:use :asdf :cl)) (in-package :foo-system) (defsystem foo :components ((:file "packages") (:file "f... gbacon
clisp: COMPILE-FILE needs two LOADs?1843 (1/31/2006 11:46:36 PM) comp.lang.lisp Consider the following toy example code: (asdf:operate 'asdf:load-op :cl-ppcre) (defconstant +func-def+ "^(\\S+)\\s*\\(.*\\)\\s*\\{") (defconstant +echo-arg+ "echo\\s+(\\S+)") (... gbacon
conciseness is power3156 (12/23/2005 6:38:18 PM) comp.lang.lisp As an exercise, I wrote code to find anagrams in a one-word-per-line dictionary. See http://blogs.pragprog.com/cgi-bin/pragdave.cgi/ Practices/Kata/KataSix.rdoc. Within the equivalence classes, I sorted the wo... gbacon
Statistics for comp.lang.perl.misc #64031 (11/1/2004 12:22:17 PM) comp.lang.perl.misc Following is a summary of articles spanning a 7 day period, beginning at 25 Oct 2004 12:26:15 GMT and ending at 01 Nov 2004 11:03:02 GMT. Notes ===== - A line in the body of a post is considered to be ori... Greg
Statistics for comp.lang.perl.misc #63029 (10/25/2004 12:27:58 PM) comp.lang.perl.misc Following is a summary of articles spanning a 7 day period, beginning at 18 Oct 2004 13:25:20 GMT and ending at 25 Oct 2004 12:06:10 GMT. Notes ===== - A line in the body of a post is considered to be ori... Greg
Statistics for comp.lang.perl.misc #62027 (10/18/2004 1:25:20 PM) comp.lang.perl.misc Following is a summary of articles spanning a 7 day period, beginning at 11 Oct 2004 13:28:19 GMT and ending at 18 Oct 2004 12:14:09 GMT. Notes ===== - A line in the body of a post is considered to be ori... Greg
Statistics for comp.lang.perl.misc #61033 (10/11/2004 12:30:52 PM) comp.lang.perl.misc Following is a summary of articles spanning a 7 day period, beginning at 04 Oct 2004 12:41:34 GMT and ending at 11 Oct 2004 12:13:22 GMT. Notes ===== - A line in the body of a post is considered to be ori... Greg
Statistics for comp.lang.perl.misc #60030 (10/4/2004 12:18:19 PM) comp.lang.perl.misc Following is a summary of articles spanning a 7 day period, beginning at 27 Sep 2004 12:41:49 GMT and ending at 04 Oct 2004 10:40:49 GMT. Notes ===== - A line in the body of a post is considered to be ori... Greg
Statistics for comp.lang.perl.misc #59026 (9/27/2004 1:04:52 PM) comp.lang.perl.misc Following is a summary of articles spanning a 7 day period, beginning at 20 Sep 2004 13:07:26 GMT and ending at 27 Sep 2004 13:01:40 GMT. Notes ===== - A line in the body of a post is considered to be ori... Greg
RRD confusion426 (6/20/2005 4:36:11 PM) comp.lang.perl.modules I've been using a script called weathergraph on a FreeBSD box for years. Last week I upgraded the machine, and the script stopped working. One of the "dirty little secrets" about FreeBSD is it's poor handling ... stanb(61)
conciseness is power3156 (12/23/2005 6:38:18 PM) comp.lang.lisp As an exercise, I wrote code to find anagrams in a one-word-per-line dictionary. See http://blogs.pragprog.com/cgi-bin/pragdave.cgi/ Practices/Kata/KataSix.rdoc. Within the equivalence classes, I sorted the wo... gbacon(88)
clisp: COMPILE-FILE needs two LOADs?1843 (1/31/2006 11:46:36 PM) comp.lang.lisp Consider the following toy example code: (asdf:operate 'asdf:load-op :cl-ppcre) (defconstant +func-def+ "^(\\S+)\\s*\\(.*\\)\\s*\\{") (defconstant +echo-arg+ "echo\\s+(\\S+)") (... gbacon(88)
apparently undefined function called by macro628 (6/27/2006 3:32:50 PM) comp.lang.lisp I'm using the following simple system: ; foo.asd (defpackage :foo-system (:use :asdf :cl)) (in-package :foo-system) (defsystem foo :components ((:file "packages") (:file "f... gbacon(88)
Kamen Lisp - Firefox extension to script webpages with CL2033 (4/5/2007 1:24:12 AM) comp.lang.lisp Hi All, I wanted to announce a project I've been hacking on for a while. It's a Firefox extension that allows Common Lisp to be used instead of Javascript to script webpages. You can check it out here: http://... dustmop(30)
Macros are pretty neat...1130 (5/13/2007 10:58:05 AM) comp.lang.lisp Having some free time this week, I decided to do some Lisping. Chose a simple enough problem: an amd64 assembler. 500 lines of (commented) code later, I've got a macro language that let's me take an instruction... rayiner(163)
Simple Regular Expression Help443 (5/16/2007 5:59:02 PM) comp.lang.perl.modules How can I strip this line with regular expession to get 12345 number within brackets: $line = "some text is here (12345 ms)"; This did not work: $text = $line; $text =~ m/\((\d+)\)/; ... vunet.us(106)
a question about efficiency8234 (2/21/2012 12:29:23 PM) comp.lang.perl.misc Hi, I've just started to learn Perl. Here's my first question. Please look at this code: ---> my $len1; foreach (keys %ENV) { if (length $_ > $len1) { $len1 = length $_ }} $len1) { $len1 = $l }} in... Kiuhnm
getting hash reference from a package1723 (3/13/2012 4:28:34 PM) comp.lang.perl.misc What is the correct syntax for accessing a hash reference from a package? For example: Package MyPackage; my $foo = { animals => ["cat", "dog", "fish"], people => ["fred", wilma" ] }; 1; and then (this i... wpmccormick1(14)
split() and @_: Perl changed between 5.8 and 5.142332 (12/12/2012 1:01:52 PM) comp.lang.perl.misc I have an old program that I wrote back in 2001, which has worked fine ever
since - right up until today, when I ran it for the first time in quite a
while. The script depends on the fact that (when it was w... gazelle3(1598)