Bogdan Gusiev

Results 84 comments of Bogdan Gusiev

See, when I saw this library I was surprised on how contract functions are called: ``` ruby client.call(contract, "ownerOf", token_id) ``` This is weird. As I would expect a function...

> Is there a specification on custom errors in ABI? I didn't find official link. Here is what I've got for https://eips.ethereum.org/EIPS/eip-6093#erc-721: ``` json [ { "inputs": [ { "internalType":...

My investigation showed that the problem is the `AVCaptureSession` being stopped when the app is suspended. By some reason top and bottom controls are only shown when the sessions is...

> I think the reason they do that is so that if it's called in a try-catch block that the code won't jump to your catch block immediately instead of...

> Ok I 'll give you an example from a piece of software I created. I have hard time believing this is the case, why would the code continue if...

> Would it be enough to add the most common properties used on an `Error`, such as `name`, `message`, and `stack`? This would definitely be a step forward if more...

You introduced this big feature that changes everything when I was updating from 1.7.3 to 1.7.15 - suppose to be patches only. Did I miss something?

I can confirm that this resolves https://github.com/rails/rails/issues/51217. Thank you! > Does copying the association cache affect other behaviors? Hard to say. On one end: it should be behave like clone....

I believe it should be generalised further as the bug is related to loaded associations being lost when calling `becomes` not really involving `strict_loading`. ``` ruby # frozen_string_literal: true require...