Zach Auclair

Results 44 comments of Zach Auclair

I love the idea of >Implements an "``" feature to ignore ordering in arrays. Some of the APIs i'm testing against don't have deterministic ordering, so i've had to hack...

Thank you for the excellent library and all the hard work! Another way which we could approach this problem is to allow interfaces to be passed. This could allow golang...

I'm having a similar issue where filtering the items and then dragging one from a filtered list picks the wrong item. Perhaps a workaround is to sort/filter the model in...

My suggestion seemed to work. I have a seperate model, `filteredItems`, that I keep update to date by doing a `$filter('filter', originalItems, searchTerm)` from a `$scope.$watch()` on both `originalItems` (deep...

Refactored to use just `database/sql`, and it still fails with the same error: ### Error ``` --- FAIL: TestNULLs (0.04s) repro_test.go:26: Failed to insert data: mssql: Implicit conversion from data...

> this is the same as issue #530 >m4ver1k opened this issue on Oct 14, 2019 >blaskovicz opened this issue on Dec 16, 2016

It looks like it's because the `Compare()` function assumes that the outer layer of the JSON is an object, not an array. [The function.](https://github.com/yudai/gojsondiff/blob/4d06d22d2e90e00a29022975b7f9dabcab70ab99/gojsondiff.go#L53) As an easy workaround for now,...

@mbenford should I bother fixing the conflicts or should I abandon this pull?

I believe since the encrypted value would typically be larger than a checksummed value, you would also want to store a checksummed value and then query on that versus the...

Is it possible to add some test cases for this (specifically for Valid, and also for the null cases) and also add it to CryptBytes as well (since you already...