Patricio Whittingslow

Results 350 comments of Patricio Whittingslow

@kortschak @vladimir-ch What else is needed for the merge of this PR?

Yes! And also would not hurt to include a benchmark against the intrinsic Go native map.

So I primarily created my own library because I wanted to load images lazily onto disk. I work with hyperspectral images which are in the gigabytes of size and it'd...

The output of my images is TIFF I believe. I'm not really sure. If I set the file extension to `.tiff` my file browser opens them correctly and all. The...

@mholt It does sound like my library might fulfill your requirements for exif parsing. That said, I'm not sure if it covers all of your needs. It'd be great to...

To clarify- I think we could better make the decision on how to merge the libraries with more UX. As it stands I'm unsure on how to go about it...

Hey! Thanks for getting back and for providing a comprehensive list of suggestions for the API. Looking good overall. I wonder if we need so many methods on the Tag...

The String() method is currently used to implement the fmt.Stringer interface so users can easily pretty print it. You can still convert the `[]byte` to `string` after a call to...

> Is that different than just getting the value as a string? thinking I feel like that's all I'd want a Stringer to do anyway... The issue here is that...

> is its output kind of like what fmt.Sprintf("%+v") does? Yes, more or less. > I'd probably prefer to use String() to get the data Another issue I found is...