Search found 36 matches

by protozen
Mon Sep 16, 2019 5:58 pm
Forum: newLISP Graphics & Sound
Topic: guiserver wont run on Win10
Replies: 1
Views: 4725

Re: guiserver wont run on Win10

What version of java?
by protozen
Tue Jul 02, 2019 10:26 pm
Forum: Anything else we might add?
Topic: Raising An Artificial Intelligence (blog)
Replies: 1
Views: 5195

Re: Raising An Artificial Intelligence (blog)

It was a good read thanks, I hope to see more soon, hearing about this is interesting.

What happen with Trustpipe? Not much is public.
by protozen
Tue Jul 02, 2019 10:25 pm
Forum: newLISP newS
Topic: newLISP language support for Visual Studio Code
Replies: 9
Views: 11097

Re: newLISP language support for Visual Studio Code

This is great to see, I'll check it out, thank you.
by protozen
Wed Aug 08, 2018 2:01 pm
Forum: newLISP in the real world
Topic: Any new releases, planned future
Replies: 5
Views: 5621

Any new releases, planned future

Hi All,

I'm curious if any new releases are on the horizon, and if there are future plans for newlisp in general. Love the language and programming in newlisp, I only wish it were a more general purpose platform / language, but I know it's not in the cards.
by protozen
Mon Nov 20, 2017 1:00 am
Forum: newLISP in the real world
Topic: parameter for http only
Replies: 6
Views: 5563

Re: parameter for http only

Ah great thanks Lutz!
by protozen
Sat Nov 18, 2017 7:39 pm
Forum: newLISP in the real world
Topic: parameter for http only
Replies: 6
Views: 5563

Re: parameter for http only

Actually that doesn't work, but it's a good way to redefine methods to implement a form of permissions. What I mean is that when you run newlisp as a process with -http as in; newlisp -http -d 8080 src.lsp and in other newlisp process (write-file "http://localhost:8080/blah.txt" "write test") ... yo...
by protozen
Fri Nov 17, 2017 7:05 am
Forum: newLISP in the real world
Topic: parameter for http only
Replies: 6
Views: 5563

Re: parameter for http only

Thank you.
by protozen
Fri Nov 17, 2017 1:17 am
Forum: newLISP in the real world
Topic: parameter for http only
Replies: 6
Views: 5563

parameter for http only

When using -http, should newlisp still be processing file writing requests etc.. like with (write-file "http://xzy.com/index.html" "blah"). This is happening on several newlisp versions on windows and linux. If this is intended behavior, is there a simple way to disable it?
by protozen
Sat Apr 08, 2017 4:22 am
Forum: newLISP newS
Topic: Stable maintenance release newLISP v.10.7.1
Replies: 11
Views: 15683

Re: Stable maintenance release newLISP v.10.7.1

Will this make it to the other binaries?
by protozen
Sat Jan 28, 2017 3:24 am
Forum: newLISP newS
Topic: newlisp.vim 1.37
Replies: 5
Views: 12930

Re: newlisp.vim 1.37

Yup, thank you indeed. I'm not a big user of vi / vim for code, but thanks for the update.
by protozen
Sun Jan 22, 2017 1:36 am
Forum: newLISP newS
Topic: newLISP v.10.7.0 Stable Release
Replies: 21
Views: 21185

Re: newLISP v.10.7.0 Stable Release

Happy New Year! Looking forward to another great release in 10.7.1
by protozen
Sat Jan 23, 2016 4:21 am
Forum: newLISP newS
Topic: newLISP v.10.7.0 Stable Release
Replies: 21
Views: 21185

Re: newLISP v.10.7.0 Stable Release

Thanks Lutz! I'm glad to see that updates and development still goes on =)

Newlisp makes me enjoy programming again.
by protozen
Tue Sep 29, 2015 12:22 am
Forum: newLISP newS
Topic: newLISP v.10.6.4 development
Replies: 12
Views: 16494

Re: newLISP v.10.6.4 development

