Sergey Ponomarev

Results 270 comments of Sergey Ponomarev

We can just clear an existing body with: console.log("Clear existing body if any") document.body.innerHTML = ""

The PR is important and you can just merge it even if it's not ideal. Later others may send PRs with more features like revoking and big fixing.

I tried to compile with the mbedtls bug got the error: ``` Making all in gssl make[6]: Entering directory '/mnt/work/wrt/openwrt/build_dir/target-x86_64_musl/emailrelay-2.4.1/src/gssl' x86_64-openwrt-linux-musl-g++ -DHAVE_CONFIG_H -I. -I../../src -I../../src/glib -I/mnt/work/wrt/openwrt/staging_dir/toolchain-x86_64_gcc-11.3.0_musl/usr/include -I/mnt/work/wrt/openwrt/staging_dir/toolchain-x86_64_gcc-11.3.0_musl/include/fortify -I/mnt/work/wrt/openwrt/staging_dir/toolchain-x86_64_gcc-11.3.0_musl/include -Os -pipe...

But why do you need this? The JSON document may be mapped to a class in Java so there comes limitations of Java identifiers (alphanumeric UTF16, _ $, not starting...

Here we can split into two things: 1. Fold `Optional` to null safe operators. For example on my working project it's very popular to use Optional as Elvis operator: ```java...

Confirmed in 0.9.9.8.2 of #IU-182.4505.22 A snippet to reproduce: ```java List list = asList("1", "2", "3"); System.out.println(list.get(0)); System.out.println(list.get(1)); System.out.println(list.get(2)); ```

Nice idea. Lets think more. I have this thought that might be useful to get right decision: * With `B` personally I have first association like "Boolean" of "Binary" and...

Probably this is already fixed. The problem is here https://github.com/arut/nginx-dav-ext-module/blob/master/ngx_http_dav_ext_module.c#L1745 ngx_escape_html(dst, entry->name.data, entry->name.len); And the function's source looks clear http://agentzh.org/misc/code/nginx/core/ngx_string.c.html#L1709 Maybe nginx maintainers should update the plugin in distros. FYI:...

It also would be nice to split feed API. For example I need only it in my project

please take alook on my PR https://github.com/irufus/gdax-java/pull/60 which also have some dependencies cleanup