12:41
<dminor>
Rob Palmer: Hi! A colleague from a different team at Mozilla just asked me about attending the upcoming plenary as an observer. Is there any process that needs to be followed for that, or can they just show up?
12:42
<ryzokuken>
I think just notifying on the reflector thread should suffice
13:47
<Rob Palmer>

The July plenary meeting is coming up and it scheduled to be in Bergen, Norway!

Please fill out the interest survey by Wednesday so that we can predict attendance numbers and make a call on whether it will be hybrid or remote-only.

14:22
<littledan>
Do we have an issue tracking the details of the June plenary? I was having trouble finding one.
15:01
<Rob Palmer>
We have the May plenary next.
22:39
<shu>
is there some canonical example somewhere of "promise ticks are observable"?
22:41
<bakkot>

shu:

(async () => {
  for (let i = 0; i < 100; ++i) {
    console.log(i);
    await 0;
  }
})();
// other stuff here
22:41
<bakkot>
order in which the console.logs fire relative to other effects in other stuff is observable
22:41
<bakkot>
that said engines are wildly inconsistent in a lot of cases so like
22:41
<bakkot>
don't worry too much about it
22:41
<bakkot>
users certainly shouldn't
22:48
<shu>
thanks