Toshimitsu Takahashi

Results 73 comments of Toshimitsu Takahashi

I placed the link for an example with Extension ID in the above description.

https://github.com/tilfinltd/aesr-config-sender

Please right-click the extension icon to open the context menu, and then click on **Inspect popup** at the bottom. Then dev tool will be displayed and any errors will appear...

The configuration for the text to be displayed and the data to be loaded internally are separate, so the internal data may actually be corrupted. So can you try the...

All I can say is that you should carefully review your configuration. Especially if you are setting up 'Complex Configuration', make sure the aws_account_id of a base account is correct.

I use Oj instead of standard JSON for two reasons. First, it's faster. Second, it doesn't fail even when garbled string is mixed in values of structured data. I actually...

I understood it. I think that your purpose can be achieved by the following code. ```ruby require 'rubygems' require 'ougai' require 'json' class StandardJSONSerializer < Ougai::Serializer def serialize(data) JSON.generate(data) end...

I decided that Ougai should not use multi_json from now based on the following links. - https://github.com/intridea/multi_json/issues/200#issuecomment-689087204 - https://github.com/intridea/multi_json/pull/113 I want to keep Oj and JrJackson as default, but allow...

Ougai have already been used by a considerable number of applications, so I'm carefully considering how to make the users install OJ(JrJackson) separately.