Thanks xytroxon and Lutz. Adding cdecl works, at least with crypto.lsp in the distribution that I just tried. Binary was this 32bit windows on windows 10: http://newlisp.nfshost.com/downloads/development/newlisp-10604-win-gs-164.exe Build label states: newLISP v.10.6.4 32-bit on Windows IPv4/6 libff...
by protozen
Sun Sep 27, 2015 7:40 pm
Forum: newLISP newS
Topic: newLISP v.10.6.4 development
Replies: 12
Views: 16494

Re: newLISP v.10.6.4 development

It happens with 32 and 64 bit on Windows 10. I've tried curl, crypto and SQLite (but not for both 32 and 64 for all). I've been using 10.6.2 because of this, as 10.6.3 and 10.6.4 crashes consistently (at least on windows 10, I haven to tried other platforms). Unfortunately I've not had the time to f...
by protozen
Sat Sep 26, 2015 4:20 am
Forum: newLISP newS
Topic: newLISP v.10.6.4 development
Replies: 12
Views: 16494

Re: newLISP v.10.6.4 development

with 10.6.3 and 10.6.4 on windows newlisp crashes when trying to make ffi calls - I've not tested various libraries but curl.lsp definitely crashes.
by protozen
Mon Jul 13, 2015 8:01 pm
Forum: newLISP in the real world
Topic: CGI and State
Replies: 10
Views: 7722

Re: CGI and State

The concept of an application server for newlisp is really appealing, for small web applications that can be embedded into a single executable or package. I've looked at existing frameworks to see if any of them fit, but Artfulcode web handling modules are the closest I found. Since I don't need a f...
by protozen
Mon Jul 13, 2015 4:46 am
Forum: newLISP in the real world
Topic: CGI and State
Replies: 10
Views: 7722

Re: CGI and State

Thanks that is what I figured. I think I'll end up with a session server of some sort.
by protozen
Fri Jul 10, 2015 1:11 am
Forum: newLISP in the real world
Topic: CGI and State
Replies: 10
Views: 7722

CGI and State

What is the best way to manage state when using CGI for web apps. Say I want to store program and session data, not using cookies - but the concept of session data from other web frameworks. I need to maintain persistent data in memory between requests. Creating a newlisp server using newlisp -c , i...
by protozen
Mon Jun 29, 2015 6:18 pm
Forum: newLISP in the real world
Topic: userland packet filter in iptables
Replies: 8
Views: 7536

Re: userland packet filter in iptables

Thanks, I have an interest in this, and it helps. Here is some old code of mine, I just discovered: http://www.newlisp.org/code/nfq.tgz The included nfq-test.c came from the net and helped to write nfq.lsp. I remember this code! I sent an example over when we were porting to OpenWRT and Linux and tr...
by protozen
Mon Apr 13, 2015 5:51 am
Forum: newLISP in the real world
Topic: Just starting with newLISP
Replies: 4
Views: 4667

Re: Just starting with newLISP

Hey this is interesting, I never heard of it before.
hilti wrote:
mcc wrote: is *very* nice since anything else Lisplike failed
on my Arietta
Look's like an impressive small hardware. How's the performance?

Cheers
Marc
by protozen
Mon Apr 13, 2015 5:19 am
Forum: newLISP in the real world
Topic: Scaleway with newLisp
Replies: 0
Views: 3498

Scaleway with newLisp

Hi All,

I started up an account with Scaleway - because I really like what they're doing. This really shouldn't be news but a simple ./configure-alt, make, make check builds just fine on their ARM infrastructure. newLisp is up and running on a new bare metal cloud =)

Cheers,

Travis
by protozen
Sun Mar 15, 2015 5:28 am
Forum: newLISP newS
Topic: We are hiring newLisp programmers....
Replies: 4
Views: 20220

Re: We are hiring newLisp programmers....

Pretty cool to see this.
by protozen
Thu Feb 19, 2015 8:39 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

I think I misunderstood in how net-eval can be used, as in the map reduce examples. It's not what I had in mind, but I think I get can what I wanted using this.
by protozen
Thu Feb 19, 2015 2:17 am
Forum: newLISP in the real world
Topic: newlisp -x does not play well with -m or -s
Replies: 9
Views: 6390

Re: newlisp -x does not play well with -m or -s

Cool, nice that we'll be able to set the cell memory, but the having access to the stack size would open up others options for dynamic constraints.