Olivier Guimbal
Olivier Guimbal
Hi ! I have pinned RunJS to my Windows taskbar, and I noticed that the pin disapears on each RunJS update. I'm not sure if something can be done about...
Hi ! To debug things, I'm (very) often copy/pasting headers from Chrome to Altair. This looks like this:  It is (just a tiny bit) painful ... when doing this,...
Hi ! Consider the following dummy case: ```typescript const value = fs.readFileSync('some-file', 'utf8') as AorB; const value = match(value) .with('a', () => 'something') .with('b', () => 'other thing') .exhaustive(); ```...
Investigate [Prisma](https://www.prisma.io/) support
### Discussed in https://github.com/oguimbal/pg-mem/discussions/197 Originally posted by **jasonfilippou** March 17, 2022 Hi, I have the following (abstract) query that I am trying to pass to `pg-mem`: ``` ( select DISTINCT...
 When: ``` create table test(id text); insert into test values ('a'), ('b'); ``` ✅ Supposed to work ```pgsql select * from test where id=(select id from test limit 1);...
Tracker issue for https://github.com/graphile/postgraphile out of the box support
Supporting `CREATE TRIGGER` is somehow related to the possibility of supporting `CREATE FUNCTION` statements, which is tracked by https://github.com/oguimbal/pg-mem/issues/42 That said, supporting triggers for functions declared as [custom functions](https://github.com/oguimbal/pg-mem#custom-functions) should...
Hi, FYI, I published [a Deno version of moo](https://deno.land/x/[email protected]) Let me know if you have any problem with that, or comment. (and thanks for this awesome lib !)
Hi ! I've been toying a bit with web3 & Elm. It seems to me that the abi encoder is significantly broken when it comes to complex structs, or encoding...