Skip to content

Instantly share code, notes, and snippets.

@b4t3ou
b4t3ou / .golangci.yml
Last active August 20, 2019 10:41
golangci config
# options for analysis running
run:
skip-dirs:
- component-tests
# default concurrency is a available CPU number
concurrency: 4
# timeout for analysis, e.g. 30s, 5m, default is 1m
deadline: 10m

Keybase proof

I hereby claim:

  • I am b4t3ou on github.
  • I am cequazeg (https://keybase.io/cequazeg) on keybase.
  • I have a public key ASB94byMMvetroRyy2uoDEBX46OhJj0FfTSTnEeMaRiOtAo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am b4t3ou on github.
  • I am cequazeg (https://keybase.io/cequazeg) on keybase.
  • I have a public key whose fingerprint is E4C1 648A A4E9 D444 4E8B 7A2A 76F0 C5D1 0A84 5657

To claim this, I am signing this object:

@b4t3ou
b4t3ou / wait_group_example.go
Last active July 6, 2016 09:20
Small example about goroutines and wait groups
package main
import (
"fmt"
"math/rand"
"strconv"
"sync"
"time"
)