Igor Khodyrev

Results 25 comments of Igor Khodyrev

While I like the idea (we're considering using monads in our project and need the same feature), the name of the method is quite confusing to me. Having `failure!` as...

@solnic Initially I was thinking about `Any`, but there exists `Each` operation which operates on array of items and `Set` operation, which operates on array of rules. `Any` as name...

@solnic Just after some thinking, we can imagine 2 different groups of operations: 1) Applying a rule to multiple items, `Each` already exists, I'd expect also `Any`. and some operation...

The same happens with Google Play users. I believe it must be a bug in the called api: https://developers.google.com/identity/toolkit/web/reference/relyingparty/downloadAccount The workaround I'm considering is calling listUsers from admin-sdk, because it...

I investigated the code and discovered that apple.com, gc.apple.com and playgames.google.com are missed there: https://github.com/firebase/firebase-tools/blob/66447909ab6f2defd04b257b48193c70d778c7ea/src/accountExporter.js#L30 Unfortunately, I don't know their ids and I'm not familiar with the other details of...

In addition to that, importer should be extended with these providers too: https://github.com/firebase/firebase-tools/blob/66447909ab6f2defd04b257b48193c70d778c7ea/src/accountImporter.js#L31 I changed this locally and export and import successfully worked for me (still need to check whether...

We also faced this issue. The workaround that we use: `docker compose run --rm container_name true` - to start all dependencies then you can e.g., load database schema And then...

+1 for having it supported or at least having some guidance how to integrate it (at least partially) Also, I discovered that DataDog support react native: https://github.com/DataDog/dd-sdk-reactnative Could it be...

Hello, I also ran into this issue when I was trying to setup devspace for our apps. It seems that the issue happens when container is not run under root....

There is also a problem when using pagination_total: false with https://github.com/activeadmin/activeadmin/blob/3f2c8d2b7636c2e6d009093d1d9ec70e4ed722b0/lib/active_admin/views/components/paginated_collection.rb#L106 this part when custom select and order is used. We monkey-patched it with `collection.model.from` to perform count on subquery....