Search found 36 matches

by protozen
Wed Feb 18, 2015 10:03 pm
Forum: newLISP in the real world
Topic: newLips http server, access from within newLisp
Replies: 3
Views: 3156

Re: newLips http server, access from within newLisp

Thanks Lutz. I was asking because I was hoping I could source link -x into a simple single executable .
by protozen
Wed Feb 18, 2015 7:48 pm
Forum: newLISP in the real world
Topic: newLips http server, access from within newLisp
Replies: 3
Views: 3156

newLips http server, access from within newLisp

Are there any plans to offer an api to access the development server, with an api from newLisp instead of the command line? I'm looking at creating a few small packaged servers that I would like to have configured and executed from newLips. Having some soft of API for the built in HTTP processor wou...
by protozen
Wed Feb 18, 2015 7:46 pm
Forum: newLISP in the real world
Topic: Recent Performance
Replies: 1
Views: 2204

Re: Recent Performance

I haven't had much of a chance to run some generic numbers myself. However, I did run a few cgi benchmarks in a vm with a couple hundred request per second on the form.cgi script in the examples directory, simulated 30-50-100 users counts for 10,000 requests using the built in dev http server with c...
by protozen
Thu Feb 12, 2015 5:52 pm
Forum: newLISP in the real world
Topic: Recent Performance
Replies: 1
Views: 2204

Recent Performance

Hi All, I'm looking for more recent macro performance numbers like these: http://www.newlisp.org/benchmarks/ Or the old computer language shootout numbers. Does anyone happen to know or have a recent set? I know of the QA tests that I can run. I'm curious about the feasibility of using newLisp in ar...
by protozen
Wed Jan 21, 2015 11:01 pm
Forum: newLISP newS
Topic: newLISP stable release 10.6.2
Replies: 20
Views: 20748

Re: newLISP stable release 10.6.2

Thanks a lot for the update Lutz, can I send you a development donation as a thank you?
by protozen
Mon Aug 04, 2014 1:43 am
Forum: newLISP newS
Topic: Compile on Zorin OS (Ubuntu LTS base)
Replies: 2
Views: 8013

Re: Compile on Zorin OS (Ubuntu LTS base)

Lutz wrote:Use this version: http://www.newlisp.org/downloads/develo ... nprogress/

See addition in newlisp.c lines 36 - 39

Thank you!
by protozen
Sun Aug 03, 2014 8:08 pm
Forum: newLISP newS
Topic: Compile on Zorin OS (Ubuntu LTS base)
Replies: 2
Views: 8013

Compile on Zorin OS (Ubuntu LTS base)

I'm not able to compile newlisp on Zorin where it was fine on Ubuntu. Below is the error and below that is gcc -v. Anyone run into this? gcc -fPIC -m64 -Wall -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DSUPPORT_UTF8 -DNEWLISP64 -DLINUX -DFFI -I/usr/local/lib/libffi-3...
by protozen
Wed Jul 09, 2014 3:31 am
Forum: newLISP in the real world
Topic: newlisp -x and embedding data files
Replies: 9
Views: 5638

Re: newlisp -x and embedding data files

I already had this on my todo list since I also much prefer free standing executables for production code. So, just to complete the thought, I put together a small embedding module, which takes care of including loaded files into the embedding by means of replacing the standard load function. I've ...
by protozen
Fri Jun 27, 2014 9:37 pm
Forum: Whither newLISP?
Topic: newLISP thread on Eric Raymond's blog
Replies: 5
Views: 7386

Re: newLISP thread on Eric Raymond's blog

I'll have to read the thread, coming back to newlisp after a few years. However, it has replace my frequent use of ruby.
by protozen
Fri Jun 27, 2014 9:34 pm
Forum: newLISP in the real world
Topic: newlisp -x and embedding data files
Replies: 9
Views: 5638

Re: newlisp -x and embedding data files

Thanks for the input ryuo, this is what I was thinking I'd have to do if there was no sanctioned way.
by protozen
Fri Jun 27, 2014 4:25 am
Forum: newLISP in the real world
Topic: newlisp -x and embedding data files
Replies: 9
Views: 5638

newlisp -x and embedding data files

Is there a way to embedded files into the compiled executable? I would like to build a self contained website distributed as an executable - delivering static files that have been embedded. Alternatively, can the executable be rewritten if updates were made through such a web app?