Adam Babik
Adam Babik
I am using [watchexec](https://github.com/watchexec/watchexec) like this: ``` watchexec -r -e go -- "go run ./cmd/stateful/main.go my-command" ``` Each time I change the code it re-prints the output but controls work...
This behaviour might be included deeper (in the HTTP server implementation, for instance) or the client you use discards body. Discarding body in HEAD requests is actually correct: > A...
It's not trivial... but it's possible. I use this technique for many libraries that don't provide an interface to do it. 1. Create a custom `http.Client`, 2. Specify `http.RoundTripper` that...
Oh, I just discovered there is a simpler way: `gqlClient.Log = func(s string) { log.Println(s) }`
Are there any plans to update this PR and merge? I needed to [introduce a few changes](https://github.com/terraform-google-modules/terraform-google-lb-http/commit/090bbcbbe70de24bf85041f5179f0de6c19c4fe1) to make it work, namely: - `serve_while_stale` must be a number - `negative_caching`...
Hey @Emiller88. To clarify, you mean that it worked fine for `0.20.0-beta.0` and `0.20.0-beta.1` stopped working? Also, when you say "connect" you mean connecting to one of our nodes in...
In geth 1.9, discovery based on DNS was implemented: - PR https://github.com/ethereum/go-ethereum/pull/20094 - EIP https://eips.ethereum.org/EIPS/eip-1459 I can do a POC with @jakubgs this week I believe. It does not necessarily...
Can we maybe resolve this from the UX perspective? Why do we need to have the full history for all transactions immediately? Maybe we can have like the transfers from...
> We will have to give an option to download all of them, right? I think it should be provided but does not have to be a default option. If...
Ok, so the plan looks like this: - identify all Infura calls and group them into mission critical and others - figure out whether we want to have a second...