Duncan Jones
Duncan Jones
Great job on getting IMAP support into Flutter, much appreciated. However, as a relative newcomer to the IMAP protocol, I'm finding it quite challenging to know how to use your...
I was hoping to construct a chain of filters by doing something like this: ```go proxy := goproxy.NewProxyHttpServer() proxy.OnRequest().Do(filter1) proxy.OnRequest().Do(filter2) ``` However, I've noticed filters get passed the original HTTP...
Great package, but I'm confused by the presence of a top level set of functions, e.g. `clock.Now()`. This makes it easier to do silly bugs like: ```go type someStruct {...
I'm trying to use this project and I'm finding myself confused on the basics. I think the documentation needs to be enhanced to ensure people are confident they are not...
I came across this project when looking for tools to help me parse C files to auto-generate cgo bindings. Specifically, my use case is for implementing C APIs in Go...
I'm trying to write plain-old unit tests for my controllers. This is because I need to setup specific mocked database conditions, etc., which I don't think I can do with...
I've noticed `MeasureString` slightly underestimates the size of a string. Here is the code that I used to test this: ```go dc := gg.NewContext(300, 100) dc.SetColor(color.White) dc.DrawRectangle(0, 0, float64(dc.Width()), float64(dc.Height()))...
This pull requests makes it easier for users to override CSS styles used in this theme. Credit to [this blog post](https://discourse.gohugo.io/t/how-to-override-css-classes-with-hugo/3033/4) for the code.
This PR introduces key-based encryption and decryption, per the V3 RNCryptor spec. I've added test cases based on the V3 example vectors. I took the opportunity to tidy some of...
I can see several unanswered issues and open pull requests. Is this library still maintained?