Spunkie

Results 24 comments of Spunkie

Along with this feature you may want to implement a way to exclude urls pattern with regex or something. A common issue I've run into is if you are scraping...

As far as I know speed tracker currently only consumes/saves the _averages of all runs_ data that the WPT API returns. So even if you set repeat view on or...

Actually I double checked and I'm using `fvonly: 0` not `repeatView: true` based on [this page](https://sites.google.com/a/webpagetest.org/docs/advanced-features/webpagetest-restful-apis). Although 0 is the default anyways. Looking back at some old test I ran...

@eduardoboucas I was looking at the **[refactor/firstviewonly](https://github.com/speedtracker/speedtracker-api/tree/refactor/firstviewonly)** branch for this. Even if you can set `firstViewOnly` as `false` now the data will still get thrown out when saving metrics I...

@rockeynebhwani Are you testing on a local api instance? I just tested the **[refactor/firstviewonly](https://github.com/speedtracker/speedtracker-api/tree/refactor/firstviewonly)** branch on my private api and it seems to be working. ## [_profiles/test.html](https://gist.github.com/Spunkie/87e8df99c527a65dbe6cdd73820cee90) ``` parameters: connectivity:...

@eduardoboucas >That's true, actually. I wonder what's the best way to display that information. We don't want to just do an average and merge them together. Ideally we'd be able...

@gerfra Considering that guetzli is under the apache license and you are free to redistribute it. Is there a reason you are not including it directly with your GUI?

To follow up on this, we solve this in our app at build time with [frontendr/babel-plugin-transform-compress-graphql](https://github.com/frontendr/babel-plugin-transform-compress-graphql), [jaydenseric/fake-tag](https://github.com/jaydenseric/fake-tag), and prepending our graphql string literals with `gql`. Rough example code: ````javascript import...

It looks like the [archiso issue linked](https://gitlab.archlinux.org/archlinux/archiso/-/merge_requests/216) by @HTV04 was finally merged a couple of months ago. Any chance this PR can be resurrected, rebased, and merged? Much to my...

> The tricky part is to not involve Webpack @Atinux Maybe I'm missing something but why wouldn't I want webpack involved doing it's thing? Wouldn't I want webpack to rerun...