Re: Fridays for Functions (Was: PilCon 2020)

2020-06-03 Thread Lindsay Lawrence
This is a great idea. Count me in. On Tue, Jun 2, 2020 at 10:59 PM Alexander Burger wrote: > Hi all, > > after we canceled PilCon 2020, we discussed in this list and in IRC the > idea of > doing something online instead. Some people proposed Jitsi. > > A linear format of just streaming

Re: Behavior of sort

2019-05-04 Thread Lindsay Lawrence
Hi, The sort is destructive of the input. https://software-lab.de/doc/refS.html#sort There are other functions that behave like this that you need to be aware of when writing code. You have to assign the result of the sort to another variable. Back to itself is fine. : (setq L '((3) (2) (1))) ->

Re: reading a shell command's output

2018-10-24 Thread Lindsay Lawrence
Perhaps something like... (in '(fzf "-f" "lib") (until (eof) (println (line T /Lindsay On Wed, Oct 24, 2018 at 11:07 AM Curtis wrote: > Thanks for the quick reply. I'll see if I can get 'fzf' to dump it's output > to a temp file. Thank you. > > On Wed, Oct 24, 2018 at 12:46 PM Alexander

Re: Slides and notes from my Picolisp presentation

2018-09-26 Thread Lindsay Lawrence
Thanks for sharing the presentation. Nice insights and a reminder of the 'full-stack' functionality available in picolisp. I've mostly utilized it on the 'server-side'. I would be very interested to hear more detail around how you built out the gui. /Lindsay On Wed, Sep 26, 2018 at 1:27 AM