[ANN] guile-xmlrpc 0.1.0 released

2013-02-06 Thread Aleix Conchillo FlaquƩ
Hi, I just released the first version of guile-xmlrpc. This comes from a module I wrote for tekuti (Andy's blog engine) to be able to support the MovableType API. It has evolved a bit since then. If you want to give it a try, in the examples/ directory there's a server and a client that should

Re: [PATCH] add web/mime support

2013-02-06 Thread Nala Ginrut
On Thu, 2013-01-17 at 15:48 +0100, Andy Wingo wrote: On Thu 17 Jan 2013 11:37, Nala Ginrut nalagin...@gmail.com writes: PS: Do you think it's proper to use the same implementation in my server project? I'm not sure whether this mime thing would exist in any GNU system for a server purpose

Re: About Guile crypto support

2013-02-06 Thread Nala Ginrut
hi Noah! On Mon, 2013-02-04 at 21:57 -0500, Noah Lavine wrote: Hello, I was just thinking about this, and I was wondering, can you hash an arbitrary Guile object? And if so, what do you hash? (I mean, algorithms like SHA-1 are defined on sequences of bits, as I understand it. So what

RTL Cache Cells

2013-02-06 Thread Noah Lavine
Hello, The RTL branch now has infrastructure for toplevel and module refs, which is very exciting. Unfortunately, I can't figure out how to use it. :-( In particular, I've been looking at module/system/vm/rtl.scm, and there are two things I don't understand about cache cells. 1. How do I

[ANN] guile-csv 0.0.1 released!

2013-02-06 Thread Nala Ginrut
hi folks! Here is a CSV reader based on Andy's csv-reader. And it's ready for guildhall. https://github.com/NalaGinrut/guile-csv --code- (use-modules (csv)) (define my-csv-reader (make-csv-reader #:\,)) (call-with-input-file file.csv my-csv-reader)