Re: French localization

2017-02-28 Thread Alexander Burger
On Tue, Jan 24, 2017 at 07:49:43AM +0100, Alexander Burger wrote: > Dear PicoLispers, > > is anybody able and interested to do the French localization of PicoLisp? How is the situation? Does anybody have good news? ;) ♪♫ Alex -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

in the spirit of RosettaCode...

2017-02-28 Thread Loyall, David
In the spirit of RosettaCode, may I present http://www.todobackend.com/ ? Perhaps one of you skilled picolisp folks could submit a new implementation to their growing list. Cheers, --Dave -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Re: Workers for multicore processing (Question and RFC)

2017-02-28 Thread Robert Wörle
Am 28.02.2017 um 12:04 schrieb Petr Gladkikh: I believe modern Linux systems have much higher than 1024 file descriptor per process limits. E.g. on my system $ uname -srv Linux 4.4.0-64-generic #85-Ubuntu SMP Mon Feb 20 11:50:30 UTC 2017 $ cat /proc/sys/fs/file-max 2013532 And you can adjust

Re: Workers for multicore processing (Question and RFC)

2017-02-28 Thread Alexander Burger
Hi Petr, > I believe modern Linux systems have much higher than 1024 file descriptor > per process limits. Right. However Joh-Tob was talking about the number of child processes. There is a limit in PicoLisp in how many child processes can be spawned with (fork), caused by the size of an

Re: Workers for multicore processing (Question and RFC)

2017-02-28 Thread Petr Gladkikh
I believe modern Linux systems have much higher than 1024 file descriptor per process limits. E.g. on my system $ uname -srv Linux 4.4.0-64-generic #85-Ubuntu SMP Mon Feb 20 11:50:30 UTC 2017 $ cat /proc/sys/fs/file-max 2013532 And you can adjust this limit to your requirements. 2017-02-25 12:26

Re: Scaled division and sqrt

2017-02-28 Thread Danilo Kordic
> If you are going to use a list, could also just put the 'scale' in a property > of the list? I wouldn't call it a propert to avoid confusion with PicoLisp `prop'erties. I couldn't find `allbase'. I had [[https://en.wikipedia.org/wiki/Algebraic_data_type][Algebraic DataTypes]] in mind,

Re: in the spirit of RosettaCode...

2017-02-28 Thread Alexander Burger
Hi Loyall, > In the spirit of RosettaCode, may I present http://www.todobackend.com/ ? Seems I should give it a try :) I don't understand the full extent of the task yet, but could it be something similar to http://picolisp.com/wiki/?mindbgui with some modifications and extensions? ♪♫ Alex --

Re: in the spirit of RosettaCode...

2017-02-28 Thread Alexander Burger
On Tue, Feb 28, 2017 at 05:21:52PM +0100, Alexander Burger wrote: > Hi Loyall, Oops! I mean "Hi Dave!" :) -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Re: in the spirit of RosettaCode...

2017-02-28 Thread Joe Bogner
Hi David, Alex Not exactly the same thing (both front-end and back-end)... I created a todo example last year: https://github.com/joebo/pil-mithril-todo. This is not a pure pil way since it uses a javascript framework - so it could be a PicoLisp / Mithril.js combo. It would be nice to see a pure

Re: Scaled division and sqrt

2017-02-28 Thread Lindsay John Lawrence
allbase --> tankfeeder / exercism-io / a-f.l /Lindsay On Tue, Feb 28, 2017 at 3:41 AM, Danilo Kordic wrote: >> If you are going to use a list, could also just put the 'scale' in a property >> of the list? > > I wouldn't call it a propert to avoid confusion with

Re: in the spirit of RosettaCode...

2017-02-28 Thread Alexander Burger
On Tue, Feb 28, 2017 at 05:21:52PM +0100, Alexander Burger wrote: > > In the spirit of RosettaCode, may I present http://www.todobackend.com/ ? > > Seems I should give it a try :) > > I don't understand the full extent of the task yet, but could it be something To be correct, I don't understand

Re: Scaled division and sqrt

2017-02-28 Thread Lindsay John Lawrence
Hi, I practiced a bit more with the built-in functions... https://github.com/thinknlive/picolisp-gosper.git /Lindsay -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe