ivanjaros
ivanjaros
I rewrote the code to be a static service, so fonts are loaded just once per font size(this is quite a problem when each size requires new font). It helped...
Any idea how to bring this to the attention of the Go team? It is a serious problem.
It seems the problem is idling system. If there is not much going on, the GC won't run any time soon(supposedly 2 minutes). So calling GC manually after render is...
Something like: ```go func OpenInto(e *Enclave, b []byte) ([]byte, error) { k, err := getOrCreateKey().View() if err != nil { return nil, err } _, err = Decrypt(e.ciphertext, k.Data(), b)...
More like never.
Also, it seems that if the gif is larger(not sure when this triggers), i will get `panic: lzw: input byte too large for the litWidth` This is caused by something...
This produces something: ```go g, err := gif.DecodeAll(src) if err != nil { return err } g.Config.Height = 0 g.Config.Width = 0 for k := range g.Image { src :=...
I have recently started observing these errors in my logs, version 4.52, out of nowhere. I always use iat with time.Now() and nbf with now - 1 minute to avoid...
Just small update - all my errors disappeared. I cannot say whether it was new deployment or server issue but my impression was that it was a server issue(maybe time...
Microsoft was concerned with political impact of supporting flag glyphs/emojis, so they decide to ditch the support altogether. Just FYI.