Search found 9 matches
- Sun Apr 10, 2016 2:05 pm
- Forum: newLISP and the O.S.
- Topic: New installation on Mac OS X El Capitan (10.11.4)
- Replies: 3
- Views: 11139
Re: New installation on Mac OS X El Capitan (10.11.4)
Does the GUI editor depend on any environment variables being set? I have scoured the forums and see some mention of JAVA_HOME as an env variable.
- Fri Apr 08, 2016 11:20 pm
- Forum: newLISP and the O.S.
- Topic: New installation on Mac OS X El Capitan (10.11.4)
- Replies: 3
- Views: 11139
New installation on Mac OS X El Capitan (10.11.4)
I did a fresh install on El Capitan (10.11.4) and I am having an error finding the Java JRE on my machine. I have the 1.8 JRE installed but it is not found by the installed newLISP-GS. I read some earlier posts and was able to get the GUI editor running using this: java -jar /usr/local/share/newlisp...
- Fri Oct 24, 2014 10:41 pm
- Forum: newLISP and the O.S.
- Topic: newLisp on Yosemite (Mac OS X.10)
- Replies: 2
- Views: 5715
Re: newLisp on Yosemite (Mac OS X.10)
The installation of java se 6 was pretty easy via the apple support site. I was just curious if newLisp was going to target Java 8.
- Fri Oct 24, 2014 10:36 pm
- Forum: newLISP and the O.S.
- Topic: newLisp on Yosemite (Mac OS X.10)
- Replies: 2
- Views: 5715
newLisp on Yosemite (Mac OS X.10)
After upgrading to Yosemite (10.10), NewLisp now prompts to install Java SE 6 runtime. Is there a configuration so that I don't have to install the Java SE 6 runtime and use Java 8?
- Mon Apr 14, 2014 10:18 pm
- Forum: newLISP in the real world
- Topic: Newbie help with Artful-Mysql
- Replies: 14
- Views: 41320
Re: Newbie help with Artful-Mysql
I am putting it through its paces. So far so good. I am testing basic reads. I'll try some inserts later.
- Sat Apr 12, 2014 1:30 am
- Forum: newLISP in the real world
- Topic: Newbie help with Artful-Mysql
- Replies: 14
- Views: 41320
Re: Newbie help with Artful-Mysql
I dropped your version into my modules directory and ran the following script: (module "mysql.lsp") (setf db (Mysql)) (:connect db "localhost" "RetransDjango" "retrans1" "retransdjango") (:query db "select * from mg_enterprise") (:close-db) My result was: > MAIN (Mysql 4303375872) ERR: list expected...
- Fri Apr 11, 2014 7:33 pm
- Forum: newLISP in the real world
- Topic: Newbie help with Artful-Mysql
- Replies: 14
- Views: 41320
Re: Newbie help with Artful-Mysql
Started some preliminary testing. And the pull from github still breaks as you probably expected. I am reading the FOOP conversion discussions and will tinker, but you will probably fix it before I will.
- Fri Apr 11, 2014 12:29 pm
- Forum: newLISP in the real world
- Topic: Newbie help with Artful-Mysql
- Replies: 14
- Views: 41320
Re: Newbie help with Artful-Mysql
I did open a ticket in github, but I was a little worried about the inactivity. Being new to Lisp in general I was not able to diagnose the problem quickly.
Thanks for the clues. Maybe I'll fork the repo and try to dig in, but swimming in the dark right now with Lisp :).
Thanks for the clues. Maybe I'll fork the repo and try to dig in, but swimming in the dark right now with Lisp :).
- Fri Apr 11, 2014 3:13 am
- Forum: newLISP in the real world
- Topic: Newbie help with Artful-Mysql
- Replies: 14
- Views: 41320
Newbie help with Artful-Mysql
I am very new to newLisp (so be gentle!) I was trying to run the "Artful" version of the Mysql module and am running into the following error: Michaels-MacBook-Pro:~ michaelbartz$ newlisp newLISP v.10.6.0 64-bit on OSX IPv4/6 UTF-8 libffi, options: newlisp -h > (module "mysql.lsp") MAIN > (setf db (...