Results 591 comments of Stephen Haberman

Maybe we could have: * `hasReactiveFindOrCreateReference` * You pass a reactive hint (so it can be recalc-ed) * You pass a lambda that accepts the data, and returns an `[Entity,...

Could we support this example: ```ts /** Used to find the TLI's linked room RPL if it exists */ readonly roomRpl: ReactiveReference = hasReactiveReference( readyPlanLocationMeta, "roomRpl", { location: "room", readyPlan:...

Hi @mdomke , afaiu Buf now internally controls publishing of community projects into their repo (iirc our CI process did, at one point, push into their repo, but doesn't anymore)....

For others running in to this, @brudil found that Jest is not respecting the prototype when doing the cross-worker serialization, so if you've implemented `toJSON` as a class method, it...

Oh, realized you may not be able to see the original markdown source of my comment, it was: ``` * one * two `` ` if (a) { b; c;...

Disclaimer I haven't run the tests, b/c am waiting for the workflow to be approved (i.e. I haven't looked into getting the tests to run locally--would be great to have...

[promise-counter.js](https://github.com/user-attachments/files/23483805/promise-counter.js) [promise-benchmark.js](https://github.com/user-attachments/files/23483806/promise-benchmark.js)

``` #!/usr/bin/env node /** * Script to count the number of Promise objects created in two different approaches: * 1. Creating and awaiting 1000 individual promises * 2. Creating 1...

``` #!/usr/bin/env node /** * Performance benchmark comparing: * 1. Creating and awaiting 1000 individual promises * 2. Creating 1 promise and having 1000 callbacks await it */ // Approach...

Hi @shriharip ! It might just be easiest for you to execute the migrations with `node-pg-migrate` directly: https://github.com/salsita/node-pg-migrate Our `yarn joist-migrate` from the sample is a smaller wrapper that just...