find . -type f -ctime +80d -maxdepth 1 | xargs -I{} rm -v {}
youtube-dl https://player.vimeo.com/video/299186608 --referer https://skillsmatter.com/skillscasts/12115-keynote-not-just-events-developing-asynchronous-microservicesAlso works across git branches if you keep the intermediate build images around, e.g. those <none> images in the docker images output.
FROM golang:1.12 AS builder
# enable Go modules support
ENV GO111MODULE=on
WORKDIR $GOPATH/src/github.com/myrepo/myapp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # examples/contour/03-envoy.yaml | |
| apiVersion: apps/v1 | |
| kind: DaemonSet | |
| metadata: | |
| labels: | |
| app: envoy | |
| name: envoy | |
| namespace: projectcontour | |
| spec: | |
| [...] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "context" | |
| "grpc-tutorial/greeter" | |
| "io" | |
| "log" | |
| "os" | |
| "os/signal" | |
| "sync" |
go test -bench=. -benchmem
goos: darwin
goarch: amd64
pkg: fmt-perf
BenchmarkFmtV-16 6899274 174 ns/op 64 B/op 1 allocs/op
BenchmarkFmtS-16 9181304 129 ns/op 80 B/op 2 allocs/op
PASS
ok fmt-perf 4.138s