Re: Missing functions in miniPicolisp?

2017-08-21 Thread Denis Fourt
Hi, I have already thought and tried the seek function (there are faster way for long strings) and in that case I do not mind "patching" in lisp because the lisp version can be made more useful, providing the position of the substring. So far I have done all string processing in picolisp with l

Re: Missing functions in miniPicolisp?

2017-08-20 Thread Denis Fourt
Ok, thanks for the answers. So, if miniPicolisp should be a "real" project, would sub? (and any other "missing" functions) be available in it sooner or later? pre? is available, so is there any reason why sub? and hash are not found? I might try it myself, but it would take the time of my unde

Missing functions in miniPicolisp?

2017-08-20 Thread Denis Fourt
Hi, I have finally tried yesterday miniPicolisp (which might actually be all I need). It seems, that some functions like sub? or hash have not been implemented yet while (all) says their symbols are present (On the other hand, later is also included in this list which does not match the specs

Missing functions in miniPicolisp?

2017-08-20 Thread Denis Fourt
Hi, I have finally tried yesterday miniPicolisp (which might actually be all I need). It seems, that some functions like sub? or hash have not been implemented yet while (all) says their symbols are present (On the other hand, later is also included in this list which does not match the specs (

RE: The database as a "dictionary"?

2015-11-26 Thread Denis Fourt
Thanks Alex, I shall study that example. Denis > From: a...@software-lab.de > To: picolisp@software-lab.de > Subject: Re: The database as a "dictionary"? > Date: Thu, 26 Nov 2015 07:03:31 +0100 > > Hi Denis, > >> Programming all manually? What I like about

RE: The database as a "dictionary"?

2015-11-25 Thread Denis Fourt
Thank you very much Alex for the explanations. I had actually missed the +Aux. My first question was a bit misleading, as I didn't have then a good global view of the DB.  Programming all manually? What I like about picolisp is that when there is no code which does exactly what I want, I still

RE: The database as a "dictionary"?

2015-11-24 Thread Denis Fourt
> >> From: olopie...@gmail.com >> To: picolisp@software-lab.de >> Subject: Re: The database as a "dictionary"? >> Date: Sun, 22 Nov 2015 05:28:35 +0100 >> >> On Sat, Nov 21, 2015 at 10:37 PM, Denis Fourt wrote:

RE: The database as a "dictionary"?

2015-11-22 Thread Denis Fourt
100 > > On Sat, Nov 21, 2015 at 10:37 PM, Denis Fourt wrote: >> B-Tree means binary tree or balance tree? > > Nobody knows the meaning of the B. > > https://en.wikipedia.org/wiki/B-tree > -- > UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

RE: questions about the gui

2015-11-21 Thread Denis Fourt
Hi, Joh-Tob, thanks, of course you are right, it is the job of the OS to prevent such conflicts, how could I have forgotten that!!! And thanks for pointing the c source file. Alex, thanks for the explanations, as I had not understood that picolisp behaved like a web server without the calling

RE: The database as a "dictionary"?

2015-11-21 Thread Denis Fourt
Thanks for the information. I shall look deeper into the documentation and the code, then I should try it. B-Tree means binary tree or balance tree? Denis > From: a...@software-lab.de > To: picolisp@software-lab.de > Subject: Re: The database as a "dictio

RE: questions about the gui

2015-11-21 Thread Denis Fourt
it can has a own state. The user can connects to > his new port > Does it help? > > Am 21.11.2015 08:28 schrieb "Denis Fourt" > mailto:denis.p...@hotmail.com>>: > Hello, > After reading the gui documentation, I would like some help on the > following

The database as a "dictionary"?

2015-11-21 Thread Denis Fourt
Hello, I have been working on some robust algorithms for text summarization and matching. A very approximate (and misleading, but this is not important now) description is : a) turn documents into lists of sentences b) turn sentences into lists of words c) estimate words statistics d) turn sent

Questions about the gui (2nd try)

2015-11-20 Thread Denis Fourt
Hello, After reading the gui documentation, I would like some help on the following topics, please : a) I am not sure to understand the purpose and the uses of the psh function b) I understand that calling the (app) function allows multiple users to access an application at the same time, whic

questions about the gui

2015-11-20 Thread Denis Fourt
Hello, After reading the gui documentation, I would like some help on the following topics, please : a) I am not sure to understand the purpose and the uses of the psh function

RE: A pragmatic solution to using arrays in picolisp

2015-02-16 Thread Denis Fourt
If I may provide an advice, in "Purely Functional Data Structures" from Chris Okasaki (Cambridge University Press, 1998), you will find various data structures based on lists which come close to regular arrays in term of access performance. This might be what you are looking for. A simplified ML

RE: PicoLisp on mac osx : bug

2013-11-21 Thread Denis Fourt
pops up when > I use a real mouse and click the right mouse button. However, if I use > the Ctrl key together with a normal (left button) click, nothing happens. > > /Jon > > On 21-11-13 00:01 , Denis Fourt wrote: >> Hello again, >> >> Jon : I have modified the mak

RE: PicoLisp on mac osx : bug

2013-11-20 Thread Denis Fourt
are-lab.de > Subject: Re: PicoLisp on mac osx : bug > Date: Wed, 20 Nov 2013 08:49:10 +0100 > > Hi Denis, > > It's not clear to me exactly what you did to get OpenGL working with > pil32 on Mac. > > On 19-11-13 16:05 , Denis Fourt wrote: >> Hello Alexander, &

RE: PicoLisp on mac osx : bug

2013-11-20 Thread Denis Fourt
gt; To: picolisp@software-lab.de > Subject: Re: PicoLisp on mac osx : bug > Date: Wed, 20 Nov 2013 08:49:10 +0100 > > Hi Denis, > > It's not clear to me exactly what you did to get OpenGL working with > pil32 on Mac. > > On 19-11-13 16:05 , Denis Fourt wrote: >>

RE: PicoLisp on mac osx : bug

2013-11-19 Thread Denis Fourt
Hello Alexander, Yes, I installed pil32 and Jon Kleiser's library. I built everything but the small test program could not find the gl functions wrappers. So I modified the gl lib makefile and everything works : now I have a pil32 running with openGL on mac os 10.6 (so not need for the emulator

PicoLisp on mac osx : bug

2013-11-18 Thread Denis Fourt
Hello, Ok, second try I downloaded and installed Picolisp 32 bits on mac os 10.6. Everything went all right. Then I tried to install the library for openGL and I had to modify the makefile to build a 32 bits lib. ** DYNAMIC-LIB-FLAGS = -m32 -dynamiclib -undefined dynamic_lookup -framew

PicoLisp on mac os x : bug

2013-11-18 Thread Denis Fourt
Hello, I downloaded and installed Picolisp 32 bits on mac os 10.6. Everything went all right. Then I tried to install the library for openGL and I had to modify the makefile to build a 32 bits lib. **DYNAMIC-LIB-FLAGS = -m32 -dynamiclib -undefined dynamic_lookup -framework OpenGL -framew

Subscribe

2013-11-18 Thread Denis Fourt
--_06dfb7a0-4295-4b61-a0da-68e912b16fd5_ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable = --_06dfb7a0-4295-4b61-a0da-68e912b16fd5_ Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-