Mina Nagy Zaki

Results 15 comments of Mina Nagy Zaki

You can use `expose-loader` and just load `tv4` before `angular-schema-form` ``` import 'expose-loader?tv4!tv4'; import 'angular-schema-form'; ```

The `submit.html` template used for the `button` and `submit` addons is missing an `ng-click` on the button, like in [the bootstrap decorator](https://github.com/json-schema-form/angular-schema-form-bootstrap/blob/cb42c26504e4533edfb347d2cb04be7d702619f8/src/bootstrap/submit.html#L9): ``` ng-click="buttonClick($event,form)" ````

@de-luca note that using `.scope()` will not work if you [disable debug info](https://docs.angularjs.org/guide/production) (which is recommended in production builds)

Is this even in the notion backlog?

Need to see spec, what about ordering cc @Exulansis @clauxx

This change to `docker compose` is kinda "fresh" and some systems still support `docker-compose` which I think they should keep doing for a long time to come, as a lot...

I think how much RAM you save depends on how much memory overhead each tsserver instance adds. I would make a blind guess and say that most of the memory...

I took a very brief look at the tsserver protocol, there seem to be request/response sequence numbers, and tsuquyomi seems to be keeping a global sequence number and incrementing by...

I'm hitting this as well! Triggering an error on this line: https://github.com/andpor/react-native-sqlite-storage/blob/4.1.0/lib/sqlite.core.js#L507 by doing something like: ```js const listOfThings = ['foo', 'bar'] typeormConn .getRepository(SomeRepo) .createQueryBuilder('somerepo') .leftJoinAndSelect( 'somerepo.otherrepo', 'otherrepo', ) //...

You also need to handle `POSTGRES_PASSWORD` in the `database` service, probably set it to the value of `SECRETS_postgres_password`