Re: solicting user stories of picolisp

2010-07-21 Thread Tomas Hlavaty
Hi Alex, >> if I understand it well, you have all the articles locally on one >> machine. I wonder how long a simple grep over the article blobs would >> take? 22 seconds seems very long for any serious use. Have you > > Such numbers are very variable, and difficult to predict. I'm not sure w

Re: solicting user stories of picolisp

2010-07-21 Thread Alexander Burger
Hi Tomas, > > Such numbers are very variable, and difficult to predict. > > I'm not sure what you mean. How long does a simple grep over the > article blob files take? That should serve as a rough indicator about > worst case behaviour. I'm not talking about the timings of 'grep', but of the d

Re: solicting user stories of picolisp

2010-07-21 Thread Tomas Hlavaty
Hi Henrik, > 1.) This is what each "remote" looks like by way of E/R: > > (class +WordCount +Entity) > (rel article =C2=A0 (+Ref +Number)) > (rel word =C2=A0 =C2=A0 =C2=A0(+Aux +Ref +Number) (article)) > (rel count =C2=A0 =C2=A0 (+Number)) > (rel picoStamp (+Ref +Number)) > > (dbs =C2=A0 > =C2=A0

Re: Linux image for 64-bit PicoLisp

2010-07-21 Thread Jon Kleiser
Hi Alex and Henrik, Would the Linux system or my Mac, or both, have to be in 64-bit mode for the 64-bit PicoLisp to work? I would say: yes. Because a 32-bit Linux cannot execute 64-bit binaries (the other way round works, though) Why do you need a ready-made Linux image? Isn't there a direct

Re: Linux image for 64-bit PicoLisp

2010-07-21 Thread Alexander Burger
Hi Jon, > - Is it possible to run OpenGL stuff with 64-bit PicoLisp on Ubuntu? Yeah, this is one of the major open issues on 64-bits. Unfortunately, the 32-bit OpenGL library doesn't work on 64-bits, we have to rewrite it using 'native' calls. I couldn't do it until now, as I have no local 64-bi

Re: Linux image for 64-bit PicoLisp, OpenGL

2010-07-21 Thread Jon Kleiser
Hi Alex, I have some time available today and tomorrow. At least we could get started on the 64-bit OpenGL library. Re. VirtualBox: It's also available (for free) for Linux hosts, here: If you're interested, you might be able to run 64-bit Ubunt

Re: solicting user stories of picolisp

2010-07-21 Thread Henrik Sarvell
Thomas, you have to read http://picolisp.com/5000/-2-I.html if you want to understand how it works completely. And the problem is of course that it's slow (regardless of where or what) and I don't really have the time to fix it :-) On Wed, Jul 21, 2010 at 9:40 AM, Alexander Burger wrote: > Hi T

Re: External symbol names

2010-07-21 Thread Henrik Sarvell
OK, it's a misunderstanding then, I thought you wrote somewhere that one shouldn't rely on the ext symbol names too much, but it seems I was mistaken. This is good news because then the external symbol can be used to access an object, rendering an explicit autoincrementing id redundant in many sit

Re: Linux image for 64-bit PicoLisp, OpenGL

2010-07-21 Thread Alexander Burger
Hi Jon, > I have some time available today and tomorrow. At least we could get > started on the 64-bit OpenGL library. Great! Let me check the 32-bit version and write some fragments. > If you're interested, you might be able to run 64-bit Ubuntu on your > 32-bit Linux machine. Or am I wrong? A

Re: External symbol names

2010-07-21 Thread Alexander Burger
On Wed, Jul 21, 2010 at 01:10:19PM +0200, Henrik Sarvell wrote: > This is good news because then the external symbol can be used to access an > object, rendering an explicit autoincrementing id redundant in many > situations. Yes, especially if you use 'id' to convert the name to/from a number. Th