-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjects.csv
We can't make this file beautiful and searchable because it's too large.
10952 lines (10952 loc) · 603 KB
/
Projects.csv
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
url,authors,commiters
https://github.com/CitizensDev/CitizensAPI,16,CitizensAPI
https://github.com/scobal/seyren,28,seyren
https://github.com/aerogear/aerogear-controller,8,aerogear-controller
https://github.com/Chipmunk-Unlimited/Lecture-Feedback,3,Lecture-Feedback
https://github.com/evandor/skysail-server-ext,2,skysail-server-ext
https://github.com/shuhuai007/cfim,3,cfim
https://github.com/sgmiller/The-Artifact,5,The-Artifact
https://github.com/FHachez/restaurantApp,4,restaurantApp
https://github.com/entando/entando-plugins-parent,19,entando-plugins-parent
https://github.com/thothbot/parallax,2,parallax
https://github.com/DozerMapper/dozer,40,dozer
https://github.com/koraktor/steam-condenser-java,12,steam-condenser-java
https://github.com/Gris87/WYSIWYG_Keyboard,3,WYSIWYG_Keyboard
https://github.com/yungsters/rain-workload-toolkit,11,rain-workload-toolkit
https://github.com/ese-unibe-ch/ese2013-team8,7,ese2013-team8
https://github.com/vazexqi/CodingSpectator,4,CodingSpectator
https://github.com/clientserver/lotserver,3,lotserver
https://github.com/mperdikeas/archetypes,3,archetypes
https://github.com/DAT255-group20/UltraExtreme,4,UltraExtreme
https://github.com/onepf/AppDF,19,AppDF
https://github.com/Cloudhunter/OpenCCSensors,21,OpenCCSensors
https://github.com/jpmml/jpmml,8,jpmml
https://github.com/AlibabaTech/fastjson,11,fastjson
https://github.com/Technius/SkyrimRPG,4,SkyrimRPG
https://github.com/vmi/selenese-runner-java,6,selenese-runner-java
https://github.com/IsmAvatar/LateralGM,12,LateralGM
https://github.com/karma-exchange-org/karma-exchange,3,karma-exchange
https://github.com/asascience-open/ncSOS,12,ncSOS
https://github.com/OWASP/OWASP-WebScarab,22,OWASP-WebScarab
https://github.com/VaclavDedik/jboss-seam,14,jboss-seam
https://github.com/diogojpina/ListaExercicio,15,ListaExercicio
https://github.com/YAMJ/yamj-v3,5,yamj-v3
https://github.com/Mobicents/jss7,10,jss7
https://github.com/fprates/iocaste,1,iocaste
https://github.com/nchovy/kraken,14,kraken
https://github.com/sergeymo/android-radio-t,2,android-radio-t
https://github.com/informant/informant,1,informant
https://github.com/svn2github/H2-Mirror,3,H2-Mirror
https://github.com/richfaces/showcase,21,showcase
https://github.com/kitkatandroid/JLS36G_base,2,JLS36G_base
https://github.com/mockito/mockito,40,mockito
https://github.com/hjohn/MediaSystem,1,MediaSystem
https://github.com/xize/xEssentials,1,xEssentials
https://github.com/kalvinnchau/cse131,3,cse131
https://github.com/AbstractedSheep/Shuttle-Tracker,11,Shuttle-Tracker
https://github.com/kai8406/cmop,2,cmop
https://github.com/hubiquitus/hubiquitus4j,13,hubiquitus4j
https://github.com/nchandran3/Silver,5,Silver
https://github.com/rolandschulz/PTP,17,PTP
https://github.com/enviroCar/enviroCar-app,7,enviroCar-app
https://github.com/JohannesKlug/hbird,5,hbird
https://github.com/stephenh/joist,5,joist
https://github.com/iceandfire/android_packages_apps_Settings,30,android_packages_apps_Settings
https://github.com/airlift/airship,8,airship
https://github.com/hortonworks/templeton,16,templeton
https://github.com/SimpleServer/SimpleServer,23,SimpleServer
https://github.com/dungvn3000/qlkh,3,qlkh
https://github.com/the-fascinator/the-fascinator,15,the-fascinator
https://github.com/vmware-serengeti/vhm,24,vhm
https://github.com/taskadapter/redmine-java-api,31,redmine-java-api
https://github.com/flyingsaucerproject/flyingsaucer,50,flyingsaucer
https://github.com/imeeting/web_portal,3,web_portal
https://github.com/typesafehub/config,16,config
https://github.com/arquillian/arquillian-graphene,15,arquillian-graphene
https://github.com/infinispan/infinispan-server,26,infinispan-server
https://github.com/freemarker/freemarker,12,freemarker
https://github.com/tcurdt/jdeb,40,jdeb
https://github.com/cowtowncoder/ClusterMate,2,ClusterMate
https://github.com/tzaeschke/zoodb,10,zoodb
https://github.com/SpringSource/spring-social-twitter,16,spring-social-twitter
https://github.com/phenoscape/phenoscape-nlp,5,phenoscape-nlp
https://github.com/martoncsukas/home,1,home
https://github.com/arquillian/arquillian-container-jbossas,9,arquillian-container-jbossas
https://github.com/Jordi1990/Containing-2013,11,Containing-2013
https://github.com/nolanlawson/KeepScore,11,KeepScore
https://github.com/pgalex/OSMViewer,3,OSMViewer
https://github.com/jclouds/jclouds-chef,16,jclouds-chef
https://github.com/tbroyer/gwt-sandbox,55,gwt-sandbox
https://github.com/testmycode/tmc-netbeans,6,tmc-netbeans
https://github.com/haraldk/TwelveMonkeys,16,TwelveMonkeys
https://github.com/Athou/GeekBot,7,GeekBot
https://github.com/adinardi/google-closure-compiler,86,google-closure-compiler
https://github.com/jenkinsci/xunit-plugin,19,xunit-plugin
https://github.com/Omertron/api-themoviedb,9,api-themoviedb
https://github.com/killme2008/xmemcached,18,xmemcached
https://github.com/span/Team05,7,Team05
https://github.com/LuckyStars/nbc,4,nbc
https://github.com/milneti/PayBack,12,PayBack
https://github.com/Dempsy/Dempsy,6,Dempsy
https://github.com/github/gauges-android,8,gauges-android
https://github.com/siramix/buzzwords,4,buzzwords
https://github.com/holatuwol/kolmafia,12,kolmafia
https://github.com/apache/maven-release,33,maven-release
https://github.com/OpenRadStack/mirth,5,mirth
https://github.com/Dilandau/MhoEssentials,2,MhoEssentials
https://github.com/mbax/VanishNoPacket,27,VanishNoPacket
https://github.com/rodnaph/sockso,16,sockso
https://github.com/Blazemeter/blazemeter-jmeter-plugin,3,blazemeter-jmeter-plugin
https://github.com/sakai-mirror/site-manage,28,site-manage
https://github.com/Gwindow/WhatAndroid,4,WhatAndroid
https://github.com/mikera/clisk,5,clisk
https://github.com/ether/pad,53,pad
https://github.com/bergerkiller/BKCommonLib,8,BKCommonLib
https://github.com/photon-infotech/archetypes,21,archetypes
https://github.com/iain-davis/CommunityBridge,7,CommunityBridge
https://github.com/CyanogenMod/android_device_asus_tf700t,27,android_device_asus_tf700t
https://github.com/barchart/barchart-feed,8,barchart-feed
https://github.com/cinchapi/concourse,1,concourse
https://github.com/hamcrest/JavaHamcrest,35,JavaHamcrest
https://github.com/onexus/onexus,2,onexus
https://github.com/Compu-global-Hiper-mega-Net/Proyecto,12,Proyecto
https://github.com/notnoop/java-apns,43,java-apns
https://github.com/jeremylong/DependencyCheck,6,DependencyCheck
https://github.com/Gumtree/gumtree,6,gumtree
https://github.com/webdetails/cpf,20,cpf
https://github.com/aerogear/aerogear-controller-demo,10,aerogear-controller-demo
https://github.com/blingwang/coding-collections,2,coding-collections
https://github.com/VWoeltjen/MCT-Plugins,7,MCT-Plugins
https://github.com/TeamW/Sports-Elimination-TP3,10,Sports-Elimination-TP3
https://github.com/dekarrin/yuuki-jrpg,2,yuuki-jrpg
https://github.com/betterFORM/betterFORM-limegreen,7,betterFORM-limegreen
https://github.com/epsilony/mf,1,mf
https://github.com/pcgod/mumble-android,18,mumble-android
https://github.com/code4craft/webmagic,7,webmagic
https://github.com/werme/DAT076,5,DAT076
https://github.com/blizzy78/documentr,1,documentr
https://github.com/pgong/jdby,7,jdby
https://github.com/zanata/zanata-client,7,zanata-client
https://github.com/padrig64/ValidationFramework,6,ValidationFramework
https://github.com/maniacbug/RF24,32,RF24
https://github.com/dweiss/lucene_solr,23,lucene_solr
https://github.com/exload/VArenas,4,VArenas
https://github.com/eclipse/tycho,15,tycho
https://github.com/sriksun/Ivory,15,Ivory
https://github.com/kreig133/IASKDaoGenerator,8,IASKDaoGenerator
https://github.com/Spidey01/sxe,1,sxe
https://github.com/mulesoft/facebook-connector,18,facebook-connector
https://github.com/LaurenDM/Pen0--Computerwetenschappen-Groen,7,Pen0--Computerwetenschappen-Groen
https://github.com/jingwei/krati,16,krati
https://github.com/idega/is.idega.idegaweb.egov.bpm,7,is.idega.idegaweb.egov.bpm
https://github.com/bmule/ehkmt-integration,11,ehkmt-integration
https://github.com/robotoworks/mechanoid,7,mechanoid
https://github.com/tomwhite/whirr-cm,9,whirr-cm
https://github.com/michaz/matsim,15,matsim
https://github.com/zenbones/SmallMind,3,SmallMind
https://github.com/kevinsawicki/http-request,23,http-request
https://github.com/Afforess/MinecartMania,28,MinecartMania
https://github.com/android/platform_packages_apps_camera,49,platform_packages_apps_camera
https://github.com/mapfish/mapfish-print,36,mapfish-print
https://github.com/pentaho/pentaho-commons-xul,35,pentaho-commons-xul
https://github.com/bauerca/drag-sort-listview,94,drag-sort-listview
https://github.com/sk89q/skmclauncher,34,skmclauncher
https://github.com/jgralab/jgralab,10,jgralab
https://github.com/sakai-mirror/assignment,30,assignment
https://github.com/tinkerpop/pipes,19,pipes
https://github.com/ligi/gobandroid,9,gobandroid
https://github.com/dohnto/DigitalLighter,4,DigitalLighter
https://github.com/axet/vget,5,vget
https://github.com/darshan-/Battery-Indicator,1,Battery-Indicator
https://github.com/chewiebug/GCViewer,22,GCViewer
https://github.com/eclipse/scout.rt,17,scout.rt
https://github.com/grammarware/slps,3,slps
https://github.com/peshkira/c3po,11,c3po
https://github.com/agoncal/agoncal-book-javaee7,7,agoncal-book-javaee7
https://github.com/pardom/ActiveAndroid,65,ActiveAndroid
https://github.com/marthaler/schuelerturnier,3,schuelerturnier
https://github.com/snowdrop/snowdrop,19,snowdrop
https://github.com/dhale/idh,6,idh
https://github.com/marc4j/marc4j,12,marc4j
https://github.com/piobpl/Zombies,11,Zombies
https://github.com/jline/jline2,35,jline2
https://github.com/greg-pe/android_frameworks_base,5,android_frameworks_base
https://github.com/lmco/eurekastreams,24,eurekastreams
https://github.com/apache/maven-scm,16,maven-scm
https://github.com/KnisterPeter/Smaller,6,Smaller
https://github.com/openskye/openskye,7,openskye
https://github.com/shazichuanhuo/heat_final_version,3,heat_final_version
https://github.com/aerogear/aerogear-security,5,aerogear-security
https://github.com/fcrepo/fcrepo,23,fcrepo
https://github.com/dimalabs/stratosphere-iterations,13,stratosphere-iterations
https://github.com/SpringSource/spring-insight-plugins,9,spring-insight-plugins
https://github.com/brix-cms/brix-cms,19,brix-cms
https://github.com/rmerizalde/opencommercesearch,8,opencommercesearch
https://github.com/performant-software/juxta-service,2,juxta-service
https://github.com/dryade/chouette,12,chouette
https://github.com/gdg-x/frisbee,27,frisbee
https://github.com/msgpack/msgpack-rpc,46,msgpack-rpc
https://github.com/DavePearce/wybench,3,wybench
https://github.com/argus-authz/argus-pap,6,argus-pap
https://github.com/danbernier/WordCram,7,WordCram
https://github.com/massie/adam,7,adam
https://github.com/constretto/constretto-core,19,constretto-core
https://github.com/farhanrahman/kyoto,17,kyoto
https://github.com/libpd/pd-for-android,10,pd-for-android
https://github.com/eclipse/eclipselink.runtime,21,eclipselink.runtime
https://github.com/gemserk/commons-gdx,7,commons-gdx
https://github.com/icplayer/icplayer,9,icplayer
https://github.com/idega/org.jboss.jbpm,10,org.jboss.jbpm
https://github.com/anden3/VoxelSniper,36,VoxelSniper
https://github.com/photon-infotech/plugins,25,plugins
https://github.com/tubs-legolabor-teamprojekt/schach,6,schach
https://github.com/DawnScience/dawn-workflow,14,dawn-workflow
https://github.com/eclipse/rap,11,rap
https://github.com/aquintiliano/tatu,5,tatu
https://github.com/thomasbaart/ISM2IKBS.V111,11,ISM2IKBS.V111
https://github.com/daveray/jsoar,8,jsoar
https://github.com/winterstein/JTwitter,11,JTwitter
https://github.com/animotron/animi,4,animi
https://github.com/semanticvoid/reDygest,5,reDygest
https://github.com/kevstessens/dealhunter,7,dealhunter
https://github.com/DSH105/EchoPet,15,EchoPet
https://github.com/Chorus-bdd/Chorus,5,Chorus
https://github.com/netmelody/ci-eye,7,ci-eye
https://github.com/TabakoffLab/PhenoGen,2,PhenoGen
https://github.com/phylogeography/SPREAD,9,SPREAD
https://github.com/parzonka/prm4j,3,prm4j
https://github.com/Seitenbau/stu,9,stu
https://github.com/54hotlover/Bookmarks,6,Bookmarks
https://github.com/tfredrich/RestExpress,13,RestExpress
https://github.com/zlamalp/perun,1,perun
https://github.com/ThinkingBridge/platform_packages_apps_Settings,9,platform_packages_apps_Settings
https://github.com/comsysto/jumbodb,6,jumbodb
https://github.com/t0xa/gelfj,47,gelfj
https://github.com/buchen/portfolio,6,portfolio
https://github.com/pbeeler/android_packages_apps_Settings,11,android_packages_apps_Settings
https://github.com/Wormhole-X-Treme/Wormhole-X-Treme,13,Wormhole-X-Treme
https://github.com/mendhak/gpslogger,28,gpslogger
https://github.com/DavidShepherdson/jira-suite-utilities,23,jira-suite-utilities
https://github.com/dumptruckman/PluginBase,2,PluginBase
https://github.com/Sangraama/sangraama-server,6,sangraama-server
https://github.com/svn2github/crux-framework,5,crux-framework
https://github.com/SonarSource/sonar-eclipse,13,sonar-eclipse
https://github.com/dmedov/flexymind_Ship,5,flexymind_Ship
https://github.com/ALRubinger/resolver,19,resolver
https://github.com/neofoniemobile/Crouton,58,Crouton
https://github.com/kapelner/CGMBART_GPL,7,CGMBART_GPL
https://github.com/COMP3111H-Project-Team/BallCraft,5,BallCraft
https://github.com/hunterhacker/jdom,8,jdom
https://github.com/jbosstm/quickstart,10,quickstart
https://github.com/Progga1/YangLib,4,YangLib
https://github.com/northvankiwiguy/Disco-Build-System,1,Disco-Build-System
https://github.com/physion/ovation-ui2,5,ovation-ui2
https://github.com/digitalabs/DatasetImporter,9,DatasetImporter
https://github.com/securekey/openmidaas-android-app,4,openmidaas-android-app
https://github.com/ltettoni/logic2j,7,logic2j
https://github.com/kohsuke/github-api,31,github-api
https://github.com/RegalOwl/HyperConomy,19,HyperConomy
https://github.com/TitanDevelopment/TitanChat,4,TitanChat
https://github.com/NLeSC/vbrowser,2,vbrowser
https://github.com/before/uadetector,3,uadetector
https://github.com/ios-driver/ios-driver,24,ios-driver
https://github.com/osiam/connector4java,12,connector4java
https://github.com/pixlepix/ElfCraft,2,ElfCraft
https://github.com/directededge/directed-edge-bindings,7,directed-edge-bindings
https://github.com/NLeSC/octopus,7,octopus
https://github.com/jeeeyul/eclipse-themes,9,eclipse-themes
https://github.com/GrizzlyNIO/grizzly-mirror,4,grizzly-mirror
https://github.com/exoplatform/core,23,core
https://github.com/easyhao1314/TravelPlatform,10,TravelPlatform
https://github.com/EsupPortail/esup-opi,12,esup-opi
https://github.com/dblock/waffle,21,waffle
https://github.com/walware/statet,2,statet
https://github.com/evanchooly/javabot,10,javabot
https://github.com/Zanshinmu/Wifi-Fixer,2,Wifi-Fixer
https://github.com/willuhn/jameica,6,jameica
https://github.com/ogrisel/pignlproc,14,pignlproc
https://github.com/Monstercraft/MonsterIRC,15,MonsterIRC
https://github.com/Dimappers/Pub,10,Pub
https://github.com/dveyarangi/quadraturin,3,quadraturin
https://github.com/martypitt/swagger-springmvc,38,swagger-springmvc
https://github.com/senseidb/zoie,31,zoie
https://github.com/PonySDK/PonySDK,9,PonySDK
https://github.com/jenkinsci/findbugs-plugin,13,findbugs-plugin
https://github.com/hugoferreira/mads-p1,39,mads-p1
https://github.com/H4201/DevOO,14,DevOO
https://github.com/hardisonbrewing/maven-cxx-plugin,8,maven-cxx-plugin
https://github.com/mattfeury/SaucillatorAndroid,3,SaucillatorAndroid
https://github.com/jsr107/RI,13,RI
https://github.com/yhez/SPEC,2,SPEC
https://github.com/Fabric3/fabric3-core,7,fabric3-core
https://github.com/botelhojp/behave,29,behave
https://github.com/CQQL/dungeon-game,4,dungeon-game
https://github.com/akiban/persistit,7,persistit
https://github.com/collective-congress/collective-congress,10,collective-congress
https://github.com/davidsowerby/v7,5,v7
https://github.com/sonyxperiadev/BacklogTool,10,BacklogTool
https://github.com/CSEMike/OneSwarm,14,OneSwarm
https://github.com/phrstbrn/Jobs,36,Jobs
https://github.com/eishay/jvm-serializers,40,jvm-serializers
https://github.com/pantheis/AdvancedPowerManagement,4,AdvancedPowerManagement
https://github.com/dbardin/tmp_course,21,tmp_course
https://github.com/kayahr/usb4java,4,usb4java
https://github.com/mulesoft/google-connectors-suite,15,google-connectors-suite
https://github.com/dmarc0001/submatixBTAndroid4,1,submatixBTAndroid4
https://github.com/JetBrains/Grammar-Kit,3,Grammar-Kit
https://github.com/linkedin/datafu,25,datafu
https://github.com/deric/clueminer,1,clueminer
https://github.com/nachetecanon/ono,5,ono
https://github.com/andfRa/Saga,7,Saga
https://github.com/Jygsaw/Overload,4,Overload
https://github.com/BryanHunt/eTrack,4,eTrack
https://github.com/amplafi/amplafi-flow-core,7,amplafi-flow-core
https://github.com/eclipse-imp/pdb.values,3,pdb.values
https://github.com/wso2/commons,36,commons
https://github.com/bitWolfy/MineReset,2,MineReset
https://github.com/ha-jdbc/ha-jdbc,6,ha-jdbc
https://github.com/artmoni/gardening-manager-android,4,gardening-manager-android
https://github.com/AdamBien/lightfish,7,lightfish
https://github.com/michaelmosmann/embedmongo.flapdoodle.de,19,embedmongo.flapdoodle.de
https://github.com/apache/tiles,5,tiles
https://github.com/robo-code/robocode,9,robocode
https://github.com/csci598b/frontend,15,frontend
https://github.com/jmorille/android,2,android
https://github.com/dzensystem/coop,5,coop
https://github.com/Sable/mclab,10,mclab
https://github.com/arshajii/xi,2,Xi
https://github.com/sonatype/nexus-maven-plugins,12,nexus-maven-plugins
https://github.com/stockholmuniversity/signuptool,5,signuptool
https://github.com/osiam/connector4java-integration-tests,9,connector4java-integration-tests
https://github.com/timb-stud/color-battle,6,color-battle
https://github.com/demandforce/CXTestFramework,9,CXTestFramework
https://github.com/svn2github/htmlunit-fork,3,htmlunit-fork
https://github.com/treasure-data/td-client-java,4,td-client-java
https://github.com/org-badiff/badiff,2,badiff
https://github.com/cloudsoft/brooklyn-marklogic,6,brooklyn-marklogic
https://github.com/mdaniel/svn-caucho-com-resin,8,svn-caucho-com-resin
https://github.com/pressgang-ccms/PressGangCCMSREST,4,PressGangCCMSREST
https://github.com/sgothel/jogl-demos,16,jogl-demos
https://github.com/AdeleResearchGroup/Cilia,5,Cilia
https://github.com/NineWorlds/serenity-android,1,serenity-android
https://github.com/jhalterman/modelmapper,24,modelmapper
https://github.com/eclipse/webtools.sourceediting,18,webtools.sourceediting
https://github.com/Xanindorf/AAAH-SNAYKUU,14,AAAH-SNAYKUU
https://github.com/rcrr/reversi,1,reversi
https://github.com/52North/WPS,15,WPS
https://github.com/Jasig/java-cas-client,23,java-cas-client
https://github.com/jenkinsci/perforce-plugin,24,perforce-plugin
https://github.com/AVATAR-PANIC/AVATAR-PANIC,7,AVATAR-PANIC
https://github.com/Timberjaw/SpawnControl-Bukkit-Plugin,6,SpawnControl-Bukkit-Plugin
https://github.com/sculptor/sculptor,5,sculptor
https://github.com/Flowdalic/openfire,23,openfire
https://github.com/tashlin/tashlin,10,tashlin
https://github.com/tdiesler/jbosgi-framework,7,jbosgi-framework
https://github.com/Rauks/TP-Brutes,2,TP-Brutes
https://github.com/Graphity/graphity-browser,3,graphity-browser
https://github.com/rovo89/XposedInstaller,45,XposedInstaller
https://github.com/UCSF-MouseDB/mouseinventory,2,mouseinventory
https://github.com/FasterXML/jackson-core,24,jackson-core
https://github.com/shoma2da/Qiitarian,1,Qiitarian
https://github.com/Madsim/Drole,6,Drole
https://github.com/Rune91/Prosjekt_RuneHagbergStana,13,Prosjekt_RuneHagbergStana
https://github.com/Phillipus/archi,5,archi
https://github.com/pranavjain02/POC,12,POC
https://github.com/torquebox/jruby-maven-plugins,15,jruby-maven-plugins
https://github.com/d-plaindoux/wolfgang,1,wolfgang
https://github.com/droolsjbpm/dashboard-builder,21,dashboard-builder
https://github.com/debonatis/Webutvikling,13,Webutvikling
https://github.com/rtoal/wutup,13,wutup
https://github.com/IanWraith/DMRDecode,3,DMRDecode
https://github.com/tonnymadsen/ui-bindings,3,ui-bindings
https://github.com/rockamorales/ClinicaWeb,13,ClinicaWeb
https://github.com/napodan/android_packages_apps_Contacts,19,android_packages_apps_Contacts
https://github.com/processing/processing-web,26,processing-web
https://github.com/novoda/SQLiteProvider,10,SQLiteProvider
https://github.com/patmorin/ods,7,ods
https://github.com/CombatMage/neidhardt.dsa.dynamicsoundboard,2,neidhardt.dsa.dynamicsoundboard
https://github.com/barchart/barchart-udt,8,barchart-udt
https://github.com/Evervolv/android_packages_inputmethods_LatinIME,22,android_packages_inputmethods_LatinIME
https://github.com/GoogleCloudPlatform/appengine-tck,8,appengine-tck
https://github.com/ceylon/ceylon-module-resolver,12,ceylon-module-resolver
https://github.com/magro/memcached-session-manager,27,memcached-session-manager
https://github.com/cloudzon-jayesh/GratzeezAPP,2,GratzeezAPP
https://github.com/develar/chromedevtools,4,chromedevtools
https://github.com/GrammaticalFramework/gf-eclipse-plugin,4,gf-eclipse-plugin
https://github.com/maddoggin/platform_frameworks_base,13,platform_frameworks_base
https://github.com/jacketattack/MULE,4,MULE
https://github.com/mushroomhostage/SilkSpawners,7,SilkSpawners
https://github.com/jidesoft/jide-oss,12,jide-oss
https://github.com/traff/jediterm,6,jediterm
https://github.com/projeto-coruja/Projeto-Coruja,13,Projeto-Coruja
https://github.com/poidasmith/xlloop,3,xlloop
https://github.com/Bombe/jSite,3,jSite
https://github.com/Shevchik/AutoSaveWorld,2,AutoSaveWorld
https://github.com/sonatype/nexus-yum-plugin,13,nexus-yum-plugin
https://github.com/mgoellnitz/tangram,1,tangram
https://github.com/dankurka/gwtphonegap,14,gwtphonegap
https://github.com/nyholku/purejavacomm,19,purejavacomm
https://github.com/ops4j/org.ops4j.pax.logging,50,org.ops4j.pax.logging
https://github.com/TexasDigitalLibrary/Vireo,8,Vireo
https://github.com/jenkinsci/envinject-plugin,16,envinject-plugin
https://github.com/nookieman/TeamMeet,4,TeamMeet
https://github.com/SOLA-LESOTHO/clients,12,clients
https://github.com/cbsrbiobank/scannerConfig,15,scannerConfig
https://github.com/sreichholf/dreamDroid,15,dreamDroid
https://github.com/prism/Prism,12,Prism
https://github.com/Cbeed/Wurfel-Engine,2,Wurfel-Engine
https://github.com/jnrainerds/jnrain-android,2,jnrain-android
https://github.com/mxro/nextweb-core,7,nextweb-core
https://github.com/aimluck/aipo,25,aipo
https://github.com/piusvelte/sonet,3,sonet
https://github.com/DuncanCragg/Cyrus,1,Cyrus
https://github.com/kassah/warlock2,2,warlock2
https://github.com/beanvalidation/beanvalidation-tck,4,beanvalidation-tck
https://github.com/AOKP/packages_providers_ContactsProvider,47,packages_providers_ContactsProvider
https://github.com/dondi/headmaster,21,headmaster
https://github.com/astrapi69/jaulp.core,7,jaulp.core
https://github.com/maxirosson/jdroid,3,jdroid
https://github.com/cts2/cts2-framework,6,cts2-framework
https://github.com/cwsus/cws-esolutions,2,cws-esolutions
https://github.com/erning/myrrix-recommender,1,myrrix-recommender
https://github.com/deadprogrammer/phonegap-android,22,phonegap-android
https://github.com/Telcommunication/Telc,5,Telc
https://github.com/wtsi-npg/illumina2bam,18,illumina2bam
https://github.com/dsarkozi/Gourmet,6,Gourmet
https://github.com/motech/care-reporting,6,care-reporting
https://github.com/Mindtoeye/Hoop,4,Hoop
https://github.com/shadowmage45/CatapultMod2,1,CatapultMod2
https://github.com/rest-driver/rest-driver,19,rest-driver
https://github.com/sapo/sapo-broker,13,sapo-broker
https://github.com/thecopy/ThorBangMQ,7,ThorBangMQ
https://github.com/ucam-cl-dtg/urop-2013-handins,5,urop-2013-handins
https://github.com/apache/any23,6,any23
https://github.com/escamuche/STAB,3,STAB
https://github.com/hon92/Java-Project,14,Java-Project
https://github.com/SimsGame/SIMS,14,SIMS
https://github.com/apache/commons-math,14,commons-math
https://github.com/eltazar/x2Android,6,x2Android
https://github.com/mperdikeas/playground,8,playground
https://github.com/chelseazhai/ChineseTelephone_android,3,ChineseTelephone_android
https://github.com/MattiSG/SemWiktionary,6,SemWiktionary
https://github.com/jhw/translate_mate,1,translate_mate
https://github.com/zkoss/zkthemes,10,zkthemes
https://github.com/rtyley/agit,13,agit
https://github.com/realtalk403/realtalk,10,realtalk
https://github.com/netherfoam/QuickShop,12,QuickShop
https://github.com/sorcerer310/Bsugdx002,2,Bsugdx002
https://github.com/TeamSourcery/frameworks_base,27,frameworks_base
https://github.com/niths/niths,5,niths
https://github.com/nuxeo/nuxeo.github.io,13,nuxeo.github.io
https://github.com/christophercurrie/jackson,2,jackson
https://github.com/ted80/BiomesOPlenty,8,BiomesOPlenty
https://github.com/ebi-cheminf/enzymeportal,2,enzymeportal
https://github.com/perwendel/spark,72,spark
https://github.com/svn2github/commons-vfs,6,commons-vfs
https://github.com/EmilyBjoerk/lsml,5,lsml
https://github.com/eclipse/eclipse.jdt.core,22,eclipse.jdt.core
https://github.com/sboesebeck/morphium,5,morphium
https://github.com/ajanata/PretendYoureXyzzy,13,PretendYoureXyzzy
https://github.com/planestraveler/git-starteam,5,git-starteam
https://github.com/almende/dialog,4,dialog
https://github.com/svn2github/commons-vfs2,6,commons-vfs2
https://github.com/barjo/arvensis,12,arvensis
https://github.com/treelogic-swe/aws-mock,9,aws-mock
https://github.com/codeguru42/bbct,1,bbct
https://github.com/thomas4g/2340,8,2340
https://github.com/jweese/thrax,8,thrax
https://github.com/Ronnie76er/jmeter-maven-plugin,27,jmeter-maven-plugin
https://github.com/agmip/translator-dssat,4,translator-dssat
https://github.com/mth/yeti,5,yeti
https://github.com/phenoscape/Phenex,4,Phenex
https://github.com/gameDevPrep/DryRun,4,DryRun
https://github.com/kthlnkeating/rgivistatools,2,rgivistatools
https://github.com/rnewson/couchdb-lucene,23,couchdb-lucene
https://github.com/tuxskar/pixmind,6,pixmind
https://github.com/motech/ananya,25,ananya
https://github.com/jschneider/com.cedarsoft.serialization,2,com.cedarsoft.serialization
https://github.com/douglascrockford/JSON-java,100,JSON-java
https://github.com/apache/rave,18,rave
https://github.com/sakai-mirror/msgcntr,23,msgcntr
https://github.com/Data2Semantics/d2s-tools,41,d2s-tools
https://github.com/serso/android-common,3,android-common
https://github.com/maven-gae-plugin/maven-gae-plugin,22,maven-gae-plugin
https://github.com/jbosstools/jbosstools-hibernate,19,jbosstools-hibernate
https://github.com/bergerkiller/TrainCarts,6,TrainCarts
https://github.com/cloudfoundry/vcap-java-client,29,vcap-java-client
https://github.com/Mobrockers/IPSEN2,4,IPSEN2
https://github.com/tajo-project/tajo,5,tajo
https://github.com/cyklo/Bukkit-OtherBlocks,6,Bukkit-OtherBlocks
https://github.com/ChangeOrientedProgrammingEnviorment/clientRecorder,5,clientRecorder
https://github.com/jenkinsci/dry-plugin,12,dry-plugin
https://github.com/DHBW-Karlsruhe/businesshorizon2,22,businesshorizon2
https://github.com/sylvanaar/IDLua,5,IDLua
https://github.com/jankotek/JDBM3,24,JDBM3
https://github.com/kyorohiro/KyoroHelloAndroid,2,KyoroHelloAndroid
https://github.com/cloudera/crunch,17,crunch
https://github.com/modilabs/dristhi,6,dristhi
https://github.com/steria/log-parser,7,log-parser
https://github.com/menacher/java-game-server,3,java-game-server
https://github.com/cyclestreets/android,7,android
https://github.com/moravianlibrary/MEditor,5,MEditor
https://github.com/dime-project/dime-server,15,dime-server
https://github.com/jhpoelen/eol-globi-data,4,eol-globi-data
https://github.com/jenkinsci/git-client-plugin,32,git-client-plugin
https://github.com/tehbeard/BeardAch,4,BeardAch
https://github.com/rik0/blogracy,7,blogracy
https://github.com/jenkinsci/checkstyle-plugin,12,checkstyle-plugin
https://github.com/amcgala/amcgala,12,amcgala
https://github.com/kanata3249/Android-FFXIEQ,1,Android-FFXIEQ
https://github.com/alljoyn/alljoyn_java,23,alljoyn_java
https://github.com/cipriancraciun/mosaic-java-platform,5,mosaic-java-platform
https://github.com/ColinHebert/Sakai-Solr,1,Sakai-Solr
https://github.com/revetkn/restfb,34,restfb
https://github.com/AlejandraAgroGIS/AgroGISFinal,4,AgroGISFinal
https://github.com/chariotsolutions/phonegap-nfc,16,phonegap-nfc
https://github.com/INCF/eeg-database,27,eeg-database
https://github.com/barchart/barchart-util,9,barchart-util
https://github.com/jayway/maven-android-plugin-samples,22,maven-android-plugin-samples
https://github.com/openstack-infra/gerrit,25,gerrit
https://github.com/srt/asterisk-java,30,asterisk-java
https://github.com/kuujo/vertigo,3,vertigo
https://github.com/ballroom/ballroom,7,ballroom
https://github.com/prasannata/StackX,1,StackX
https://github.com/qalingo/qalingo-b2c-engine,10,qalingo-b2c-engine
https://github.com/perka/flatpack-java,9,flatpack-java
https://github.com/josiah-wolf-oberholtzer/oovu,2,oovu
https://github.com/locked-fg/JFeatureLib,9,JFeatureLib
https://github.com/jenkinsci/pmd-plugin,9,pmd-plugin
https://github.com/ops4j/org.ops4j.pax.url,26,org.ops4j.pax.url
https://github.com/nuxeo/nuxeo-chemistry,15,nuxeo-chemistry
https://github.com/bzhang/mutator-model,2,mutator-model
https://github.com/palantir/eclipse-typescript,4,eclipse-typescript
https://github.com/CyanogenMod/android_packages_apps_Calendar,87,android_packages_apps_Calendar
https://github.com/nethad/clustermeister,5,clustermeister
https://github.com/jbee/silk,2,silk
https://github.com/zhuowei/MCPELauncher,17,MCPELauncher
https://github.com/maxirosson/media-fever,3,media-fever
https://github.com/apache/mina,14,mina
https://github.com/mboudreau/Alternator,30,Alternator
https://github.com/KristianKarl/GraphWalker,12,GraphWalker
https://github.com/esialb/zeromeaner,2,zeromeaner
https://github.com/CraftFire/CraftCommons,3,CraftCommons
https://github.com/jleo/fb,3,fb
https://github.com/lnewson/csprocessor,4,csprocessor
https://github.com/alansoto/orange,6,orange
https://github.com/nguillaumin/osmtracker-android,19,osmtracker-android
https://github.com/pulse00/Twig-Eclipse-Plugin,5,Twig-Eclipse-Plugin
https://github.com/digitalabs/BreedingManager,17,BreedingManager
https://github.com/cstamas/nexus-ruby-support,12,nexus-ruby-support
https://github.com/irstv/gdms-topology,6,gdms-topology
https://github.com/bcgit/bc-java,20,bc-java
https://github.com/jwlawson/Nof1,1,Nof1
https://github.com/aapman55/WI3620TU-GROUP2,4,WI3620TU-GROUP2
https://github.com/SebastianNiemann/ArmadilloJava,5,ArmadilloJava
https://github.com/bcdev/sst-cci-toolbox,5,sst-cci-toolbox
https://github.com/daisy-consortium/pipeline-framework,5,pipeline-framework
https://github.com/sihrc/Story-Quilt,4,Story-Quilt
https://github.com/jdamcd/musicbrainz-android,2,musicbrainz-android
https://github.com/MIND-Tools/mindEd,10,mindEd
https://github.com/richfaces/richfaces5,6,richfaces5
https://github.com/OpenTreeOfLife/treemachine,7,treemachine
https://github.com/max-dev/light-admin,5,light-admin
https://github.com/greese/dasein-cloud-core,12,dasein-cloud-core
https://github.com/manhole/coopie,1,coopie
https://github.com/miracle2k/android-autostarts,7,android-autostarts
https://github.com/SomMeri/less4j,6,less4j
https://github.com/magmapus/PGApp,2,PGApp
https://github.com/pentaho/modeler,25,modeler
https://github.com/ravindranathakila/www.ilikeplaces.com,2,www.ilikeplaces.com
https://github.com/lpireyn/pi-commons,1,pi-commons
https://github.com/desruisseaux/geotoolkit-pending,13,geotoolkit-pending
https://github.com/Raxa/raxacore,32,raxacore
https://github.com/infinitest/infinitest,28,infinitest
https://github.com/joel-costigliola/assertj-core,25,assertj-core
https://github.com/Zubnix/trinityshell,3,trinityshell
https://github.com/oliverw92/HawkEye,29,HawkEye
https://github.com/eugenp/REST,5,REST
https://github.com/ese-unibe-ch/ese2013-team6,12,ese2013-team6
https://github.com/helun/Ektorp,44,Ektorp
https://github.com/CLLKazan/UIMA-Ext,9,UIMA-Ext
https://github.com/metaborg/spoofax,5,spoofax
https://github.com/bocchino/AppleCore,1,AppleCore
https://github.com/openstreetmap/osmosis,19,osmosis
https://github.com/greenlaw110/Rythm,10,Rythm
https://github.com/jbundle/jbundle,2,jbundle
https://github.com/eclipse-color-theme/eclipse-color-theme,27,eclipse-color-theme
https://github.com/mulesoft/github-connector,23,github-connector
https://github.com/secure-software-engineering/soot-infoflow,7,soot-infoflow
https://github.com/janrain/engage.android,10,engage.android
https://github.com/newcho913/Zigeon,5,Zigeon
https://github.com/svn2github/protostuff,8,protostuff
https://github.com/akraievoy/elw,3,elw
https://github.com/dpalmisano/NoTube-Beancounter-2.0,9,NoTube-Beancounter-2.0
https://github.com/DHBW-Karlsruhe/wouf,16,wouf
https://github.com/propra13-orga/gruppe94,5,gruppe94
https://github.com/tobiastry/Photoapp,13,Photoapp
https://github.com/ariesteam/thinklab,5,thinklab
https://github.com/eclipse/gef,11,gef
https://github.com/Lothy/MoparClassic,18,MoparClassic
https://github.com/lichtflut/arastreju,10,arastreju
https://github.com/iliasbartolini/twu28a_feedforward,12,twu28a_feedforward
https://github.com/Ferioney/nc_social_library,11,nc_social_library
https://github.com/GotMilk/IRCBot,3,IRCBot
https://github.com/before/quality-check,3,quality-check
https://github.com/robovm/robovm,16,robovm
https://github.com/wso2/jaggery,25,jaggery
https://github.com/HtmlToJavaWindowsBuilder/HtmlToJavaWindowsBuilder,13,HtmlToJavaWindowsBuilder
https://github.com/samhopkins/bleeding_edge,49,bleeding_edge
https://github.com/richardwilly98/elasticsearch-river-mongodb,21,elasticsearch-river-mongodb
https://github.com/stickfigure/objectify,8,objectify
https://github.com/knutwalker/google-closure-compiler,75,google-closure-compiler
https://github.com/opensciencemap/VectorTileMap,4,VectorTileMap
https://github.com/mono/ikvm-fork,10,ikvm-fork
https://github.com/RyanTheAllmighty/ATLauncher,8,ATLauncher
https://github.com/cnnic/restfulwhois,9,restfulwhois
https://github.com/dcbriccetti/dbschools,3,dbschools
https://github.com/michalseweryn/queue-game,9,queue-game
https://github.com/richfaces/build,16,build
https://github.com/Riduidel/gaedo,2,gaedo
https://github.com/jersey/jersey-1.x,19,jersey-1.x
https://github.com/OpenConextApps/apis,25,apis
https://github.com/jentfoo/threadly,2,threadly
https://github.com/vshcryabets/V2AndLib.UI,4,V2AndLib.UI
https://github.com/akara/faban,10,faban
https://github.com/geosolutions-it/geobatch,18,geobatch
https://github.com/no-hope/java-toolkit,4,java-toolkit
https://github.com/AChugr/goods-review-ng,9,goods-review-ng
https://github.com/alxsoares/algorithms,3,algorithms
https://github.com/djhaskin987/snake,4,snake
https://github.com/mraof/Minestuck,6,Minestuck
https://github.com/ReadyTalk/revori,9,revori
https://github.com/Mendroyxx/FeatureApp,7,FeatureApp
https://github.com/drtshock/Willie,13,Willie
https://github.com/openintents/shoppinglist,9,shoppinglist
https://github.com/wikimedia/kraken,8,kraken
https://github.com/NGDATA/hbase-indexer,13,hbase-indexer
https://github.com/isaacjohnwesley/commons,9,commons
https://github.com/sakai-mirror/config,29,config
https://github.com/andreasnesheim/Minerva,5,Minerva
https://github.com/ptitfred/magrit,8,magrit
https://github.com/asad/SMSD,2,SMSD
https://github.com/C4J-Team/C4J,7,C4J
https://github.com/themikesmith/mlcd-hw2,2,mlcd-hw2
https://github.com/infochimps-labs/wonderdog,24,wonderdog
https://github.com/WeAreLeka/moti,4,moti
https://github.com/feldob/InPUT,18,InPUT
https://github.com/RobertOrmandi/Gossip-Learning-Framework,7,Gossip-Learning-Framework
https://github.com/gundermann/SmartKichten_Ingredients,9,SmartKichten_Ingredients
https://github.com/exoplatform/webos,52,webos
https://github.com/SOLA-FAO/services,13,services
https://github.com/angryziber/ipscan,8,ipscan
https://github.com/mahogny/Endrov,5,Endrov
https://github.com/voxeolabs/moho,11,moho
https://github.com/skyscreamer/nevado,13,nevado
https://github.com/Alfresco/alfresco-android-sdk,11,alfresco-android-sdk
https://github.com/SpringSource/spring-android,16,spring-android
https://github.com/reprap/host,6,host
https://github.com/commercetools/sphere-play-sdk,11,sphere-play-sdk
https://github.com/xkyouchoux/EnchantingPlus,7,EnchantingPlus
https://github.com/andriusvelykis/proofprocess,1,proofprocess
https://github.com/tizianolattisi/suitepa,2,suitepa
https://github.com/blacksmithgu/scl,4,scl
https://github.com/arturmkrtchyan/Try2Solve,7,Try2Solve
https://github.com/mensonge/mensonge,11,mensonge
https://github.com/jknack/handlebars.java,28,handlebars.java
https://github.com/tyrus-project/tyrus,11,tyrus
https://github.com/mulesoft/mongo-connector,29,mongo-connector
https://github.com/dmlloyd/jboss-marshalling,13,jboss-marshalling
https://github.com/Hurricaaane/MC-Client,1,MC-Client
https://github.com/FDVSolutions/DynamicJasper,9,DynamicJasper
https://github.com/OpenConext/OpenConext-teams,12,OpenConext-teams
https://github.com/vvakame/JsonPullParser,7,JsonPullParser
https://github.com/oskarwaglund/project-pineapple,2,project-pineapple
https://github.com/Praqma/config-rotator-plugin,6,config-rotator-plugin
https://github.com/brutall/ingress-apk-mod,21,ingress-apk-mod
https://github.com/capedwarf/capedwarf-jboss-as,7,capedwarf-jboss-as
https://github.com/hedtek/dspace-rest,4,dspace-rest
https://github.com/netherfoam/MaxBans,4,MaxBans
https://github.com/Escapecraft/EscapePlug,8,EscapePlug
https://github.com/mitschke/vespucci,18,vespucci
https://github.com/apache/incubator-helix,12,incubator-helix
https://github.com/nuxeo/nuxeo-cmf,20,nuxeo-cmf
https://github.com/roundrop/facebook4j,7,facebook4j
https://github.com/shivawu/topcoder-greed,12,topcoder-greed
https://github.com/ahajirnis/FallUML2013,19,FallUML2013
https://github.com/chemo/BuyIt,19,BuyIt
https://github.com/jakob190590/ScotlYard,2,ScotlYard
https://github.com/openintents/filemanager,13,filemanager
https://github.com/digitalseraphim/TCGCraft,1,TCGCraft
https://github.com/eclipse/webtools.jsdt.core,19,webtools.jsdt.core
https://github.com/shantanusharma/snpeff,3,snpeff
https://github.com/technophobia/substeps-eclipse-plugin,8,substeps-eclipse-plugin
https://github.com/nuxeo/nuxeo-opensocial,32,nuxeo-opensocial
https://github.com/nuxeo/nuxeo-platform-login,32,nuxeo-platform-login
https://github.com/F13CDIO/RouterMonitor,11,RouterMonitor
https://github.com/codescape/bitvunit,1,bitvunit
https://github.com/helloplz/Gravity,12,Gravity
https://github.com/javajigi/next-board,41,next-board
https://github.com/groupon/Selenium-Grid-Extras,6,Selenium-Grid-Extras
https://github.com/TheLastCrusade/SoundStream,7,SoundStream
https://github.com/nielsdrost/GAT,2,GAT
https://github.com/EmiteGWT/emite,22,emite
https://github.com/headsupdev/agile,3,agile
https://github.com/sebfz1/wicket-jquery-ui,9,wicket-jquery-ui
https://github.com/telmomenezes/synthetic,1,synthetic
https://github.com/lintool/twitter-tools,17,twitter-tools
https://github.com/datasift/dropwizard-extra,12,dropwizard-extra
https://github.com/SpringSource/spring-webflow,17,spring-webflow
https://github.com/SonarCommunity/sonar-javascript,21,sonar-javascript
https://github.com/tooflya/bubble-fun,4,bubble-fun
https://github.com/curtbinder/AndroidStatus,2,AndroidStatus
https://github.com/magnuskiro/it2901,6,it2901
https://github.com/sigmarkarl/sandbox,14,sandbox
https://github.com/Tasktop/code2cloud.server,5,code2cloud.server
https://github.com/paul-hammant/paranamer,11,paranamer
https://github.com/Ourobor/petulant-batman,8,petulant-batman
https://github.com/osiam/scim-schema,11,scim-schema
https://github.com/propra13-orga/gruppe53,13,gruppe53
https://github.com/bricket/bricket,4,bricket
https://github.com/Xhamolk/XACT,2,XACT
https://github.com/OpenHMIS/openmrs-module-openhmis.cashier,4,openmrs-module-openhmis.cashier
https://github.com/stevenremot/RaSKlett,17,RaSKlett
https://github.com/exoplatform/docs-style,20,docs-style
https://github.com/Moppel/Timesheet,2,Timesheet
https://github.com/jfclere/metadata,25,metadata
https://github.com/BaseXdb/basex-examples,13,basex-examples
https://github.com/Netflix/archaius,21,archaius
https://github.com/wwr1227/LeetCode,1,LeetCode
https://github.com/ohtuprojekti/OKKoPa,9,OKKoPa
https://github.com/basdag/08707,8,8707
https://github.com/linkedin/rest.li,26,rest.li
https://github.com/roselone/FootWith,5,FootWith
https://github.com/jbosstools/jbosstools-esb,21,jbosstools-esb
https://github.com/OpenNTF/JavascriptAggregator,5,JavascriptAggregator
https://github.com/deegree/deegree2-desktop,9,deegree2-desktop
https://github.com/chrisbanes/PhotoView,61,PhotoView
https://github.com/bumptech/glide,8,glide
https://github.com/nimbusproject/nimbus,8,nimbus
https://github.com/momentumclj/momentum,8,momentum
https://github.com/sakai-mirror/profile2,17,profile2
https://github.com/pizuricv/BayesProject,4,BayesProject
https://github.com/mgarber/scriptureV2,16,scriptureV2
https://github.com/aptana/studio3-ruby,13,studio3-ruby
https://github.com/Jonbas/LocalShops,10,LocalShops
https://github.com/EnderWiggin/Haven-and-Hearth-client-modified-by-Ender,22,Haven-and-Hearth-client-modified-by-Ender
https://github.com/biojava/RCSB-Viewers,7,RCSB-Viewers
https://github.com/ixonos/koku-ui,8,koku-ui
https://github.com/opensagres/xdocreport,6,xdocreport
https://github.com/jondwillis/ElectricSleep,3,ElectricSleep
https://github.com/paolodongilli/SASAbus,7,SASAbus
https://github.com/dideher/minoas,3,minoas
https://github.com/chaosbastler/opentraining,8,opentraining
https://github.com/eu-emi/emiregistry,3,emiregistry
https://github.com/SWPUebersetzerbauSS12/swp-uebersetzerbau-ss12,25,swp-uebersetzerbau-ss12
https://github.com/threadly/threadly,4,threadly
https://github.com/nuxeo/nuxeo-platform-semantic-entities,14,nuxeo-platform-semantic-entities
https://github.com/trendrr/java-oss-lib,6,java-oss-lib
https://github.com/allardhoeve/pcgen-multiline-objects,2,pcgen-multiline-objects
https://github.com/odf/gavrog,1,gavrog
https://github.com/carlgauss/ADISysServer,3,ADISysServer
https://github.com/lisaglendenning/zookeeper-lite,1,zookeeper-lite
https://github.com/WASP-System/central,7,central
https://github.com/albarralnunez/GeneradorHorarios,4,GeneradorHorarios
https://github.com/wayne0332/xiaojh,6,xiaojh
https://github.com/smtech/canvas,1,canvas
https://github.com/ubergeek42/weechat-android,12,weechat-android
https://github.com/SpringSource/spring-batch-admin,20,spring-batch-admin
https://github.com/dcm4che/dcm4chee-proxy,5,dcm4chee-proxy
https://github.com/tumb1er/RutubeAppProject,3,RutubeAppProject
https://github.com/mikeemoo/OpenPeripheral,17,OpenPeripheral
https://github.com/DataLite/zk-dl,6,zk-dl
https://github.com/CyanogenMod/android_packages_apps_Torch,108,android_packages_apps_Torch
https://github.com/dmlloyd/jboss-logmanager,15,jboss-logmanager
https://github.com/barrelballoons/barrel-cdf-generator,6,barrel-cdf-generator
https://github.com/Rushmead/MineChem,11,MineChem
https://github.com/SpringSource/greenhouse,23,greenhouse
https://github.com/nklotz/CookingWithFriends,6,CookingWithFriends
https://github.com/jenkinsci/cobertura-plugin,40,cobertura-plugin
https://github.com/dennisegen/MOST,6,MOST
https://github.com/undera/jmeter-plugins,28,jmeter-plugins
https://github.com/infiniteautomation/ma-core-public,12,ma-core-public
https://github.com/peichhorn/lombok-pg,10,lombok-pg
https://github.com/seage/seage,5,seage
https://github.com/seam/faces,27,faces
https://github.com/etaylor5/Coding-Samples,1,Coding-Samples
https://github.com/dougmiller/theMetaCity,2,theMetaCity
https://github.com/m0ep/master-thesis,1,master-thesis
https://github.com/apribeiro/xis-mobile,1,xis-mobile
https://github.com/MCBans/MCBans,23,MCBans
https://github.com/exoplatform/ws,26,ws
https://github.com/codeworkx/android_device_samsung_i9100,79,android_device_samsung_i9100
https://github.com/jenkinsci/emma-plugin,19,emma-plugin
https://github.com/droolsjbpm/drools-chance,8,drools-chance
https://github.com/SonarSource/jenkins-sonar-plugin,24,jenkins-sonar-plugin
https://github.com/myzelrobin/sp-re-an-proj,3,sp-re-an-proj
https://github.com/SpringSource/spring-integration-samples,20,spring-integration-samples
https://github.com/XBigTK13X/Munchoid,2,Munchoid
https://github.com/amaldini/TradingSimulator,3,TradingSimulator
https://github.com/tash1207/Gradugation,12,Gradugation
https://github.com/Jahia/templates-set,16,templates-set
https://github.com/SpringSource/spring-data-rest,27,spring-data-rest
https://github.com/scrutmydocs/scrutmydocs,12,scrutmydocs
https://github.com/Soetnowzen/SmartPower,7,SmartPower
https://github.com/guardianproject/lildebi,5,lildebi
https://github.com/galeamelania/OpenNMS-Android-Client,4,OpenNMS-Android-Client
https://github.com/linkedin/camus,52,camus
https://github.com/cnyangyifeng/otp,9,otp
https://github.com/llbit/chunky,5,chunky
https://github.com/photon-infotech/service,24,service
https://github.com/apic6/MELT,24,MELT
https://github.com/Makazone/FormulaBook,4,FormulaBook
https://github.com/nickman/apmrouter,3,apmrouter
https://github.com/mikael2/Muldvarp,10,Muldvarp
https://github.com/navtable/navtableforms,5,navtableforms
https://github.com/ovasgus/Intercambio-II,8,Intercambio-II
https://github.com/objectledge/coral,6,coral
https://github.com/AndroidSquad/Coloristance,5,Coloristance
https://github.com/AKSW/Sparqlify,7,Sparqlify
https://github.com/verath/ESCP,4,ESCP
https://github.com/miquelrojascherto/bioclipse.cheminformatics,7,bioclipse.cheminformatics
https://github.com/hamnis/httpcache4j,11,httpcache4j
https://github.com/proofpoint/kairosdb,19,kairosdb
https://github.com/nullterminated/ponder,7,ponder
https://github.com/claire921/dicks,8,dicks
https://github.com/nuixanh/vng-vmas,2,vng-vmas
https://github.com/ACRA/acra,27,acra
https://github.com/fnppl/openSDX,7,openSDX
https://github.com/carrotsearch/randomizedtesting,2,randomizedtesting
https://github.com/Evervolv/android_packages_apps_Settings,22,android_packages_apps_Settings
https://github.com/nuxeo/nuxeo-theme,20,nuxeo-theme
https://github.com/jenkinsci/parameterized-trigger-plugin,34,parameterized-trigger-plugin
https://github.com/ProBam/android_packages_apps_Settings,3,android_packages_apps_Settings
https://github.com/powertac/powertac-tournament-scheduler,5,powertac-tournament-scheduler
https://github.com/causeroot/challengefinder,5,challengefinder
https://github.com/PorcupineSS/psp-swing,6,psp-swing
https://github.com/SimonVT/android-menudrawer,55,android-menudrawer
https://github.com/vinayakbhavnani/android_chat_client,5,android_chat_client
https://github.com/blacksnow666/falcon,4,falcon
https://github.com/mperdikeas/esavo-reg-II,1,esavo-reg-II
https://github.com/TutenStain/Plingnote,8,Plingnote
https://github.com/jimkell/mostSandbox,1,mostSandbox
https://github.com/jjkoletar/SoapTools,5,SoapTools
https://github.com/Rubusch/USI-compiler-performance,1,USI-compiler-performance
https://github.com/idega/com.idega.user,16,com.idega.user
https://github.com/heroku/heroku-eclipse-plugin,8,heroku-eclipse-plugin
https://github.com/StressYourself/StressYourself,6,StressYourself
https://github.com/ujhelyiz/EMF-IncQuery-Examples,11,EMF-IncQuery-Examples
https://github.com/Gottox/socket.io-java-client,32,socket.io-java-client
https://github.com/scalagwt/scalagwt-gwt,57,scalagwt-gwt
https://github.com/yandex-qatools/htmlelements,15,htmlelements
https://github.com/CreeperCoders/InfectedPlugin,5,InfectedPlugin
https://github.com/NitorCreations/RobotFramework-EclipseIDE,4,RobotFramework-EclipseIDE
https://github.com/droolsjbpm/droolsjbpm-build-distribution,30,droolsjbpm-build-distribution
https://github.com/karlmdavis/ksoap2-android,42,ksoap2-android
https://github.com/soartech/simjr,19,simjr
https://github.com/MinionApp/minion,7,minion
https://github.com/ese-unibe-ch/ese2013-team4,14,ese2013-team4
https://github.com/tdiesler/jbosgi-resolver,2,jbosgi-resolver
https://github.com/wiglenet/wigle-wifi-wardriving,16,wigle-wifi-wardriving
https://github.com/JDIX-Developers/Animature_World,5,Animature_World
https://github.com/sparks/rter,9,rter
https://github.com/Droid-Concepts/packages_apps_Settings,2,packages_apps_Settings
https://github.com/SonarCommunity/sonar-flex,11,sonar-flex
https://github.com/rbart/tac2013,3,tac2013
https://github.com/dcm4che/dcm4chee-arc,16,dcm4chee-arc
https://github.com/intel-cloud/cosbench,11,cosbench
https://github.com/pgu/pgu-geo,2,pgu-geo
https://github.com/CMUSV-SmartReader/SmartReader,5,SmartReader
https://github.com/sakai-mirror/gradebook,35,gradebook
https://github.com/mulesoft/cmis-connector,20,cmis-connector
https://github.com/7uc0/p0s7m33,1,p0s7m33
https://github.com/facebook/jcommon,22,jcommon
https://github.com/pdaian/MCBouncer,10,MCBouncer
https://github.com/Taig/Communicator,2,Communicator
https://github.com/odea-examples/TimeTracker,8,TimeTracker
https://github.com/yui/yuitest,26,yuitest
https://github.com/hpcc-systems/spoon-plugins,8,spoon-plugins
https://github.com/asafge/newsblurplus,2,newsblurplus
https://github.com/aeshell/aesh,8,aesh
https://github.com/metricminer/metricminer,14,metricminer
https://github.com/ianhanniballake/ContractionTimer,1,ContractionTimer
https://github.com/FacundoAcevedo/Algo3Tp2,4,Algo3Tp2
https://github.com/phresco/archetypes,18,archetypes
https://github.com/Simperium/simperium-android,3,simperium-android
https://github.com/powerfolder/PF-CORE,9,PF-CORE
https://github.com/mikebrock/errai,3,errai
https://github.com/NathanWolf/MagicPlugin,2,MagicPlugin
https://github.com/dpoellath/laho-halo-server,1,laho-halo-server
https://github.com/makubi/SchoolPlanner4Untis,8,SchoolPlanner4Untis
https://github.com/CyanogenMod/android_packages_apps_CMAccount,47,android_packages_apps_CMAccount
https://github.com/OpenMRS/openmrs-module-xforms,12,openmrs-module-xforms
https://github.com/axemblr/axemblr-provisionr,3,axemblr-provisionr
https://github.com/jeeeyul/pde-tools,3,pde-tools
https://github.com/greese/dasein-cloud-openstack,12,dasein-cloud-openstack
https://github.com/rcsb/symmetry,8,symmetry
https://github.com/panchenko/org.eclipse.dltk.javascript,6,org.eclipse.dltk.javascript
https://github.com/wf4ever/rodl,6,rodl
https://github.com/dodyg/AndroidRivers,8,AndroidRivers
https://github.com/DtcHub/DtcRepo,7,DtcRepo
https://github.com/GollyTicker/WS1314,12,WS1314
https://github.com/kreneskyp/openconferenceware-android,10,openconferenceware-android
https://github.com/emilsjolander/StickyListHeaders,58,StickyListHeaders
https://github.com/SystemsInMotion/OrgChart_Java,22,OrgChart_Java
https://github.com/NCIP/cadsr-formbuilder,13,cadsr-formbuilder
https://github.com/qiniu/java-sdk,19,java-sdk
https://github.com/calpath/model-elements,7,model-elements
https://github.com/Auronspan/SURVIVE,15,SURVIVE
https://github.com/axet/mircle,1,mircle
https://github.com/sonatype/plexus-compiler,31,plexus-compiler
https://github.com/rdelbru/SIREn,8,SIREn
https://github.com/olap4j/olap4j,10,olap4j
https://github.com/svn2github/Javascool4,5,Javascool4
https://github.com/Grupa/GClasificator,11,GClasificator
https://github.com/xebia-france/xebia-cloudcomputing-extras,23,xebia-cloudcomputing-extras
https://github.com/sakai-mirror/calendar,34,calendar
https://github.com/redfish4ktc/maven-soapui-extension-plugin,3,maven-soapui-extension-plugin
https://github.com/oakes/Nightcode,9,Nightcode
https://github.com/Kegbot/kegbot-android,8,kegbot-android
https://github.com/nielspeter16/slotmachine,3,slotmachine
https://github.com/PIH/mirebalais-smoke-tests,14,mirebalais-smoke-tests
https://github.com/ICS-TU-Ilmenau/fog,4,fog
https://github.com/Hexcore/HxCAS,6,HxCAS
https://github.com/LiveRamp/cascading_ext,14,cascading_ext
https://github.com/oboehm/gdv.xport,4,gdv.xport
https://github.com/nuxeo/nuxeo-common,23,nuxeo-common
https://github.com/dolfdijkstra/gst-foundation,4,gst-foundation
https://github.com/benanhalt/Specify,7,Specify
https://github.com/HarrieO/GDA,4,GDA
https://github.com/JodaOrg/joda-beans,4,joda-beans
https://github.com/Frege/frege,5,frege
https://github.com/sakai-mirror/sitestats,21,sitestats
https://github.com/paulhoule/infovore,14,infovore
https://github.com/mdiponio/sahara-labs-rig-client,9,sahara-labs-rig-client
https://github.com/alexruiz/fest-swing-1.x,12,fest-swing-1.x
https://github.com/sake/bouncycastle-java,5,bouncycastle-java
https://github.com/openstack-ci/gerrit,29,gerrit
https://github.com/osgi/bindex,10,bindex
https://github.com/kdeforche/jwt,4,jwt
https://github.com/mapfap/pos,10,pos
https://github.com/Permafrost/Tundra,3,Tundra
https://github.com/nhaarman/ListViewAnimations,42,ListViewAnimations
https://github.com/murgo/IrssiNotifier,21,IrssiNotifier
https://github.com/pilhuhn/ZwitscherA,3,ZwitscherA
https://github.com/carrot-garden/carrot-maven,5,carrot-maven
https://github.com/ktoso/maven-git-commit-id-plugin,32,maven-git-commit-id-plugin
https://github.com/nuxeo/nuxeo-ide,8,nuxeo-ide
https://github.com/tonytw1/wellynews,4,wellynews
https://github.com/trifork/fmk-schemas,15,fmk-schemas
https://github.com/Koller-Digital/200Million_framework,1,200Million_framework
https://github.com/eziosoft/MultiWii_EZ_GUI,4,MultiWii_EZ_GUI
https://github.com/indy256/wikialgo,6,wikialgo
https://github.com/cesarvf90/ProyectoRH,7,ProyectoRH
https://github.com/marchica/OpenTripPlanner-for-Android,15,OpenTripPlanner-for-Android
https://github.com/photon-infotech/commons,30,commons
https://github.com/bartdag/py4j,11,py4j
https://github.com/BurgerZ/WSM-Project,13,WSM-Project
https://github.com/threerings/narya,13,narya
https://github.com/sakai-mirror/announcement,32,announcement
https://github.com/abhardwaj/voicex,9,voicex
https://github.com/CodeStory/code-story-http,3,code-story-http
https://github.com/MIND-Tools/mind-compiler,12,mind-compiler
https://github.com/jenkinsci/starteam-plugin,21,starteam-plugin
https://github.com/tloehr/Offene-Pflege.de,3,Offene-Pflege.de
https://github.com/DMDirc/DMDirc,5,DMDirc
https://github.com/tekknolagi/apcompsci,9,apcompsci
https://github.com/bitsofproof/supernode,8,supernode
https://github.com/bytemanproject/byteman,16,byteman
https://github.com/seweissman/wikiduper,3,wikiduper
https://github.com/mysticfall/pivot4j,3,pivot4j
https://github.com/robbymckilliam/pubsim,8,pubsim
https://github.com/liangxiaofei1100/AndroidCommunication,3,AndroidCommunication
https://github.com/apache/roller,9,roller
https://github.com/netkiller/netkiller.github.com,6,netkiller.github.com
https://github.com/eclipse/vert.x,22,vert.x
https://github.com/ligasgr/intellij-xquery,7,intellij-xquery
https://github.com/timurstrekalov/saga,11,saga
https://github.com/graphstream/gs-algo,10,gs-algo
https://github.com/vfournier11/darkAlpaga,6,darkAlpaga
https://github.com/jenkinsci/violations-plugin,41,violations-plugin
https://github.com/AEinsam/HabReader,7,HabReader
https://github.com/alphazero/jredis,23,jredis
https://github.com/tordanik/OSM2World,6,OSM2World
https://github.com/sakai-mirror/search,22,search
https://github.com/bristleback/bristleback,8,bristleback
https://github.com/bdult/storyfarm,6,storyfarm
https://github.com/okjsp/okjsp-site,6,okjsp-site
https://github.com/daumproject/daum-library,4,daum-library
https://github.com/waarp/WaarpR66,6,WaarpR66
https://github.com/kir-dev/korok,6,korok
https://github.com/sirthias/parboiled,14,parboiled
https://github.com/inyrie/Robotz,2,Robotz
https://github.com/koush/ion,21,ion
https://github.com/sakai-mirror/content,30,content
https://github.com/HoloAddict/FeedEx,10,FeedEx
https://github.com/android/platform_packages_apps_music,39,platform_packages_apps_music
https://github.com/jimmc/HapiPodcastJ,5,HapiPodcastJ
https://github.com/ceylon/ceylon-herd,8,ceylon-herd
https://github.com/rSmart/kuali_kc,18,kuali_kc
https://github.com/jeduardo/comunicadeiro,1,comunicadeiro
https://github.com/sfdc-hhildebrand/Ouroboros,3,Ouroboros
https://github.com/AllPlayers/allplayers-android,6,allplayers-android
https://github.com/vtatai/srec,11,srec
https://github.com/richfaces/cdk,13,cdk
https://github.com/jenkinsci/analysis-collector-plugin,8,analysis-collector-plugin
https://github.com/JakeWharton/trakt-java,11,trakt-java
https://github.com/kevinsawicki/gitective,9,gitective
https://github.com/aebsubis/spinspun,3,spinspun
https://github.com/lonelydime/DeathTpPlus,11,DeathTpPlus
https://github.com/cloudfoundry/login-server,23,login-server
https://github.com/geosolutions-it/imageio-ext,4,imageio-ext