Measuring delay when using webview with Go

Serge Zaitsev's webview library allows us to use a native browser webview in applications written in the Go programming language. Amongst other things it allows us to invoke Go methods from the webview's Javascript code, and I wanted to measure how much delay that would introduce.

Read more...

Using modules for workspaces in Go

As of Go 1.11, the Go programming language has (experimental) support for modules. This addresses a number of needs - such as ensuring semantic versioning, ensuring reproducible builds, etc. Here I look specifically at how modules help replace the need for $GOPATH based workspaces.

Read more...