Re: guile-redis 0.1.0 released

2013-07-15 Thread Nala Ginrut
Well~it's useful for me, thank you very much! On Sun, 2013-07-14 at 23:56 -0700, Aleix Conchillo Flaqué wrote: > Hi, > > I am pleased to announce the first release of guile-redis. redis is a > key-value store server (http://redis.io). > > https://github.com/aconchillo/guile-redis > > The plan i

Re: guile-redis 0.1.0 released

2013-07-15 Thread Ian Price
Aleix Conchillo Flaqué writes: > Hi, > > I am pleased to announce the first release of guile-redis. redis is a > key-value store server (http://redis.io). > > https://github.com/aconchillo/guile-redis Cool, I had an r6rs portable redis library about 2 years ago, but it ended up never getting rel

Re: guile-redis 0.1.0 released

2013-07-15 Thread Nala Ginrut
在 2013-7-15 PM8:40,"Ian Price" 写道: > > Aleix Conchillo Flaqué writes: > > > Hi, > > > > I am pleased to announce the first release of guile-redis. redis is a > > key-value store server (http://redis.io). > > > > https://github.com/aconchillo/guile-redis > > Cool, I had an r6rs portable redis libra

Re: Libguile build error (rpl_...) on Debian Squeeze

2013-07-15 Thread Roland Orre
On Fri, Jul 12, 2013 at 2:05 PM, Ludovic Courtès wrote: > Roland Orre skribis: > > > I'm trying to build guile-2.0.9 on a Debian squeeze system, but get the > error > > ./.libs/libguile-2.0.so: undefined reference to `rpl_regfree' > > ./.libs/libguile-2.0.so: undefined reference to `rpl_regcomp'

xmlish

2013-07-15 Thread Stefan Israelsson Tampe
Hi all, At work we needed to handle xml schema documents with java and C#. There are pretty good support there, but as a schemer I was wondering if we could support this as well. My take on this is to design two layers of logic ontop of guile sxml * xmlish * xml-schemish xmlish will mainly allow

Re: xmlish

2013-07-15 Thread Chaos Eternal
http://en.wikipedia.org/wiki/SXML On Mon, Jul 15, 2013 at 11:12 PM, Stefan Israelsson Tampe wrote: > Hi all, > > At work we needed to handle xml schema documents with java and > C#. There are pretty good support there, but as a schemer I was > wondering if we could support this as well. > > My ta

Re: xmlish

2013-07-15 Thread Stefan Israelsson Tampe
Yeah the grunt work is in the plain ol sxml codebase. I just modded slightly the compiler (it's extensible) see simple.scm to be able to get a more sane output of namespace information so xmlish is just a slightly modified version of sxml to be able to handle some namespace issues. The rest is just

Re: guile-redis 0.1.0 released

2013-07-15 Thread Aleix Conchillo Flaqué
On Mon, Jul 15, 2013 at 5:40 AM, Ian Price wrote: > Aleix Conchillo Flaqué writes: > >> Hi, >> >> I am pleased to announce the first release of guile-redis. redis is a >> key-value store server (http://redis.io). >> >> https://github.com/aconchillo/guile-redis > > Cool, I had an r6rs portable red

Guile-SSH 0.3.1 released

2013-07-15 Thread Artyom Poptsov
Hello, I'm working on a library called Guile-SSH. The goal is to provide API for Guile programs for working with SSH protocol. Guile-SSH is a wrapper to the underlying libssh [1] library, and currently it provides only SSH client API. The sources are available under terms of GNU GPLv3 on GitHub

asynchronous socket library

2013-07-15 Thread Aleix Conchillo Flaqué
Hi, I was wondering if there is (or someone is working on) an asynchronous socket library for Guile. I was thinking in a pure scheme library (not bindings for libevent or some other). Thanks, Aleix

Re: asynchronous socket library

2013-07-15 Thread Nala Ginrut
在 2013-7-16 AM7:41,"Aleix Conchillo Flaqué" 写道: > > Hi, > > I was wondering if there is (or someone is working on) an asynchronous > socket library for Guile. I was thinking in a pure scheme library (not > bindings for libevent or some other). > That would be good! What do you plan for? IOCP? > T

Re: Guile-SSH 0.3.1 released

2013-07-15 Thread Nala Ginrut
Cool! 在 2013-7-16 AM4:06,"Artyom Poptsov" 写道: > > Hello, > > I'm working on a library called Guile-SSH. The goal is to provide API > for Guile programs for working with SSH protocol. > > Guile-SSH is a wrapper to the underlying libssh [1] library, and > currently it provides only SSH client API.

Re: asynchronous socket library

2013-07-15 Thread Aleix Conchillo Flaqué
On Mon, Jul 15, 2013 at 6:03 PM, Nala Ginrut wrote: > > 在 2013-7-16 AM7:41,"Aleix Conchillo Flaqué" 写道: > > >> >> Hi, >> >> I was wondering if there is (or someone is working on) an asynchronous >> socket library for Guile. I was thinking in a pure scheme library (not >> bindings for libevent or s

Re: asynchronous socket library

2013-07-15 Thread Javier Sancho
Aleix Conchillo Flaqué wrote: > I was wondering if there is (or someone is working on) an asynchronous > socket library for Guile. I was thinking in a pure scheme library (not > bindings for libevent or some other). If you don't use libevent, at least you'll need poll, epoll or something similar.