Joe Gomain Hoyes

Results 28 comments of Joe Gomain Hoyes

nix ensures runtime dependencies. executable node packages (such as rush) executables aren't plain scripts run by the node available at the shell, but a node specified by its derivative. this...

Yes, I too have a use case where I want racing reads to block.

The current work-around is to either use `$rawQuery` to place `FOR UPDATE`. Or artificially place a mutex field (typically a boolean) and select via updating the field to true (lock...

@scotttrinh Thanks for responding. I'm a bit wary of using access policies unless it is indeed a _user's_ access policy. Even for that having global mutable state is pushing me...

There is this trick to implement transforming union types to tuples of constituents: ```ts // must condition on T type Contra = T extends infer I ? (arg: I) =>...

@mmkal I'm willing to hack on how one would be implemented. Names are open for bike-shedding.

This (and other @babel features) will become a no-go for adopting js2-mode. There needs to be a mechanism in altering how the parser works.

This also happened to me and indeed it was a trailing comma in one of a `package.json` file in the "keywords" section. The error message in very misleading though. I...