Suyash Kumar

Results 124 comments of Suyash Kumar

Hi there! Were you running this instance of ssl-proxy on a server for where testhome.com DNS records were pointing to? If not, you will not be able to complete the...

Thank you for raising this! As mentioned on the PR, can we use the [default safe list of ciphers](https://cs.opensource.google/go/go/+/master:src/crypto/tls/cipher_suites.go;l=46-52;drc=ea5d7cbc2644643331bd675b1ebdf0aaac7419f1) instead of specifying our own? In the future this may mean...

Got it, thank you for the additional info! You mentioned you ran into build problems--was this for another program on your end, or ssl-proxy? I've went ahead and pushed an...

if w2.abc.com has an A record that points to the same server, ssl-proxy won't be able to support proxying traffic separately between the two subdomains. This is something I can...

Hi @titansmc interesting issue...it _appears_ at first glance that perhaps the `open` syscall is not implemented on your kernel (or rather, the golang open in the `syscall.Syscall` isn't working on...

Really liking [uber-go/zap](https://github.com/uber-go/zap), will likely proceed with this.

pydicom uses a collection of [image handlers](http://pydicom.github.io/pydicom/dev/api_ref.html#pydicom.config.image_handlers) to convert encapsulated pixel data bytes to a numpy array. Many different image handlers exist in master that have support for different transfer...

I've checked into the options for parsing lossless JPEG (one of the possible transfer syntaxes) in go, and it appears that the standard library `image/jpeg` [does not support it](https://github.com/golang/go/blob/master/src/image/jpeg/reader.go#L135). Further,...

We may be able to patch into a C or C++ library as well for the purposes of lossless JPEG: https://github.com/team-charls/charls