Re: [Chicken-users] (seemingly) random disconnects of zmq sockets

2013-08-26 Thread Karsten Gebbert
. On Mon, Aug 19, 2013 at 10:20 PM, Karsten Gebbert karsten.gebb...@gmail.com wrote: Hi List, I'm having a strange problem with the zmq egg with the following program: http://paste.call-cc.org/paste?id=1c0c94e23600b68e8100d6c5913f58368c01f02c Basically, I have two sockets, one 'push for sending

[Chicken-users] (seemingly) random disconnects of zmq sockets

2013-08-19 Thread Karsten Gebbert
Hi List, I'm having a strange problem with the zmq egg with the following program: http://paste.call-cc.org/paste?id=1c0c94e23600b68e8100d6c5913f58368c01f02c Basically, I have two sockets, one 'push for sending to a node.js process (with the zmq module compiled against 2.1 series, too) and one

[Chicken-users] Medea Egg: nested lists/pairs

2013-03-26 Thread Karsten Gebbert
Hi, I'm using the medea egg, installed via chicken-install, and I'm encountering a problem unparsing lists that contain pairs with more list/pairs. To my understanding of the source code, write-json should just call itself on the cdr of the pair, but I get an error: #;2 #;2 (write-json

Re: [Chicken-users] Medea Egg: nested lists/pairs

2013-03-26 Thread Karsten Gebbert
On 03/26/2013 02:47 PM, Moritz Heidkamp wrote: Hi Karsten, Karsten Gebbert karsten.gebb...@gmail.com writes: #;2 (write-json '((one . 1) (two . '((three . 3) (four . 4) the problem here is the inner quote. Your expression is read as: (quote ((one . 1) (two . (quote ((three . 3) (four

[Chicken-users] Parsing EMail

2013-03-25 Thread Karsten Gebbert
Hi List, I'm relatively new to chicken and this list, so bear with me :) My aim is to parse EMails (for using with procmail, for instance) but I'm a little stuck/confused by my options. I've been playing with hato-mime.scm (hg cloned from google source project), and I also looked at

Re: [Chicken-users] Parsing EMail

2013-03-25 Thread Karsten Gebbert
On 03/25/2013 11:55 AM, Andy Bennett wrote: Hi. I'm relatively new to chicken and this list, so bear with me :) My aim is to parse EMails (for using with procmail, for instance) but I'm a little stuck/confused by my options. I've been playing with hato-mime.scm (hg cloned from google source