Results 24 issues of Rick Beton

AddUTF8Font appears to have the documentation copied from AddFont. I suggest the following replacement might be an improvement. ``` // AddUTF8Font imports a TrueType font with utf-8 symbols and makes...

In recent months, gothic.go has become coupled to gorilla/mux. See lines 176 onward ```go func getProviderName(req *http.Request) (string, error) { provider := req.URL.Query().Get("provider") if provider == "" { if p,...

This is based on source code inspection of logging/logging.go. Lines 59-61 get the time in the local timezone. start := al.clock() al.handler.ServeHTTP(wrapper, r) end := al.clock() Line 87 does a...

Local FastCGI is needed when a Go webserver must co-exist with an existing server, e.g. Nginx. This avoids problems with TCP port sharing and provides a fast-performing connection between services...