Search found 15 matches

by gekkonier
Wed May 12, 2021 12:13 pm
Forum: newLISP in the real world
Topic: LispIDE for Windows from daansystems
Replies: 0
Views: 2182

LispIDE for Windows from daansystems

Hi, I haven't found any reference to it before, and I thought some of you might like it too, if you use Windows: https://github.com/daansystems/lispide It's a very, very small lisp editor, with a built in repl for different kinds of lisp like languages. You can download an installer too from github ...
by gekkonier
Tue Oct 09, 2018 3:25 pm
Forum: newLISP in the real world
Topic: newlisp.dll UTF8 used with purebasic 5.62
Replies: 4
Views: 4207

Re: newlisp.dll UTF8 used with purebasic 5.62

Hi HPW,
thank you for your example, I will try it later and give you feedback since I use Purebasic too (I'm not that active there, but who knows, thats's something interesting here!)

Gruß, Gregor
by gekkonier
Wed Sep 12, 2018 11:33 am
Forum: newLISP newS
Topic: Development release newLISP v.10.7.4
Replies: 19
Views: 19883

Re: Development release newLISP v.10.7.4

HPW wrote:Hello Lutz,
By the way: We stll have the optional TclTk Editor. ;-)

Regards
Hans-Peter
Hello Hans-Peter,
I'm very intereted in the TclTk Editor.
Can you tell me (because I have Tomaten auf den Augen) where I can find it? I'm very curious and would like to dig it.
Thank you, Gregor
by gekkonier
Tue Sep 11, 2018 8:16 am
Forum: newLISP newS
Topic: Development release newLISP v.10.7.4
Replies: 19
Views: 19883

Re: Development release newLISP v.10.7.4

Hi Lutz! Thank you! For the http://www.newlisp.org/downloads/development/INSTALL.txt it would be great if you mention the usage of environment variables, I think it could help to use newLisp without any installer on Windows. The next thing I would like to mention (not suitable maybe): The Java Edito...
by gekkonier
Thu Aug 09, 2018 3:38 pm
Forum: newLISP in the real world
Topic: Any new releases, planned future
Replies: 5
Views: 5621

Re: Any new releases, planned future

Hi Lutz!
Thank you for that update!
by gekkonier
Fri Jul 13, 2018 8:46 am
Forum: newLISP in the real world
Topic: Sorting a list or string
Replies: 4
Views: 4295

Re: Sorting a list or string

It's kind of tedious. I hope everything is alright with joejoe...
;)

One can only guess if you don't get any feedback.
by gekkonier
Wed Jul 11, 2018 10:02 am
Forum: newLISP in the real world
Topic: Sorting a list or string
Replies: 4
Views: 4295

Re: Sorting a list or string

Hello!
Please provide a valid content for the symbol titles, and what output you expect from that given data.
Your code does not work at all ;)
by gekkonier
Fri May 25, 2018 7:00 pm
Forum: newLISP in the real world
Topic: httpd-conf intercept requests and answer with a function?
Replies: 6
Views: 5891

Re: httpd-conf intercept requests and answer with a function

Hi varbanov,
thank you very much for your example. I try to setup your example and tinker with it.
Sorry for that late response, i got so much work to do.

Gregor
by gekkonier
Thu Mar 22, 2018 2:35 pm
Forum: newLISP and the O.S.
Topic: ubuntu 16.04 newlisp-edit: server could not connect...
Replies: 4
Views: 5024

Re: ubuntu 16.04 newlisp-edit: server could not connect...

Hi,
for use of the newlisp editor on linux I cannot help, I'm sorry.

But maybe, if you like you could try the https://github.com/kosh04/newlisp-mode it's really excellent!

Good luck!
by gekkonier
Tue Feb 13, 2018 12:46 pm
Forum: newLISP newS
Topic: Book about Fuzzy Logic in newLISP
Replies: 9
Views: 14841

Re: Book about Fuzzy Logic in newLISP

Hello! I'm enjoying your book, and newLISP at all! I have one question just out of curiosity: In chapter 4.3 you are implementing a simple CSV based database. At first I would have chosen save and load and build the update, modify and filtering around the built in list functions. Did you chose csv b...
by gekkonier
Wed Jan 31, 2018 10:29 am
Forum: newLISP in the real world
Topic: httpd-conf intercept requests and answer with a function?
Replies: 6
Views: 5891

Re: httpd-conf intercept requests and answer with a function

Thank you rickyboy, I need something much more simpler. I'd like to program inhouse tools for 2-3 people in company, and for my family at home. I like lisp like syntax much more (than my previous vehicle ruby) so I tried Common Lisp, Clojure, Racket for this tasks, but: Common Lisp is overkill and I...
by gekkonier
Tue Jan 30, 2018 6:51 pm
Forum: newLISP in the real world
Topic: httpd-conf intercept requests and answer with a function?
Replies: 6
Views: 5891

Re: httpd-conf intercept requests and answer with a function

After further investigation it seems it's the easiest way to do it with cgi on apache. and dont use the inbuilt webserver.
by gekkonier
Tue Jan 30, 2018 12:26 pm
Forum: newLISP in the real world
Topic: httpd-conf intercept requests and answer with a function?
Replies: 6
Views: 5891

httpd-conf intercept requests and answer with a function?

Hi, I'd like to tinker a bit with the inbuilt webserver. I managed to fire one up that serves form a directory, and logs ervery request into a file. For this i used (command-event (fn (s)) in a httpd-conf.lsp file. This I use with newlisp httpd-conf.lsp -http -d 80 -w ./www In this command-event i c...
by gekkonier
Mon Jan 29, 2018 10:43 am
Forum: Anything else we might add?
Topic: It's a bug? first,last,rest in utf-8 string
Replies: 1
Views: 3798

Re: It's a bug? first,last,rest in utf-8 string

Hi qinying, are you sure? Im running this with UTF-8 version inside atom with plugin script (on win10, with utf-8 newLISP) (set 'str "中文字符串") (println str) (println (first str)) (println (last str)) (println (rest str)) (println (explode str)) The output: 中文字符串 中 串 文字符串 ("中" "文" "字" "符" "串") That se...