Hiroaki KAWAI

Results 12 comments of Hiroaki KAWAI

One travis-ci job is failing unexpectedly with empty raw log. Can I ask help?

I added http11 h2c upgrading test by inheriting TestServerPush which is for http20 h2, and test passed.

I agree that `HTTP11Connection.getpushes` is a little bit hacky. This was added to meet the strict tests of `test_promise_before_headers` or `test_capture_all_promises`. If we don't need to satisfy these tests for...

With `pnpm install`, following worked for me. ``` smui-theme compile static/smui.css -i src/theme -i node_modules/.pnpm/node_modules ``` Because `pnpm install --help` shows ``` --hoist-pattern Hoist all dependencies matching the pattern to...

Geohash encodes an area, not point. Some tiles do have latitude 90 at nouth edge. As encode() takes south-west coordinates, latitude 90 will be invalid. ``` >>> geohash.encode(-90,0) 'h00000000000' ```

One big problem of accepting latitude=90 is that breaks encode/decode pair. python-geohash library will do the best for precision, but loss will be introduced when converting the coordinates into angled...

This library is registered as `python-geohash` in PYPI, which is diffrent library from `geohash` and have some extended methods.

I run into the same problem, and looked into the code. `QueryResult::toArray` moves the `QueryResult` iterator cursor to the last position, and we should call `QueryResult::reset` at the to of...

With `noajax=true` option, I confirmed the patch fixes the issue, that CHAIN property drops values. Datatables plugin scans the QueryResult twice, while many plugins scan once. In the first scan,...