Juliusz Chroboczek
Juliusz Chroboczek
I think it's pretty smart.
I think Sean is merely speaking about catching regressions, not about general performance tuning. While microbenchmarks are misleading, they are good for catching regressions, and every performance regression should be...
Yes, I know about the workaround. I'm just saying that it would be convenient if goaccess could decompress on the fly.
Donald, I'm maintaining the standalone babeld, and reviewing the patches that go into BIRD. I simply don't have the time or energy to be maintaining FRR's fork in addition to...
> Should the new attributes be mandatory or optional? All attributes should be optional, since any attribute will be difficult to provide by some software. > Can we avoid the...
It's described here: https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps/Add_to_home_screen Implementing that is a simple matter of: * designing an icon; * adding a Manifest file; * adding a service worker that does nothing; * adding...
This is a little off-topic, but service workers have two properties that make them dangerous: 1. a service worker applies to a whole origin; 2. service workers persist across browsing...
Yes, it would be a good idea. It should also be shown at startup. Unfortunately, I don't think it is possible with current versions of Go. The `runtime/debug.BuildInfo` function does...
In Go-1.18, due in December, `runtime/debug.BuildInfo` provides information about the git hash from which Galene has been built. Perhaps something can be done with that, at least when Galene is...
@gedw99 I could be wrong, but I don't think that `go build` supports running arbitrary code at build time. How do you suggest the `version.go` file should be generated?