Will Coster

Results 24 comments of Will Coster

I still experience the issue even while using the xrender backend. I have xserver-xorg-video-intel version 2:2.99.910-0ubuntu1.6 installed, and I just cloned the latest version of compton, git-v0.1_beta2-68-gb1889c1-2015-04-20.

Interesting, I was not aware that unclosed tags were implicitly allowed like this... First up, I think we can solve your current parsing problem with the new [SerialScraper](https://hackage.haskell.org/package/scalpel-0.6.0/docs/Text-HTML-Scalpel.html#g:8) API: ```haskell...

I just read through the HTML 5 spec's section on [optional tags](https://www.w3.org/TR/html5/syntax.html#optional-tags) and I find it's behavior surprising despite it being the official definition of how HTML is suppose to...

I think it is related to this issue in that both are special cases dictated by the HTML spec and I personally would find it hard to explain why a...

This has come up a few times. Historically, I've pushed back on exposing this type directly since I consider it an implementation detail, and I've already changed the type signature...

I think that sounds doable. One area that I think still needs some consideration are the edge cases around how different types of malformed HTML are handled. We'd also need...

There are currently two options. If you've already architected your server as a composition of Wai Application's then you can use [instrumentApp](https://hackage.haskell.org/package/wai-middleware-prometheus-0.3.0/docs/Network-Wai-Middleware-Prometheus.html#v:instrumentApp) to instrument each component application with specific label....

Assuming #26 is fixed it seems like `instrumentIO` does what you are looking for? It does not make assumptions about how you structure your endpoints.

While not perfect, I _think_ you could do this today with the existing `Label` type class. ```haskell data MyStatus = Good | Bad | Indifferent instance Label MyStatus where labelPairs...

Did you get a chance to check if `Histogram` solved the GC issues? Given that we've moved the automatically generated metrics to histograms and the other recently reported problems with...