github.com/tsuna/gohbase@v0.0.0-20250731002811-4ffcadfba63e/AUTHORS (about) 1 The GoHBase Authors 2 ------------------- 3 4 GoHBase ("gohbase") was originally written by Benoit Sigoure. 5 6 All contributors are required to sign a "Contributor License Agreement" at 7 http://opentsdb.net/contributing.html 8 9 The following organizations and people have contributed at least 0.5% of the 10 current code of GoHBase. 11 (Please keep both lists sorted alphabetically.) 12 13 14 Arista Networks, Inc. 15 16 17 Andrey Elenskiy 18 Benoit Sigoure 19 20 21 22 This list can be obtained at any time with the following script: 23 24 find src test -type f \ 25 | while read i; do \ 26 git blame -t $i 2>/dev/null; \ 27 done \ 28 | sed 's/^[0-9a-f]\{8\} [^(]*(\([^)]*\) [-+0-9 ]\{14,\}).*/\1/;s/ *$//' \ 29 | awk '{a[$0]++; t++} END{for(n in a) if (a[n]*100.0/t > 0.5) print n}' \ 30 | sort