Re: picolisp db encryption?

2025-01-31 Thread Lindsay Lawrence
On Tue, Jan 28, 2025 at 11:40 AM Alexander Burger wrote: > Also, I'm not sure if this is really useful, as it could always be > locally intercepted. > Yes. Any prog doing this would have to implement something to get keys securely for use. > Needs more thinking ... > I agree. Thanks Alex!

Re: Yet Another JSON Parser

2025-01-31 Thread Lindsay Lawrence
On Fri, Jan 31, 2025 at 12:20 PM wrote: > Great. You can never have too many tests. Test your code now too. > > Take the tests from repo and have fun. > > https://git.envs.net/mpech/pil-json > > > (mike) > Wow. That is a great collection of tests, with good insight into how to write my own as wel

Re: Yet Another JSON Parser

2025-01-31 Thread GB
Hey Lindsay, Good thing you're having fun writing useful projects! I wrote a small parser myself for picolisp so here's a few points for improvement: - Data on json.org is not a full spec, I recommend using ECMA404 or RFC8259, as they specify behaviours way more accurately. For example, I'm not

Yet Another JSON Parser

2025-01-31 Thread Lindsay Lawrence
Hi, I added another page to the Examples section of the wiki. https://picolisp.com/wiki/?Documentation#yajson Aside from the code, I included several examples of use, along with 'bench' times and a somewhat detailed description. All examples can be run from the repl and more can be found on the

Re: Yet Another JSON Parser

2025-01-31 Thread picolisp
On 31-01-2025 20:32, Lindsay Lawrence wrote: I added another page to the Examples section of the wiki. https://picolisp.com/wiki/?Documentation#yajson Aside from the code, I included several examples of use, along with 'bench' times and a somewhat detailed description. All examples can be ru