Eric Jensen

Results 11 comments of Eric Jensen

Thank you for the pull request, Kevin. I've encountered a few issues with the new feature. 1. When the wordlist is empty, the highlighter throws`TypeError: Cannot call method 'split' of...

This is caused by a change in Chrome. After a few seconds, Chrome moves notifications into a menu bar icon. From what I can tell, there is no way to...

Here's a little snippet of javascript that might help you get started: ``` javascript /* Any time a message body is clicked */ $(document).on('click', 'table.chat tr.message > td.body', function ()...

I experimented with this idea a while ago. I tired displaying the number of unread messages within the favicon. You can see the work [here](https://github.com/ejensen/Kindling/blob/e96c724e402eeecd5a78aec8a9baa0d5284868ed/src/scripts/chromefire.favicon.js) (Warning: old code that died...

The use of CoreImage filters in https://github.com/pointfreeco/swift-snapshot-testing/pull/628 improves the speed by 90-97%: going from ~1s to ~2ms per snapshot. This is accomplished using the [CILabDeltaE](https://cifilter.io/CILabDeltaE) filter, but could also be...

https://github.com/pointfreeco/swift-snapshot-testing/pull/628 should resolve this issue with a new perceptual difference calculation. The tiny differences in rendering are generally under the [2% DeltaE value which is nearly imperceivable by the human...

> I would love to see the second PR with the difference reporting for failures! 🙏🏼 The [second PR](https://github.com/pointfreeco/swift-snapshot-testing/pull/638) was merged and included in the 1.10.0 release.

> We have this same issue where one of our 6 CI machines fails 1-6 snapshots of our 500ish snapshots. We just changed everything to pass in `perceptualPrecision: 0.98` and...

> @ejensen I'm working on a few tests and the precision makes the tests super slow e.g a test takes 0.5s to complete but with `0.98` precision it takes 6s...

> It really seems like some sort of underlying Swift issue. Building with the latest Xcode may make it go away, or, if you aren't using the `Notification`s that are...