Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - cameyo

#16
newLISP and the O.S. / Re: Windows clipboard
November 07, 2023, 06:29:32 AM
Thanks!
#17
newLISP and the O.S. / Re: Windows clipboard
November 06, 2023, 01:12:31 PM
Thanks.
I can use the "clip" command, but where is "pasteclipboard.exe" ?
I have found: "powershell get-clipboard" to get text from clipboard.
#18
newLISP in the real world / Re: Reading keyboard input
October 26, 2023, 07:37:53 AM
Sorry, I can't help you.
But what do you mean by "enhanced REPL"?
I use Notepad++ connected to a REPL via Autohotkey script.
Far more powerful than only REPL.
Thanks.
#19
newLISP in the real world / Re: Reading keyboard input
October 26, 2023, 04:28:10 AM
This works for me:

(define (keys)
  (local (k)
    (while (!= (setq k (read-key)) 13)
      (setq s (string k))
      (println s))))

(keys)
;-> 1   ; Ctrl-A
;-> 111 ; O
;-> 79  ; o
;-> 0
;-> 59  ; F1
;-> 0
;-> 60  ; F2
;-> 224
;-> 81  ; PageUp
;-> 224
;-> 72  ; Up
;-> 224
;-> 77  ; Right
;-> 224
;-> 80  ; Down
;-> 224
;-> 75  ; Left
#20
newLISP and the O.S. / Windows clipboard
October 09, 2023, 06:00:10 AM
Do you known a way to manage windows clipboard (cut, copy, paste)?
I have tried to use clipboard.dll with no luck.
Thanks.

cameyo
#21
newLISP in the real world / newLISP Note
June 03, 2023, 09:07:51 AM
newLISP Note
more than 2000 newLISP topics (Project euler, Rosetta code, Programmers Interview, ...)
cameyo
p.s. it's written in Italian (but not the code ;)) and I'm just an amateur :)
#22
newLISP newS / Re: newLISP Github?
May 26, 2023, 09:07:07 AM
Anyone hear from Lutz?
I hope someone continues the development of newlisp.
To attract new users I think it would be useful to be able to download compiled versions of the latest 10.7.6 release for the major operating systems.
cameyo
p.s. sorry for the bad english
#23
Thanks itistoday!
Thanks ralph!
#24
Thanks.

newlisp deserves a modern and functional forum.
#25
Whither newLISP? / Searching on array
February 01, 2023, 07:06:15 AM
How to search a value in array ?

Use array-list and then find, ref, etc ?
#26
So, what can you actually DO with newLISP? / chatGPT
January 21, 2023, 12:24:36 AM
chatGPT is able to write code in newlisp!!!

Some errors, but it is fun.

Try: "write code in newlisp to solve quadratic equation"
#27
Thanks Ralph
#28
I'm looking for old versions of newLISP manual (historic reasons).

Any version is appreciated.

Thank you

cameyo
#29
Anything else we might add? / Auguri
December 25, 2022, 09:51:22 AM
Best wishes to all
(println "Happy " (add 1 (div 2 (div 3 (add 4 5 (mul 6 7 8 9))))))
#30
So, what can you actually DO with newLISP? / newlisp note
November 23, 2022, 08:44:33 AM
Over one thousand of problems solved with newlisp.

https://github.com/cameyo42/newLISP-Note">//https://github.com/cameyo42/newLISP-Note

So much fun with newlisp.

Thanks Lutz