Re: FOSDEM 2017 audio/video volunteers needed

2017-01-09 Thread Pjotr Prins
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 in the room all day :). It is mostly automated and does not require special skills. You can mail Manolis or me privately.

Re: [PATCH] Add unboxed floating point comparison instructions.

2017-01-09 Thread Thompson, David
Hi Andy, On Mon, Jan 9, 2017 at 4:23 PM, Andy Wingo wrote: > On Mon 09 Jan 2017 02:09, "Thompson, David" writes: > >> + /* br-if-f64= a:12 b:12 invert:1 _:7 offset:24 > > Missing - before the =. > >> + /* br-if-f64< a:12 b:12 invert:1 _:7 offset:24 > > Here too. Oops! Good eye. Fixed. > Ple

Re: [PATCH] Add unboxed floating point comparison instructions.

2017-01-09 Thread Andy Wingo
On Mon 09 Jan 2017 02:09, "Thompson, David" writes: > + /* br-if-f64= a:12 b:12 invert:1 _:7 offset:24 Missing - before the =. > + /* br-if-f64< a:12 b:12 invert:1 _:7 offset:24 Here too. Please fix these nits and then LGTM; please push directly. Thanks! Andy

Re: [PATCH] ECMAscript: Bind type names to constructor functions in the global env.

2017-01-09 Thread Andy Wingo
On Sat 19 Nov 2016 16:44, Julian Graham writes: > Andy, I'd particularly like your feedback on this approach, as it > relies in part on the use of `*program-wrappers*' (in `(language > ecmascript function)') and I'm not 100% sure I understand the intent > behind that table. I am happy to include

Re: FOSDEM social dinner

2017-01-09 Thread Leo Famulari
On Fri, Jan 06, 2017 at 10:46:39AM +0100, Alex Sassmannshausen wrote: > Hello, > > Guile has a dev room at FOSDEM this year — for a whole day! The dev > room will be on Sunday. > > Whilst organising it, we had the idea that it would be fun to have a > Guile/Guix user & dev dinner on the Saturday

Re: FOSDEM social dinner

2017-01-09 Thread Amirouche Boubekki
On 2017-01-09 14:37, Catonano wrote: 2017-01-06 10:46 GMT+01:00 Alex Sassmannshausen : Hello, Guile has a dev room at FOSDEM this year — for a whole day! The dev room will be on Sunday. Whilst organising it, we had the idea that it would be fun to have a Guile/Guix user & dev dinner on the Sa

Re: FOSDEM social dinner

2017-01-09 Thread Catonano
2017-01-06 10:46 GMT+01:00 Alex Sassmannshausen < alex.sassmannshau...@gmail.com>: > Hello, > > Guile has a dev room at FOSDEM this year — for a whole day! The dev > room will be on Sunday. > > Whilst organising it, we had the idea that it would be fun to have a > Guile/Guix user & dev dinner on

Re: Hook vs. list of procedures

2017-01-09 Thread Mikael Djurfeldt
Can I just add this: First, as Andy already hinted, it's not how a data type is implemented but the operations in its API which defines it. A list does not map directly to a hook. A hook can be implemented as a list, but that is not important. An example of a hook is before-print-hook which is us