Tim Voronov

Results 100 comments of Tim Voronov

> Hi, they were pulled from the JSON in [ChromeDevTools/devtools-protocol](https://github.com/ChromeDevTools/devtools-protocol) on Jul 10, so that should be `r674637`. > > But on that note, unless you're using bleeding edge methods,...

I can't say that there is a pattern. Same operations may fail just randomly. I guess because of if puppeteer uses specific version of Chrome.

@goatslacker why are people switching over to Redux? Because of trend? I have very bad experience with Redux and still don't understand why people love it so much.

That's what I ended up doing, but it's rather hacky and breaks an abstraction. The easiest way of supporting this is to add a method something like ``ow.compose(name: string, ...validation:...

Great! So, we have a main [Page](https://github.com/MontFerret/ferret/blob/master/pkg/drivers/value.go#L188) interface as an abstraction and 2 implementations aka drivers: - [Chrome Devtools Protocol based aka CDP](https://github.com/MontFerret/ferret/blob/master/pkg/drivers/cdp/page.go) - [In-memory based aka HTTP](https://github.com/MontFerret/ferret/blob/master/pkg/drivers/http/page.go) ``CDP`` driver...

It seems Edge supports CDP, so, theoretically, Ferret should work with it without any changes. Needs some tests.

@r3code I do not now. It really depends on when ANTLR team solves their issue. I might look into this in the future, but it's not a top priority right...

@esell sure, let me organize the task better in order to make it easier to track the progress. Though, it's not directly related to the scraping thing :) To test...

@esell hey,``runtime`` package is a package that contains a runtime for the language itself. The language is pretty agnostic and entire browser thing lives in standard library (``pkg/stdlib/html``). As I...

@esell you can do it with small chunks. it will be easier to track the progress and make changes. Like, you started covering ``runtime/core``, that could be one PR. Then...