Search found 12 matches

by Robert Gorenc
Mon Feb 07, 2011 7:29 pm
Forum: So, what can you actually DO with newLISP?
Topic: "52 Lessons in Lisp" project
Replies: 4
Views: 7857

Re: "52 Lessons in Lisp" project

Nice!! I like this project! ;-)
I'm sure, it will be very interesting for all beginners like me!
by Robert Gorenc
Fri Sep 24, 2010 7:13 pm
Forum: newLISP and the O.S.
Topic: Benchmarking newLISP
Replies: 28
Views: 27003

Re: Benchmarking newLISP

30.64 on Pentium 90, running DamnSmallLinux (old gran'pa is still running :-) )
and
1.36 Pentium 4, 2Ghz running Ubuntu 9.04
by Robert Gorenc
Fri May 28, 2010 10:54 am
Forum: So, what can you actually DO with newLISP?
Topic: Public lecture on Newlisp, Zagreb, June 2010
Replies: 4
Views: 5011

Re: Public lecture on Newlisp, Zagreb, June 2010

thanx for invitation, i'm planning to come!
by Robert Gorenc
Fri May 28, 2010 10:47 am
Forum: newLISP and the O.S.
Topic: (+ newLISP Windows RS232)
Replies: 7
Views: 5334

Re: (+ newLISP Windows RS232)

thanx, something similar was my idea, but I need read and write access, so my doubt is open two pipes, one for reading and one for writing, or one with r/w...... something like: (set 'hin (open "/dev/ttyUSB0" "r")) (read hin buff 40) (close hin) and (set 'hout (open "/dev/ttyUSB0" "w")) (write-buffe...
by Robert Gorenc
Fri May 28, 2010 8:53 am
Forum: newLISP and the O.S.
Topic: (+ newLISP Windows RS232)
Replies: 7
Views: 5334

Re: (+ newLISP Windows RS232)

Hi Fritz,
do you have same success in writing to serial port?
I also would like to talk to uC with forth on board via serial port from Linux.
I didn't jet try, maybe this weekend....
by Robert Gorenc
Fri Feb 12, 2010 8:07 am
Forum: Anything else we might add?
Topic: Newlisp Forum Members Trend.
Replies: 5
Views: 4904

Re: Newlisp Forum Members Trend.

so, how did you collect this data, manually or use some nl script?
What is this symbol E if formula y=2E+.... and what is R^2??
It was long ago when I worked with math..... :-)
by Robert Gorenc
Wed Feb 10, 2010 9:34 am
Forum: Anything else we might add?
Topic: Newlisp Forum Members Trend.
Replies: 5
Views: 4904

Re: Newlisp Forum Members Trend.

is it Kazimir's first Forum theorem? :-)
by Robert Gorenc
Thu Dec 03, 2009 10:07 am
Forum: newLISP and the O.S.
Topic: winfork and process problem on windows
Replies: 5
Views: 4120

Re: winfork and process problem on windows

thanks Lutz,
that is what I need!
by Robert Gorenc
Wed Dec 02, 2009 9:11 pm
Forum: newLISP and the O.S.
Topic: winfork and process problem on windows
Replies: 5
Views: 4120

Re: winfork and process problem on windows

Well, someone, perhaps Peter, mentioned in older posts, so I wanted to try it because under windows spawn is not working. It can be downloaded from his site. I don't think that this is not working because of some different behaving function, I can't properly start another newlisp -e via process........
by Robert Gorenc
Wed Dec 02, 2009 3:40 pm
Forum: newLISP and the O.S.
Topic: winfork and process problem on windows
Replies: 5
Views: 4120

winfork and process problem on windows

Hi, I was searching for forking possibility on windows and found winfork, but it seems that is not working: the response from newlisp is: >(winfork '(+ 1 2)) 1832 > ERR: missing parenthesis : "...(silent After looking in source and little debuging, also found that simple process invocation > (proces...
by Robert Gorenc
Wed Oct 28, 2009 1:50 pm
Forum: newLISP in the real world
Topic: post-url question
Replies: 3
Views: 1692

Re: post-url question

Thanks Lutz, Actually, user and psswd encription was not problem. But after Your message, I looked again in my header in post-url and found if remove second pair of \r\n, than post-url works as expected!!! the working method is now: (post-url "http://ip.addr/cli/cgi-bin/exe.pl" "ne_name=msc1&task_ty...
by Robert Gorenc
Wed Oct 28, 2009 9:44 am
Forum: newLISP in the real world
Topic: post-url question
Replies: 3
Views: 1692

post-url question

dear all, I'm new to this forum and Lisp also, I would like to send greetings to all! I have a question about configuring header and parameters send in post-url. when sending (post-url "http://ip.addr/cli/cgi-bin/exe.pl" "param1=v1¶m2=v2¶m3=v3" "text/plain" 5000 "Content-Length: 50\r\nAuthor...