-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathAUTHORS
31 lines (22 loc) · 867 Bytes
/
AUTHORS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
The AsyncCassandra Authors
--------------------------
AsyncHBase ("asynchbase") was originally written by Benoit Sigoure and
AsyncCassandra is based off the API, including some classes and methods.
All contributors are required to sign a "Contributor License Agreement" at
http://opentsdb.net/contributing.html
The following organizations and people have contributed at least 0.5% of the
current code of AsyncCassandra.
(Please keep both lists sorted alphabetically.)
Arista Networks, Inc.
StumbleUpon, Inc.
Yahoo, Inc.
Benoit Sigoure
Chris Larsen
This list can be obtained at any time with the following script:
find src test -type f \
| while read i; do \
git blame -t $i 2>/dev/null; \
done \
| sed 's/^[0-9a-f]\{8\} [^(]*(\([^)]*\) [-+0-9 ]\{14,\}).*/\1/;s/ *$//' \
| awk '{a[$0]++; t++} END{for(n in a) if (a[n]*100.0/t > 0.5) print n}' \
| sort