Skip to content

Instantly share code, notes, and snippets.

View rowanj's full-sized avatar
🐧
Seizing the machines of production

Rowan James rowanj

🐧
Seizing the machines of production
View GitHub Profile

Keybase proof

I hereby claim:

  • I am rowanj on github.
  • I am rvalue (https://keybase.io/rvalue) on keybase.
  • I have a public key ASCtrdu-MVr7c7alNt9_Uqb8iEGZ5Zejk3nuQQUQgyUFeAo

To claim this, I am signing this object:

@rowanj
rowanj / go-dependency-sources.sh
Created May 15, 2019 04:30
List all go files in dependency tree
go list -f '{{ join .Deps "\n" }}' | xargs -n 1 go list -f '{{ $path := .ImportPath}}{{ range $file := .GoFiles }}{{ $path }}{{ $file }}{{ "\n" }}{{ end }}'