Peter Kleiweg
Peter Kleiweg
Apparently, this is a bug in Go: https://github.com/golang/go/issues/9872
Did I give the wrong link? Try this: https://github.com/golang/go/issues/11138
I don't use MTMonkey. I wrote my own implementation: https://github.com/rug-compling/qtleap/tree/master/moses
Does detokenize=false mean don't do detruecasing either?
Running this code I get what you see below. Only the svg version (top right) looks identical to the original (top left). Is it something platform dependant? I am using...
Or is it a library version thing? This is my `go.mod` for this program: ``` require github.com/goccy/go-graphviz v0.2.9 require ( github.com/disintegration/imaging v1.6.2 // indirect github.com/flopp/go-findfont v0.1.0 // indirect github.com/fogleman/gg v1.3.0...
I can't reproduce this error. There is no `context.Close()`, but when I remove the first defer, the code compiles and runs without error. There must be something wrong with your...
Sockets are not thread safe. This a problem in zmq, not in Go. You shouldn't create a socket in one goroutine, and use it in another. You should execute Proxy...
With the proxy at server `proxy.example.com`, this seems to work in Apache config: ``` ProxyPassReverse https://proxy.example.com/ http://example.com/ ```
> It is necessary to tell INCEpTION what the public URL is. I already did this.