Nguyễn Đức Long

Results 101 comments of Nguyễn Đức Long

Now that I take a look at the code again, I find it weird, because `new Texture2D()` constructor is supposed to be called on the same thread as `CreateFromImageAsync` function....

@NullOne01 As long as the compiled library has all the correct [API entries used by this package](https://github.com/Looooong/UnityAsyncImageLoader/blob/main/Runtime/AsyncImageLoader/FreeImage.cs), it's possible. And if you make it work with WebGL or iOS, feel...

This is fixed, further improved and unit tested.

The document path is expected to be in quotes. This is documented in [validate command](https://the-guild.dev/graphql/inspector/docs/commands/validate), but I think this also applies to other command, because I also have trouble to...

For me, `Promise` doesn't even resolve on JS side: ```ts new Promise(function (resolve) { log('Promise!') resolve(null) }).then(function () { log('Resolved!') }) ``` Expected output: ``` Promise! Resolved! ``` Actual output:...

@cainlevy I just try a piece of example code in my project code ``` mail.smtpapi.category = 'Category' ``` It seems like the `Field#empty?` expect each of `value.values` to be Hash,...

Rails 4.2.6, ActionMailer 4.2.6, Mail 2.6.4 And `source_location` shows as you said.

```ruby class TestMailer < ActionMailer::Base def test mail.smtpapi.category = 'My category' mail(to: '[email protected]', subject: 'Test') end end ``` > [3] pry(main)> TestMailer.test.deliver_now > Rendered test_mailer/test.html.slim (43.4ms) > Rendered test_mailer/test.html.slim (1.9ms)...

> [16] pry(main)> Mail.class_variable_get("@@delivery_notification_observers") > => []

Not having `spi_flash` is understandable. What about web socket client? Also, I cannot include modules that are in my project's `components` folder.