Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 28 million developers.
Sign up
Pinned repositories
1,516 contributions in the last year
Contribution activity
August 2018
Created a pull request in allegro/hermes that received 3 comments
Created an issue in go-critic/go-critic that received 2 comments
lint: detect copy-loop on slice
Name: copyLoop
Before:
var dst, src []int
for i, s := range src { dst[i] = s
}
After:
copy(dst, src)
2
comments
89
contributions
in private repositories
Aug 1 – Aug 27