Brad Fitzpatrick

Results 488 comments of Brad Fitzpatrick

@go101, this is quickly going off topic. All that code might be amusing to some, but it's not code we want to enable or encourage.

To continue the recent theme (#35386, #33359) of proposing new uses for `...`: ```go v := struct{...}{Name: "Bob", Age: 12} ```

This would help out with text/template & html/template usage. Grepping for Execute.*struct I find code like: ```go err := notifyTmpl.Execute(&msg, struct { Builder string LogHash string Hostname string }{builder, logHash,...

My motivation is for the builders, and test sharding. The problem with `go test -run=^$ std cmd` is that it deletes the `*.test` binaries afterwards. I want the test binaries,...

I can do it myself, but my concern is that I can't keep the CPU busy as well as the cmd/go binary could. cmd/go can load the dependency graph once,...

The buildlet sends a tarball to the x/build/cmd/release client. The buildlet uses [tar.FileInfoHeader](https://golang.org/pkg/archive/tar/#FileInfoHeader). The source on the buildlet ultimately comes from git (via git archive, via the gitmirror service, via...

Can you also share your Tailscale IP address?

Phew! That's less mysterious now. 😅

Nice to see [my android.os.StrictMode](https://android-developers.googleblog.com/2010/12/new-gingerbread-api-strictmode.html) still being used! 😄