Subscribe

2017-04-27 Thread Abel Normand
-- С уважением, Наиль.

Re: pgint.l

2019-01-17 Thread Abel Normand
t's not a core dev issue. > > -Michel > > On Wed, Jan 16, 2019 at 11:05 PM Abel Normand > wrote: > >> Thanks all for your suggestions, I will open respective issues for minor >> improvements. >> >> Also mmamkin connected with me directly and also sugg

Re: pgint.l

2019-01-16 Thread Abel Normand
hat you think?Thanks. From: r...@tamos.netSent: 16 January 2019 16:04To: picolisp@software-lab.deReply to: picolisp@software-lab.deSubject: Re: pgint.l +1 for writing tests. +1 for using aw-‘s test harness. +1 for having a sane license. Huzzah! :) On Tue, 15 Jan 2019 21:11 +0300

catching environment during manual (eval)

2019-01-18 Thread Abel Normand
Hello everyone, can someone help me please to understand why (catch) around manually-evaluated function args is not actually catching thrown tag? --- (de manual-eval X (mapc eval X) ) (de throw-err () (throw 'my-err) ) # this does not evaluate (catch 'my-err (manual-eval

Re: catching environment during manual (eval)

2019-01-20 Thread Abel Normand
h 'pg-data-err (pg-execute "SELECT 1/0;")) (pg-execute "SELECT 1;") ) ) ) ``` explicit (catch) fails as well. Probably Im missing something? Thanks. Best regards, Nail. сб, 19 янв. 2019 г. в 16:57, Alexander Burger : > On Sat, Jan 19, 2019 at 04:27:53PM +0300, Abe

Re: catching environment during manual (eval)

2019-01-20 Thread Abel Normand
more simplified solution. Many thanks for your answers and your patience. Soon I will fix this issue in pgint.l . Best regards, Nail. вс, 20 янв. 2019 г. в 19:40, Alexander Burger : > Hi Abel, > > On Sun, Jan 20, 2019 at 02:40:58PM +0300, Abel Normand wrote: > > I did some test

Re: catching environment during manual (eval)

2019-01-19 Thread Abel Normand
Thanks Alexander, you are right. I fixed it accidentally when I was unintentionally quoting random things inside manually. If you interested in specifics, please check this

pgint.l

2019-01-15 Thread Abel Normand
Hello everyone, I'm happy to announce that I released my small library to interfacing with PostgreSQL -- https://gitlab.com/Abel-ze-Normand/pgint.l . I tried to keep its implementation as simple as possible. I'm open to your suggestions for future improvements and your contributions. -- Best

Re: pgint.l

2019-01-15 Thread Abel Normand
Hi Alexander, thanks for your suggestion. I've completely forgot about (pass) behaviour, I would include this change in next patch. There are some questions that remained for me unanswered during development: 1) should I use PostgreSQL error codes and throw exceptions based on them? So you could

Re: json.l fails to load on pil 64

2019-03-14 Thread Abel Normand
Hello.This error related to namespaces feature in json.l. easy workaround: when run pil, set env PIL_NAMESPACES=false before pil. This should fix your issue, you can actually find this solution in official doc for json.lNail.

Re: app builder from JSON

2019-05-22 Thread Abel Normand
Hello,Sure it is possible, even without hard string manipulations, which would be required in common languages to codegen. But PicoLisp is homoiconic so you are able to construct your program with plain list manipulations. Just how Lisp was intended to use from the start :)Best regards, Nail

lens.l - generalized data accessors

2019-05-19 Thread Abel Normand
Hello everyone. I'm happy to present you my last project: https://gitlab.com/Abel-ze-Normand/lens.l. It is a very nice abstraction from Haskell functional programming community and I wanted to share with you this PicoLisp implementation of Lens pattern and utilities to work with them. I plan to

Re: lens.l - generalized data accessors

2019-05-19 Thread Abel Normand
regards beneroth Am 2019-05-19 23:02, schrieb Abel Normand: > Hello everyone. > > I'm happy to present you my last project: > https://gitlab.com/Abel-ze-Normand/lens.l. It is a very nice > abstraction from Haskell functional programming community and I wanted > to share with

Re: lens.l - generalized data accessors

2019-05-19 Thread Abel Normand
.In non-functional programming languages lenses make no sense. They simply don't exist there.Have fun!Abel Normand <abel.ze.norm...@gmail.com> schrieb am So., 19. Mai 2019, 23:08:Hello everyone. I'm happy to present you my last project: https://gitlab.com/Abel-ze-Normand/lens.l. It is a

Re: Redis-inspired key/value store in PicoLisp

2020-06-16 Thread Abel Normand
Hello Alexander! Very nice project, I'll be looking for test your library! Looking good. Soon enough picolisp gonna have all popular libs / integrations to challenge other stacks :) Regards, Nail. On 6/16/20 12:34 PM, Alexander Williams wrote: Hi everyone, I wanted to build a TCP-based