Search found 183 matches

by cameyo
Mon May 22, 2023 9:20 am
Forum: newLISP newS
Topic: Forums Have Moved!
Replies: 5
Views: 2765

Re: Forums Are Moving!

Thanks itistoday!!!
Logon ok.
I'll do more tests today.
cameyo

p.s. thank again
by cameyo
Wed May 03, 2023 4:56 pm
Forum: newLISP newS
Topic: I'd like to offer to take over these forums
Replies: 25
Views: 2921

Re: I'd like to offer to take over these forums

Unfortunately I have no knowledge to help you. Maybe you can find the solution here: move a phpBB forum in another server https://www.phpbb.com/community/viewtopic.php?f=466&t=2471681 Transferring Your Board to a New Host or Domain https://www.phpbb.com/support/docs/en/3.1/kb/article/transferring-yo...
by cameyo
Tue May 02, 2023 12:40 pm
Forum: newLISP newS
Topic: I'd like to offer to take over these forums
Replies: 25
Views: 2921

Re: I'd like to offer to take over these forums

Thanks itistoday for your work.
Any news about it?
Can I help in some way?

cameyo
by cameyo
Tue Apr 18, 2023 8:15 am
Forum: newLISP in the real world
Topic: Search a list of values in a list
Replies: 4
Views: 456

Re: Search a list of values in a list

This solves my question.
Thanks again Ralph.
Have a nice day.
by cameyo
Mon Apr 17, 2023 6:14 pm
Forum: newLISP in the real world
Topic: Search a list of values in a list
Replies: 4
Views: 456

Re: Search a list of values in a list

Thanks Ralph.
But I would like to find the starting index of the sequence 1 4 6, not the single number indices.
by cameyo
Sun Apr 16, 2023 3:02 pm
Forum: newLISP in the real world
Topic: Search a list of values in a list
Replies: 4
Views: 456

Search a list of values in a list

What is the best method to search for a list of values in a list?
Example:
(set 'pat '(1 4 6))
(set 'lst '(2 2 2 1 4 6 2 2 2 1 4 6 2 2 1))

(ref-lst pat lst) ==> 3 ;the first index
and/or
(ref-all-lst pat lst) ==> (3 9) ;all indexes
by cameyo
Wed Feb 08, 2023 11:32 am
Forum: newLISP in the real world
Topic: new module for SMTPS (secure SMTP)
Replies: 1
Views: 480

Re: new module for SMTPS (secure SMTP)

Thanks.
newlisp deserves a modern and functional forum.
by cameyo
Wed Feb 01, 2023 3:06 pm
Forum: Whither newLISP?
Topic: Searching on array
Replies: 0
Views: 805

Searching on array

How to search a value in array ?
Use array-list and then find, ref, etc ?
by cameyo
Sat Jan 21, 2023 8:24 am
Forum: So, what can you actually DO with newLISP?
Topic: chatGPT
Replies: 0
Views: 888

chatGPT

chatGPT is able to write code in newlisp!!!
Some errors, but it is fun.
Try: "write code in newlisp to solve quadratic equation"
by cameyo
Sat Jan 21, 2023 8:24 am
Forum: So, what can you actually DO with newLISP?
Topic: chatGPT
Replies: 0
Views: 827

chatGPT

chatGPT is able to write code in newlisp!!!
Some errors, but it is fun.
Try: "write code in newlisp to solve quadratic equation"
by cameyo
Sat Jan 21, 2023 8:24 am
Forum: So, what can you actually DO with newLISP?
Topic: chatGPT
Replies: 0
Views: 808

chatGPT

chatGPT is able to write code in newlisp!!!
Some errors, but it is fun.
Try: "write code in newlisp to solve quadratic equation"
by cameyo
Tue Jan 10, 2023 4:50 pm
Forum: So, what can you actually DO with newLISP?
Topic: newLISP manual (old version)
Replies: 2
Views: 530

newLISP manual (old version)

I'm looking for old versions of newLISP manual (historic reasons).
Any version is appreciated.
Thank you
cameyo
by cameyo
Sun Dec 25, 2022 5:51 pm
Forum: Anything else we might add?
Topic: Auguri
Replies: 0
Views: 791

Auguri

Best wishes to all

Code: Select all

(println "Happy " (add 1 (div 2 (div 3 (add 4 5 (mul 6 7 8 9))))))
by cameyo
Wed Nov 23, 2022 4:44 pm
Forum: So, what can you actually DO with newLISP?
Topic: newlisp note
Replies: 0
Views: 1002

newlisp note

Over one thousand of problems solved with newlisp.
https://github.com/cameyo42/newLISP-Note
So much fun with newlisp.
Thanks Lutz
by cameyo
Wed Jul 27, 2022 12:21 pm
Forum: newLISP newS
Topic: Lisp book
Replies: 0
Views: 1632

Lisp book

Lisp Book (Croatian language) by Kazimir Majorinc at:
http://monoskop.org/images/c/cb/Majorin ... moguce.pdf

Traslation in english "As Powerful As Possible" at:
https://github.com/amno1/as-powerful-as-possible
by cameyo
Mon Jul 04, 2022 1:58 pm
Forum: newLISP in the real world
Topic: setq '
Replies: 3
Views: 1495

Re: setq '

Solution of my problem:
viewtopic.php?f=16&t=4580
by cameyo
Mon Jul 04, 2022 1:53 pm
Forum: newLISP in the real world
Topic: Function as list
Replies: 0
Views: 1214

Function as list

by cameyo
Sun Jun 26, 2022 12:10 pm
Forum: newLISP newS
Topic: newLISP v.10.7.0 Stable Release
Replies: 21
Views: 21138

Re: newLISP v.10.7.0 Stable Release

deleted
by cameyo
Wed Jun 15, 2022 5:20 pm
Forum: newLISP in the real world
Topic: string function
Replies: 4
Views: 1125

Re: string function

Ok. I am old...and often confused.
Thanks HPW and Ralph.
by cameyo
Wed Jun 15, 2022 6:06 am
Forum: newLISP in the real world
Topic: string function
Replies: 4
Views: 1125

Re: string function

This is normal:

Code: Select all

(string a b)
-> "1020"
(string "a""b")
-> "ab"
This is strange, but you just need to know:

Code: Select all

(string ""a""b"")
-> "1020"
by cameyo
Tue Jun 14, 2022 5:43 am
Forum: newLISP in the real world
Topic: string function
Replies: 4
Views: 1125

string function

Why this?

Code: Select all

(setq a 10)
(setq b 20)
(string "'"a" '"b"")
-> "'10 '20"
by cameyo
Sat Jun 04, 2022 5:51 pm
Forum: newLISP in the real world
Topic: setq '
Replies: 3
Views: 1495

Re: setq '

Yes.
I know it is wrong, but after:

Code: Select all

(setq 'a 3)
> 3
the symbol a is created, but is nil.
Where is the value 3? ;-)
by cameyo
Wed Jun 01, 2022 4:32 pm
Forum: newLISP in the real world
Topic: setq '
Replies: 3
Views: 1495

setq '

Code: Select all

(setq 'a 3)
output: 3
a
output: nil
Which symbol is binded with 3?
How to retrieve it?

p.s. it's only a curiosity