Created
January 3, 2013 04:00
-
-
Save igrigorik/4440674 to your computer and use it in GitHub Desktop.
Language popularity on GitHub by number of unique committers...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT repository_language, count(DISTINCT actor) as committers FROM [github.timeline] | |
| GROUP BY repository_language | |
| ORDER BY committers desc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| repository_language,committers | |
| unknown,855369 | |
| JavaScript,348014 | |
| Java,199916 | |
| Ruby,187048 | |
| Python,181687 | |
| PHP,165869 | |
| C,122198 | |
| C++,109401 | |
| Shell,80945 | |
| Objective-C,73884 | |
| C#,54344 | |
| VimL,42111 | |
| Perl,36730 | |
| CoffeeScript,36469 | |
| Scala,16939 | |
| Emacs Lisp,12255 | |
| ActionScript,11844 | |
| Go,10571 | |
| Lua,9761 | |
| Clojure,9520 | |
| Haskell,8902 | |
| Groovy,7647 | |
| Erlang,7060 | |
| Assembly,6095 | |
| R,4817 | |
| Puppet,4238 | |
| Arduino,3913 | |
| Matlab,3164 | |
| Visual Basic,3017 | |
| D,2587 | |
| OCaml,2480 | |
| Common Lisp,2436 | |
| PowerShell,2055 | |
| Scheme,1807 | |
| Rust,1647 | |
| ASP,1441 | |
| Delphi,1419 | |
| HaXe,1279 | |
| Prolog,1232 | |
| Racket,1207 | |
| FORTRAN,1122 | |
| Dart,1118 | |
| F#,1114 | |
| ColdFusion,1100 | |
| Objective-J,925 | |
| Julia,920 | |
| Verilog,730 | |
| VHDL,642 | |
| Vala,641 | |
| Elixir,630 | |
| Tcl,606 | |
| AutoHotkey,585 | |
| Apex,563 | |
| DCPU-16 ASM,424 | |
| Smalltalk,349 | |
| Pure Data,329 | |
| OpenEdge ABL,323 | |
| Coq,273 | |
| Nemerle,234 | |
| Standard ML,217 | |
| XQuery,215 | |
| AppleScript,213 | |
| Scilab,188 | |
| Ada,171 | |
| SuperCollider,149 | |
| Arc,145 | |
| Gosu,136 | |
| Kotlin,132 | |
| Io,127 | |
| Rebol,124 | |
| Powershell,123 | |
| Opa,113 | |
| Eiffel,113 | |
| Factor,112 | |
| Turing,111 | |
| Boo,93 | |
| Parrot,79 | |
| Augeas,62 | |
| Mirah,53 | |
| Nu,52 | |
| Nimrod,48 | |
| Dylan,46 | |
| Self,39 | |
| Modelica,35 | |
| Fancy,33 | |
| ooc,29 | |
| Ceylon,23 | |
| Fantom,16 | |
| Bro,14 | |
| Ecl,14 | |
| Logtalk,10 | |
| Max/MSP,8 | |
| eC,7 | |
| Max,6 | |
| Ioke,6 | |
| DCPU-16 Assembly,2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment