Search found 112 matches

by CaveGuy
Mon Sep 13, 2004 5:56 pm
Forum: Anything else we might add?
Topic: Depreciateds and syntactical traps to image blogs and wiki's
Replies: 2
Views: 3069

Depreciateds and syntactical traps to image blogs and wiki's

It has been a while since I have worked with newlisp, and posted here, so let me say hi to all. I took som time to download the lates greatest and play with it. I was pleased to see the evelotion of blog and wiki, keep up the good work! Then, came monday morning and I got the first phone call, many ...
by CaveGuy
Thu Jun 03, 2004 12:12 am
Forum: newLISP and the O.S.
Topic: Problems getting even simple examples working on IIS-6 :(
Replies: 5
Views: 6029

No Joy... Tried them both, there is something messed up with 2003's priviledges, I am sure .... I will try and mess with it again in the morning.
by CaveGuy
Wed Jun 02, 2004 10:34 pm
Forum: newLISP and the O.S.
Topic: Problems getting even simple examples working on IIS-6 :(
Replies: 5
Views: 6029

Problems getting even simple examples working on IIS-6 :(

I am having fits with win2003 server and cgi's. I am sure I am missing something stupid. Eariler versions works just fine on windows 2000 and NT4 servers for that matter. When I map ".cgi" to newlisp.exe and attempt to access an index.cgi that contains a simple (print ...) statement, I can see the e...
by CaveGuy
Fri Oct 03, 2003 3:57 pm
Forum: Anything else we might add?
Topic: Wanted, no, make that Needed: DNS Examples
Replies: 1
Views: 3519

Wanted, no, make that Needed: DNS Examples

Currently we have a smtp client, pop client, and httpd server example. A DNS client example would be very helpfull. It would be a big start to the creation of a http client/browser :) Wish list: 1 Given a domain.name it should return an ip address. 2 Given an IP address it should return the Reverse ...
by CaveGuy
Thu Oct 02, 2003 9:50 pm
Forum: Anything else we might add?
Topic: Errors
Replies: 15
Views: 12168

RE: ERROR

I got It and I love it !!!!!

list or string expected : (set 'temp (assoc "FileID" cgi-in))
just saved me much much time !!!

debugging cgi's just became soo..much easier !
Count one more happy camper here :)

Thanks :)
by CaveGuy
Tue Sep 30, 2003 9:29 pm
Forum: Anything else we might add?
Topic: Errors
Replies: 15
Views: 12168

I will have to check it out,
I am still running on 7004 :(
Guess it is time I get caught back up again...
by CaveGuy
Tue Sep 30, 2003 8:30 pm
Forum: Anything else we might add?
Topic: Errors
Replies: 15
Views: 12168

Re: Errors

AutoLISP barfs up its stack to the console when it blows up, while it is not a grecefull exit, it leaves little doubt as to where it the code things went wrong. An error dump would not require any line numbers :)
by CaveGuy
Mon Mar 10, 2003 1:21 am
Forum: newLISP and the O.S.
Topic: Newlisp_7004 running on RedHat 8.0 was easy :)
Replies: 1
Views: 3151

Newlisp_7004 running on RedHat 8.0 was easy :)

This weekends project was to figure out how to get linux running on my "old" computer and get Newlisp-tk running on it. I started out with the Redhat 8.0 boxed install disks and used the redhat network to update everything all 136.8 megs worth. I ended up with Linux Version 2.4.18-26.8.0 (redhat). N...
by CaveGuy
Thu Feb 27, 2003 10:00 pm
Forum: newLISP in the real world
Topic: Local Vs GMT date and times
Replies: 2
Views: 3933

(now -3) would work out very nicely !! I like that idea. It would be nice to normalize to local time log format from multiple timezones. IE. east and west coast servers writing to the same log file in chicago or denver. Note, that the 'date function converts to ascii as of the localtime. Perhaps an ...
by CaveGuy
Wed Feb 26, 2003 6:06 pm
Forum: newLISP in the real world
Topic: Local Vs GMT date and times
Replies: 2
Views: 3933

Local Vs GMT date and times

currentily: (now) => (2003 2 26 21 49 19 875000 57 4) in GMT! and (date (apply date-value (now))) => "Wed Feb 26 19:12:04 2003" corrected to Local Time Goal goal was/is to generate a log file name XX20030326.log that changes to XX20030327.log midnight local time. (define make-log-file-name ( log-pat...
by CaveGuy
Sun Feb 16, 2003 9:34 pm
Forum: newLISP in the real world
Topic: (write-file-append, (write-log-file or (open-locked for Logs
Replies: 0
Views: 3400

(write-file-append, (write-log-file or (open-locked for Logs

I often find myself with multiple newlisps running at the same time shareing a common log or audit file. The following mutterings may shed some insite on what improvments I would like to see :) (write-log file-name "log string" delay) would be very nice :) It would wait for file if locked, lock and ...
by CaveGuy
Wed Jan 15, 2003 2:31 am
Forum: Anything else we might add?
Topic: John McCarthy RIP
Replies: 3
Views: 4637

I am happy to say, that the french report was wrong,
and Rumors of his death have been rebuted.
John McCarthy of LISP fame has been reported as
being alive and kicking as of 1/14/03.

I guess the value of old LISP code will remain stable for a while longer :)
by CaveGuy
Sun Jan 12, 2003 5:33 pm
Forum: Anything else we might add?
Topic: John McCarthy RIP
Replies: 3
Views: 4637

John McCarthy RIP

According to a french article on 2003-01-08 by Albert Tissot on fr.comp.lang.lisp http://groups.google.fr/groups?hl=fr&lr=&ie=UTF-8&oe=UTF-8&selm=dh8q1vgb9t0jcf7ocdvoo47r3emlmm67pu%404ax.com John McCarthy (the father of the Lisp Language) died in Boston on January 04th 2003. His language will live o...
by CaveGuy
Fri Jan 10, 2003 8:40 pm
Forum: newLISP in the real world
Topic: Suggestion: (type or (type?
Replies: 1
Views: 3238

Suggestion: (type or (type?

X-Lisp deviants<sp?> have a function (type symbol) that returns SYMBOL STRING REAL LIST .... It allows a case statement to be used to handle a wide range of input presorted processing by data type. (define (data2string x) (case (type x) (LIST (append "List: " (string x))) (REAL (append "Real: " (str...
by CaveGuy
Fri Jan 10, 2003 8:06 pm
Forum: newLISP newS
Topic: travelling from 7 to 17th of January
Replies: 8
Views: 8376

Depending on when you see this, I hope you, are either having or have had, a good time :)
by CaveGuy
Mon Jan 06, 2003 12:37 am
Forum: Anything else we might add?
Topic: file locking
Replies: 5
Views: 5766

I did a quick test and determined that the (rename-file function will fail, if the file has been opened for update by a previous task. Someone shoule check the Linux version for consistancy. Renameing the origional file to a backup name, prior to exclusive access, and then either renameing or copyin...
by CaveGuy
Fri Dec 27, 2002 12:59 am
Forum: Anything else we might add?
Topic: file locking
Replies: 5
Views: 5766

What level of file locking are you looking for ? If you need the file lock to span secessions, task A reads and locks file, then task B unlocks file after it is done, keeping all other tasks locked out between the two secessions. or Task A locks file ... makes changes and releases it. This is much e...
by CaveGuy
Fri Dec 27, 2002 12:48 am
Forum: newLISP in the real world
Topic: suggestion: nand, nor, and xor functions
Replies: 8
Views: 7093

suggestion: nand, nor, and xor functions

The 3 inverse logic functions :
(nand ...)
(nor ..... )
(xor ....) would be nice as primitives :)

BTW. Hi guys I have been off on a project and just got back.
I hope to get some time in the next week or two to clean it up
an example or two :)
by CaveGuy
Fri Dec 27, 2002 12:40 am
Forum: newLISP and the O.S.
Topic: non functioning on Windows 2000
Replies: 25
Views: 23555

Works ok here ?

I just copied my newlisp directory tree from my XP system over to a Win2k
server and ran tk-lisp.exe and all my TK test code ran just fine ?

No install, no DLLS just streight up copy and run :)
by CaveGuy
Mon Nov 11, 2002 6:51 pm
Forum: newLISP in the real world
Topic: MYplugin example for IMS/Mfilter mail servers
Replies: 8
Views: 7526

If you ever need a fat pipe to the internet hosted in a
secure enviroment owned and operated by geeks :)
It is now controled by those of us that built it and run it. All the big iron was purchased used on e-bay, and at the firesales of several the fadeing .coms :)
by CaveGuy
Mon Nov 11, 2002 4:18 pm
Forum: newLISP in the real world
Topic: MYplugin example for IMS/Mfilter mail servers
Replies: 8
Views: 7526

Your storm got here last night. The office lost power at 5:30 pm and got it back at 7:30 am. I have an 25+ year old sears generator that was my dads, it only has run run 4 or 5 times in 25+ years here at the house. Our power here at the house was just fine. The Data Center has a huge generator of it...
by CaveGuy
Sun Nov 10, 2002 1:14 pm
Forum: newLISP in the real world
Topic: MYplugin example for IMS/Mfilter mail servers
Replies: 8
Views: 7526

Lack of Electromotive force :(

Came home from vacation once and found the defrost heater elements in the freeser had stuck on for about two weeks and everything had been slow cooked in both sides of a sides by side. It was not a nice site or smell. Good luck and welcome back to the 21 century. Never had 2+ days without power, but...
by CaveGuy
Thu Nov 07, 2002 6:56 pm
Forum: newLISP in the real world
Topic: MYplugin example for IMS/Mfilter mail servers
Replies: 8
Views: 7526

MYplugin example for IMS/Mfilter mail servers

In the NT world there is a free mail server called IMS that works with a program Mfilter that uses plugins to filter e-mail. NewLISP provides an alternate development platform for Mfilter plugins. I have successfully (linked MYplugin.exe and run it as a Mfilter plugin on an IMS server. I posted this...
by CaveGuy
Sun Nov 03, 2002 2:40 am
Forum: newLISP in the real world
Topic: (link'ing and (!'ing Example
Replies: 5
Views: 5591

The flashing problem gets real bad running as a background task on the server. While testing a live feed, fireing off 100+ tasks per minute, the server'sconsole became unuseable. Back to the drawing board, I need to re-think this one. In full production I expect to have hundreds of tasks rotating ev...
by CaveGuy
Sun Nov 03, 2002 2:05 am
Forum: newLISP in the real world
Topic: formCGI "POST" example
Replies: 2
Views: 3885

I dont know about IIS but it works with Website PRO.
I like your solution, it is more elegant, I tend to brute force that sort of thing :)