ilyazub

Results 73 comments of ilyazub

@MusiCode1, you can extract data from it by accessing the nested arrays. According to [elm-lang creator](https://gist.github.com/evancz/1c5f2cf34939336ecb79b97bb89d9da6#protobuf), Google never removes existing fields, but I haven't found an official statement about it....

@shubham-MLwiz `xpath("normalize-space()").getall()` returns `None` from the empty data cells unlike `text()`. ```python >>> s.css(".manual_table tbody tr td").xpath("normalize-space()").getall() ['8,626', '8,427', '11,525', '16,408', '19,582', '', '', '22,574', '21,755'] ``` Full code ```python...

@ashmaroli How to evaluate memory profiling results? I mean, you wouldn't go checking CI logs on every commit and manually compare memory usage between commits.

For the CI integration 1. The simplest thing is to check memory usage limits: fail if script allocated more than allowed and pass otherwise. 2. The more advanced thing may...

@Hywan I'm working on a PR with migration. I've copied source files of `rutie-derive` and `rutie-derive-macros` to the newly created `rutie/src/dsl` folder and moved [`rutie/src/dsl.rs`](https://github.com/danielpclark/rutie/blob/cba311cbb5873ef42ad627081f2dec04feab9a51/src/dsl.rs) to `rutie/src/dsl/mod.rs`. I want to...

> I just went on with reading encrypted datastream from openssl in chunks and uploading them as multipart data. @Seitanas Can you share a code sample of reading encrypted datastream...

`rbspy` was a starting point to find performance issues in Nokogiri which led to a 2-4x speed up between v1.10.0 and [v1.11.0](https://github.com/sparklemotion/nokogiri/releases/tag/v1.11.0). I've described the whole story in [a blog...

@ixti, what's your current vision about the Brotli support comparing to [three years ago](https://github.com/httprb/http/issues/498#issuecomment-412679649)? Currently [the `brotli` gem doesn't support streaming inflater](https://github.com/miyucy/brotli/issues/41) but that's feasible.

> How to use this in a multithreaded context where each thread uses the same tower service and needs to be constrained by the same rate limit? @eute Probably by...

@swrobel, thanks for the bug report! Seems like it's more related to the reporting part. I'll probably redo the IPC part of turbo_tests as it also complicates filtering groups for...