Serge Zaitsev
Serge Zaitsev
Anvil is a React-like library with the use case similar to ButterKnife (e.g. injecting views, binding data to view properties and injecting event listeners). First well for MVVM or Redux-like...
Related to #46522 this PR removes datasource methods form the `sqlstore.Store` interface and from the mock. These methods are implemented as wrappers in the datasource service instead.
Thanks for the parser, surprisingly easy to use! I found I wanted some extra stuff, like unescaping strings and converting jsmntype_t into text. I wrote some stuff (it's in a...
Large strings produce weird results when the range of int is exceeded due to undefined behaviour regarding integer overflow. Could you either change the type to unsigned int or make...
When using JSMN_STRICT, some cases of invalid JSON are **not** caught. The following JSON's are parsed as **valid**. `{"a"}` `{"a":1,"b"}` `{"a","b":1}` `{"a":1,}` `{"a":"b":"c"}` `{,}` (any number of ",") There may...
When using this library for parsing JSON on STM32F4 microcontroller with JSMN_PARENT_LINKS I get unexpected structure of jsmntok_t array. It is not corresponding to my input JSON string: {"cmd":"mo_init_q","qb": [1.1,...
I found out that parsing the string "[a,,b]" produces an array with 2 elements, while a browser interprets it as a 3-element array, where the second is undefined. I don't...
Wouldn't it make sense to return an error if multiple root elements are found and JSMN_STRICT is defined? e.g. "{}{}" is not valid JSON and jsmn could/should return an error....
Currently, if a developer wants a custom application icon he can put `.icns` file into the app bundle on MacOS, or use custom resource file on Windows. This still uses...
Often, if a web page is heavy it takes some time to load and render it (even if it's served locally). In this case a plain window background is shown,...