Ilia Sidorenko

Results 52 issues of Ilia Sidorenko

They have done very useful changes in their https://github.com/infogulch/pyspades repo, some issues addressing bugs from original pyspades repo and just overall general improvements. I think it would be wise to...

Current json-iterate output: ``` echo '[1,2,3,4]'| ./json-iterate -j echo {} {"returncode": 0, "stderr": "", "stdout": "1\n"} {"returncode": 0, "stderr": "", "stdout": "2\n"} {"returncode": 0, "stderr": "", "stdout": "3\n"} {"returncode": 0,...

Maybe make integration tests directly with shell testing frameworks, instead of python? `bin_tests.py` currently implemented with python, and it's not very handy to edit and maintain. Some shell testing framework...

Not always stdin give you all data instantly. So instead of waiting EOF, would be better to process json instantly. Some implementations of json readers with stream support: https://github.com/dominictarr/JSONStream https://pykler.github.io/yajl-py/...

Doesn't properly work with catches, but at least converts the main part of it. For the following callback style: ```javascript getDetails(function(hm5) { getLongLat(function (hm6) { getNearbyBars(function (hm4) { return console.log({foo:...

Any possibility to implement the callback style where error is called as a second callback? ``` something(data => { }, err => { }) ```

Having this feature would make the package the perfect ip range package. I.e. similar to `netmask`'s block.toString(): ``` var block = new Netmask('10.0.0.15/31'); block.toString(); ``` -> 10.0.0.14/31 (`netmask`'s one doesn't...

@turf/along throws this https://github.com/Turfjs/turf/blob/master/packages/turf-invariant/index.ts#L18 error. My usage: ```javascript const currentPoint = along(animData.line, stepValue, { units: 'kilometers' }) ``` Error/stacktrace: ![Screenshot_20191210_150001_app turnout](https://user-images.githubusercontent.com/2031472/70488542-de144400-1b5d-11ea-918b-4b0e11d008e5.jpg) ![Screenshot_20191210_150004_app turnout](https://user-images.githubusercontent.com/2031472/70488540-da80bd00-1b5d-11ea-92a3-d8fc4cf4c9aa.jpg) My debugging. Note that `coords[i - 1]`...

easy-fix
@turf/along

`node-html-parser` currently uses the following regex pattern to parse tag name: https://github.com/taoqf/node-html-parser/blob/v6.1.14/src/nodes/html.ts#L924-L925 This is incorrect, since tag name can not only be for a custom element, but for any element....

bug

``` [!] The `RNReactNativeZlib` pod failed to validate due to 1 error: - ERROR | attributes: Missing required attribute `homepage`. - WARN | source: The version should be included in...