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 - tylerdmace

#1
Quote from: "kanen"I am very interested in a newLisp compiler, as I am certain many people are. I've been thinking for years about how much work would be involved to turn newLisp code into a .fasl style output or to create a binary file (withut appending code to the end of the newLisp binary).


+1



I have a feeling, however, that Lutz isn't going to share the same eagerness so we're probably going to need someone in the community to stand up and do this. Bueller? Bueller? Anyone?
#2
newLISP in the real world / Re: ncurses and newlisp
November 29, 2009, 02:58:17 PM
Quote from: "cormullion"Perhaps you could use getmaxx and getmaxy separately...?


When trying to display text completely centered on the screen, I am unable to do so, even using these two methods. Are there any (even semi) in-depth tutorials on using ncurses with newlisp?



Note: If you're interested in the code I'm trying to use, you can see it here: http://www.silenceisdefeat.com/~tyler">http://www.silenceisdefeat.com/~tyler (the application is called SecSec).
#3
newLISP in the real world / ncurses and newlisp
November 28, 2009, 05:13:30 PM
I've been on the hunt for a clean way to find the row/col size of a terminal window for a few hours now and everything I've seen suggest that there's a lib-call (getmaxyx) native to libncurses. I've got both 5.0 and 6.0 installed but niether of them seem to contain that particular method.


ERR: import function not found in function import : "/lib64/libncurses.so.5: undefined symbol: getmaxyx"

Has anyone found a really good way to solve this problem? I'm sure there's something obvious I'm simply overlooking.