Re: FOSDEM 2017 audio/video volunteers needed

2017-02-03 Thread Pjotr Prins
On Fri, Feb 03, 2017 at 02:49:54PM +0100, Catonano wrote: >Because of a hitch, Amirouche won't be there Oh bummer. Anyone want to fill his talk slot? Or, Amirouche, do you want someone else to present your slides? Pj.

Re: FOSDEM 2017 audio/video volunteers needed

2017-02-03 Thread Thomas Danckaert
From: Catonano Subject: Re: FOSDEM 2017 audio/video volunteers needed Date: Fri, 3 Feb 2017 14:49:54 +0100 > 2017-01-11 4:49 GMT+01:00 Pjotr Prins : > >> On Tue, Jan 10, 2017 at 04:02:32AM +, Pjotr Prins wrote: >> > Hi all, >> > >> > FOSDEM provides live streaming of talks and archiving. We

Re: FOSDEM 2017 audio/video volunteers needed

2017-02-03 Thread Catonano
2017-01-11 4:49 GMT+01:00 Pjotr Prins : > On Tue, Jan 10, 2017 at 04:02:32AM +, Pjotr Prins wrote: > > Hi all, > > > > FOSDEM provides live streaming of talks and archiving. We need > > volunteers to man the FOSS setup that handles the camera and mike. > > Ideally two people who expect to be i

Enable truncation of exception output

2017-02-03 Thread Daniel Llorens
(I've messed up with git send-email, the patch with this email is at http://lists.gnu.org/archive/html/guile-devel/2017-02/msg8.html). Some objects have large printed representations and trying to print them can kill the terminal. This is a serious problem when handling e.g. big arrays. For

[PATCH 2/2] Let (format) used in exceptions be overriden

2017-02-03 Thread daniel . llorens
From: Daniel Llorens * module/ice-9/boot-9.scm (exception-format): new variable. Globally replace uses of (format) by (exception-format). --- module/ice-9/boot-9.scm | 54 ++--- 1 file changed, 29 insertions(+), 25 deletions(-) diff --git a/module/i

[no subject]

2017-02-03 Thread daniel . llorens
This patch to master fixes (truncated-print) to support general arrays. It tries to at least print the #(rank)(type) tag and the rest of the output is handled as a nested list. Regards Daniel

[PATCH 1/2] Support arrays in truncated-print

2017-02-03 Thread daniel . llorens
From: Daniel Llorens * module/ice-9/pretty-print.scm (print): Handle general arrays. * test-suite/tests/print.test: Test truncated-print with general arrays. --- module/ice-9/pretty-print.scm | 21 +++-- test-suite/tests/print.test | 17 - 2 files changed, 35 in