Re: It would be nice if glob "/*/*" worked

2019-11-27 Thread Kristian Lein-Mathisen
I may be missing the point here, but is'nt it just easier to use find-files? http://wiki.call-cc.org/man/5/Module%20(chicken%20file)#find-files K. On Wed, Nov 27, 2019, 23:32 Evan Hanson wrote: > Hi Matt, > > This would be nice indeed, I've also found myself wanting this feature > before. I do

Re: It would be nice if glob "/*/*" worked

2019-11-27 Thread Evan Hanson
Hi Matt, This would be nice indeed, I've also found myself wanting this feature before. I don't know of an existing solution, but I think it would be best if we made it "just work" with the existing glob procedure. I've created a ticket for that: https://bugs.call-cc.org/ticket/1657 Cheers, Eva

Reading bytes from a TCP port

2019-11-27 Thread Fredrik Appelberg
Hello all, new chicken schemer here. I'm writing an AMPQ client for fun (as One does) and can't figure out the correct way to read from a TCP port. I want to block until input is available, and then read all buffered data into a byte buffer (I'm using bitstring, but it can be anything really). T