Andrey G.

Results 28 issues of Andrey G.

```json { "compilerOptions": { "jsx": "react", "outDir": "../../dist/web", "paths": { "web/*": ["../web/*"], "shared/*": ["../shared/*"] } }, "extends": "../../tsconfig.base" } ``` with ATL I see errors about files that must be...

For, example....in Realm, you can't update any property if DB is not in write transaction. But in common cases, you enter info, tap 'save' - save info (commitTransaction) and close...

has: public function onAfterRequest($event) { $this->raiseEvent('onBeforeRequest',$event); } must: public function onAfterRequest($event) { $this->raiseEvent('onAfterRequest',$event); }

Right now library is not swift compatible. Need research how to implement dynamic/meta programming in swift. Right now swift can't see methods from protocol that were added at runtime(E.g. 'validate')...

at immutable-ops: ramda at redux-orm: lodash I know that ramda is fp, but lodash-fp is also fp and built on lodash. Why not replace ramda with lodash-fp?! p.s.: I know...

good first issue
type: Discussion

Right now at some parts of application i still using 'id' to get right object(e.g. resolving tree), so i have to do this: ``` orm.DashboardView.withRefs.filter(view => view.dashboard_id == builder.dashboard_id).map(view =>...

type: Enhancement
good first issue
layer: QuerySet

Let's discuss what we need to release a v1 - [x] **Keep foreign key identifiers in a separate field** instead of overwriting them with relationship descriptors [see #102, #219] -...

type: Discussion

It would be cool if it will be possible to get swager/raml output based on google.api options. https://github.com/googleapis/googleapis/blob/master/google/api/http.proto E.g.: https://github.com/gengo/grpc-gateway/ P.S.: maybe introduce something like **plugin** that will understand options...

I need to test my async actions for redux. With axios I could use moxios. What about this lib?