Originally posted by energyman
View Post
Those that made 10 or more commits are given below:
- The Weather Channel : 20
- iXsystems, Inc. : 60
- Citrix Systems R&D : 18
- Nokia : 46
- Yandex LLC : 17
- Isilon Systems : 10
- Bright Path Solutions : 10
- Bally Wulff Games & Entertainment GmbH : 14
- ISPsystem : 13
- Myricom Inc. : 18
- Spectra Logic : 31
- Juniper Networks : 31
- Spectralogic : 10
- Sandvine Incorporated : 105
- iXsystems, inc. : 10
- Netflix : 17
- Juniper Networks, Inc. : 19
- nCircle Network Security, Inc. : 10
- Apple, Inc. : 30
- ADARA Networks : 15
- home.pl : 19
- iXsystems : 77
- Google Inc : 34
- EMC / Isilon storage division : 47
- Isilon Systems, Inc. : 186
- Intel : 156
- EMC / Isilon Storage Division : 76
- Spectra Logic Corporation : 44
- Multiplay : 20
- Nginx, Inc. : 51
- Google : 10
- Hobnob, Inc. : 44
- Google, Inc. : 38
- Rambler : 17
Sony's not there, but Juniper, Apple, Netflix, Yahoo (Yahoo has 14 commits under various names) and Panasas contributed (Panasas has 8 commits). I guess it's not necessarily true that companies don't contribute back to BSDL projects.
Here's how to reproduce this list:
First checkout the FreeBSD repository with svn:
Code:
svn checkout http://svn.freebsd.org/base/stable/10
Code:
svn log > /tmp/Log.txt
Code:
#!/usr/bin/awk -f BEGIN { threshold=10 } /Sponsored by:/ { sub("^[ \t]*Sponsored by:[ \t]*","") sub("[ \t\r]+$", "") company=$0 Histogram[company]++ } END { for (company in Histogram) { count = Histogram[company] if (count >= threshold) print company " : " count } }
Leave a comment: