Charles Pick
Charles Pick
@paveltiunov I just discovered cube.js, and it looks like exactly what i'm looking for, but honestly this design decision around schema definitions is a bit surprising, and it took me...
one issue with: ```js // before: let { time } = yield props => ; // after: let { time } = yield ; ``` is that flow and typescript...
@StoneCypher sounds good! Is this on your fork at https://github.com/StoneCypher/pegjs ? I've contacted the owner of the https://www.npmjs.com/package/peggy package which hasn't been updated in 9 years and they've agreed to...
This project lives on under a new name - [Peggy](https://github.com/peggyjs/peggy)
I think the best way to make this kind of thing practical is to rely on codegen unfortunately, the current approach is too fragile and quickly runs into the limits...
I usually use a similar approach to this one: https://github.com/graphile/pg-sql2 which is just a collection of helpers to let you safely (but not typesafely) compose fragments of sql together. I've...
I actually stayed away from it for similar reasons, and also because their marketing seems a bit... off, like they're going to pivot to a commercial project and seek funding...
Yeah I remember you were active in the Yii community back in the day, I also haven't used it for at least a decade but miss a lot of things...
it's impossible to do it without codegen because of that issue, yes. But even assuming that bug one day gets fixed it's going to be very expensive to do that...