zenity bindings

2016-03-28 Thread rain1
Hello I've made a guile interface to the zenity program: <https://notabug.org/rain1/guile-zenity>. It is released under GPL3. This allows people to easily make simple dialog boxes from guile scheme programs. Quite useful! Currently it covers: Calendar, File Selection, List

nyaac configure script issue

2017-11-18 Thread rain1
Hello! Build on debian I had an issue with `./configure`: line 31: [: X: unexpected operator several errors like this. I had to run `bash ./configure` instead. So I think the shebang line would need to be changed from #!/bin/sh to #!/bin/bash.

Re: A macro containing a mini-macro?

2018-09-13 Thread rain1
On 2018-09-13 23:04, HiPhish wrote: Hello Schemers, I have written a small macro for writing test specifications: (define-syntax test-cases (syntax-rules () ((_ title (given (byte byte* ...)) ...) (begin (test-begin title) (

Re: guile-json 2.0.0 released

2018-12-18 Thread rain1
On 2018-12-18 16:45, Ludovic Courtès wrote: Hello! Thanks for the new release! Aleix Conchillo Flaqué skribis: I was also thinking to look at "reader macros" I’d recommend against that: reader macros are global, so they could clash with unrelated bits of code, they are non-standard, and th

Re: guile-json 2.0.0 released

2018-12-19 Thread rain1
On 2018-12-19 18:14, Aleix Conchillo Flaqué wrote: On Wed, Dec 19, 2018 at 2:48 AM Ludovic Courtès wrote: Hi Aleix, Aleix Conchillo Flaqué skribis: > Any comments on the discussion between alist/vector vs > hash-tables/list? How hard would it be for Guix to change to the > alist/vector appr