A Dataset for GitHub Repository Deduplication: Extended Description

Diomidis Spinellis1, Zoe Kotti1, and Audris Mockus2

1Athens University of Economics and Business 2University of Tennessee

June 17, 2020

Abstract GitHub projects can be easily replicated through the site’s fork process or through a Git clone-push sequence. This is a problem for empirical engineering, because it can lead to skewed results or mistrained machine learning models. We provide a dataset of 10.6 mil- lion GitHub projects that are copies of others, and link each record with the project’s ultimate parent. The ultimate parents were derived from a ranking along six metrics. The related projects were calculated as the connected components of an 18.2 million node and 12 million edge denoised graph created by directing edges to ultimate parents. The graph was created by filtering out more than 30 hand-picked and 2.3 million pattern-matched clumping projects. Projects that introduced unwanted clumping were identified by repeatedly visualizing shortest path distances between unrelated important projects. Our dataset identified 30 thousand duplicate projects in an existing popular ref- erence dataset of 1.8 million projects. An evaluation of our dataset against another created independently with different methods found a significant overlap, but also differences attributed to the operational arXiv:2002.02314v3 [cs.SE] 15 Jun 2020 definition of what projects are considered as related.

Keywords: Deduplication, fork, project clone, GitHub, dataset

This is a technical note expanding reference [? ], which should be cited in preference to this text.

1 In theory, there is no difference between theory and practice, while in practice, there is. Benjamin Brewster

1 Introduction

Anyone can create a copy of a GitHub project through a single effortless click on the project’s fork button. Similarly, one can also create a repos- itory copy with just two Git commands. Consequently, GitHub contains many millions of copied projects. This is a problem for empirical software engineering. First, when data containing multiple copies of a repository are analyzed, the results can end up skewed [27]. Second, when such data are used to train machine learning models, the corresponding models can behave incorrectly [23, 2]. In theory, it should be easy to filter away copied projects. The project details provided by the GitHub API contain the field fork, which is true for forked projects. They also include fields under parent or source, which contain data concerning the fork source. In practice, the challenges of detecting and grouping together copied GitHub repositories are formidable. At the computational level, they involve finding among hundreds of millions of projects those that are near in a space of billions of dimensions (potentially shared commits). The use of GitHub for courses and coursework with hundreds of thousands of participants,1 for experimenting with version control systems,2 and for all kinds of frivolous or mischievous activity3 further complicates matters. In the following sections we present how we created a dataset identifying and grouping together GitHub projects with shared ancestry or commits (Sections 2 and 3), the data schema and availability (Section 4), an evalu- ation of data quality (Section 6), indicative findings based on the dataset (Section 5), related work (Section 7), and ideas for research and improve- ments (Section 8).

1https://github.com/rdpeng/ProgrammingAssignment2 2https://archive.softwareheritage.org/browse/search/?q=dvcsconnectortest& with_visit&with_content 3https://github.com/illacceptanything/illacceptanything

2 GHTorrent GHTorrent Table GHTorrent Table GHTorrent Table GHTorrent Table GHTorrent Table project_commits commits pull_requests watchers issues projects

Derived Table Derived Table Derived Table Derived Table Derived Table Derived Table project_ncommits most_recent_commit project_pull_requests project_stars project_issues project_forks

Derived Table Derived Table Report commit_percentiles all_project_metrics fork_percentiles

Derived Table all_project_mean_metric

Derived Table Derived Table projects_sharing_commits blacklisted_projects

Derived Table Report filtered_projects_sharing_commits forked

Graph Graph sc_edges forked

Process denoise

Process Derived Table 3 ccomps -ex noise_projects

Derived Table Graph Derived Table acgroups denoised removed_projects

Derived Table Derived Table project_mean_metric group_size

Report Report Derived Table Derived Table large_groups_report top_rank_report project_group_size mega_cluster

Derived Table Derived Table Report highest_mean_in_group project_metrics mega_cluster_ordinal

Derived Table Report Report Report Process deduplicate_by_mean mega_cluster_labels top_in_mega_cluster mega_cluster_fork_labels ccomps -zX

Report Report Process Derived Table comparison_set deduplicate_names dijkstra forks_clones_noise

Graph Report cc_dijkstra forks_clones_noise_names

Figure 1: Overview of the dataset creation process 2 Dataset Creation

An overview of the dataset’s construction process is depicted in Figure 1. The projects were selected from GitHub by analyzing the GHTorrent [13, 11] dataset (release 2019-06-01) by means of the simple-rolap relational online analytical processing and rdbunit relational frameworks [14]. Following published recommendations [22], the code and primary data as- sociated with this endeavor are openly available online,4 and can be used to replicate the dataset or construct an updated version from newer data. The GHTorrent dataset release we used contains details about 125 mil- lion (125 486 232) projects, one billion (1 368 235 072) individual commits, and six billion (6 251 898 944) commits associated with (possibly multiple, due to forks and merges) projects. We first grouped shared commits to a single “attractor” project, which was derived based on the geometric mean (Table all project mean metric— 125 486 232 records—Listing 2) of six quality attributes:5 recency of the latest commit (Table most recent commit—100 366 312 records—Listing 3), as well as the number of stars (Table project stars—10 317 662 records— Listing 4), forks (Table project forks—6 958 551 records—Listing 5), com- mits (Table project ncommits—100 366 312 records—Listing 6), issues (Ta- ble project issues—9 498 704 records—Listing 7), and pull requests (Table project pull requests—7 143 570 records—Listing 8). In addition, the project- id was used as a tie-breaker. To avoid the information loss caused by zero values [20], we employed the following formula proposed by del Cruz and Kref [9]: n ! 1 X G (X) = exp log (x + δ ) − δ ,X n i ∗ ∗ i=1 with δ∗ calculated to have the value of 0.001 for our data. We used a query utilizing the SQL window functions in order to group together shared commits (Table projects sharing commits—44 380 204 records—Listing 9) without creating excessively large result sets (see Listing 16 in the appendix). To cover holes in the coverage of shared commits, we complemented the projects sharing commits table with projects related by GitHub project forks, after removing a set of hand-picked and heuristic-derived projects that mistakenly linked together unrelated clusters (Table blacklisted projects— 2 341 896 records—Listing 10). In addition, we removed from the combined

4https://doi.org/10.5281/zenodo.3742818 5In the interest of readability, this text replaces the underscores in the table names with spaces.

4 graph non-isolated nodes having between two and five edges, in order to reduce unwanted merges between unrelated shared commit and fork clusters. The method for creating the blacklisting table, along with the details behind the denoising process, are explained in Section 3. We subsequently converted projects with shared commits or shared fork ancestry into an (unweighted) graph to find its connected components, which would be the groups of related projects. We identified connected com- ponents using the GraphViz [10] ccomps tool (Table acgroups—18 203 053 records—Listing 11). The final steps involved determining the size of each group (Table group size—2 472 758 records—Listing 12), associating it with each project (Table project group size—18 203 053 records—Listing 13) and its metrics (Table project metrics—18 203 053 records—Listing 14), obtain- ing the mean metric for the selected projects (Table project mean metric— 18 203 053 records—Listing 15), and associating with each group the project excelling in the metric (Table highest mean in group—7 553 705 records— Listing 16). This was then used to create the deduplication table (Table deduplicate by mean—10 649 348 records—Listing 17) by partnering each project with a sibling having the highest mean value in the calculated met- rics.

3 Down the Rabbit Hole

We arrived at the described process after numerous false starts, experiments, and considerable manual effort. Some problems included the discovery that in GHTorrent shared commits do not always lead to the same ancestral com- mit, a query that exhausted 128GB of RAM, and a result set that exceeded the maximum number of rows supported by PostgreSQL (four billion). Here we provide details regarding the technical difficulties associated with the dataset’s creation, the rationale for the design of the adopted processing pipeline, and the process of the required hand-cleaning and denoising. Our initial plan for reducing the problem’s high dimensionality involved associating each commit with a parent-less ancestor. In theory, each graph component of copied projects would have a unique such ancestor, allowing us to easily group projects together. In practice, we found that the commit history is incomplete, and that various projects share multiple ancestries. Our next approach for finding shared commits was based on grouping the records of the project and commit identifier table by the commit iden- tifier, to identify projects with common commits. This process ran out of on a 128 GB RAM machine. We tried to run a query to export

5 the data into a file, but this also failed with an error “PGresult cannot support more than INT MAX tuples”. In the end, we resorted to dumping the commit and project identifier table with the ’s dump utility, pg dump, and filtering the output to obtain the required data. We sorted the file by the commit identifier as the primary key ( sort can handle arbitrary amounts of data by sorting in batches and then merge-sorting the intermediate files), and then used a small awk script to create in memory (9 GB RAM) a set of projects sharing commits, thus reducing the amount of downstream data. Our manual verification of large graph components uncovered a mega- component of projects with 4 278 791 members. Among the component’s projects were many seemingly unrelated popular ones, such as the follow- ing ten: FreeCodeCamp/FreeCodeCamp, /react, getify/You-Dont- Know-JS, robbyrussell/oh-my-zsh, twbs/bootstrap, /vscode, github/git- ignore, torvalds/, nodejs/node, and flutter/flutter. We experimented with introducing weights to the graph, changing the edge-creation algorithm to include only projects sharing at least two com- mits. According to a percentile calculation of commits in GHTorrent, this could have drastic consequences, because only the top 60% of projects or- dered by the number of recorded commits have more than two commits. The size of the mega-component was reduced, but it still contained 3 202 377 members. (The number of components also fell from 6 103 690 to 6 065 658.) Given that weights did not break up the mega-component, we eventually kept the graph unweighted. We wrote a graph-processing script to remove from the graph all but one edges from projects with up to five edges. We chose five based on the average number of edges per node with more than one edge (3.8) increased by one for safety. We also looked at the effect of other values. Increasing the denoising limit up to ten edges reduced the size of the mega-component only little to 2 523 841. Consequently, we kept it at five to avoid removing too many duplicate projects. This improved somewhat the situation, reducing the size of the mega-component to 2 881 473 members. Studying the mega-component we observed that many attractor projects were personal web sites.6,7 Focusing on them we found that apparently many clone a particular personal style builder, build on it, force push the commits, and then repeat the process with another builder project. For example,

6Figure 2 and G1. 7The referenced graph images GN are distributed with the paper’s replication package. All but one are also included in this note’s appendix as zoomable figures. The yellow- colored nodes are the ones belonging in the set of top-ranked projects.

6 it seems that through this process, wicky-info/wicky-info.github.io shares commits with 139 other projects. Based on this insight we excluded projects with names indicating web sites (all ending in github.io), and also removed from the graph nodes hav- ing between two and five edges, considering them as adding noise. This re- duced considerably the mega-component size in the graph of projects with shared commits, to the point where the largest component consisted mostly of programming assignments forked and copied thousands of times (jtleek/- datasharing — 199k forks, rdpeng/ProgrammingAssignment2 — 119k, rd- peng/RepData PeerAssessment1 — 32.3k). We also joined the generation of the fork tree and the common com- mit graph to reduce their interference, applying the denoising algorithm to both. This reduced the clusters to very reasonable sizes, breaking the mega- component to only include a few unrelated projects,8 which was further improved by blacklisting a couple of Android Open Source Project reposi- tories.9 We manually inspected the five projects with the highest mean ranking in each of the first 250 clusters, which comprise about 1.6 million projects. The most populous component (Linux) had 175 184 members and the last, least populous, component () had 1912 members. Many cases of several high-ranked projects in the same component involved genuine forks. This is for example the case of MariaDB/ linking percona/percona-server, /mysql-server, and facebook/mysql-8.0, among others.10 Where these referred to different projects, we drew a map of shortest path between the 49 top-ranked projects and the first or 50th one, and blacklisted low-ranked projects that were linking together unrelated repositories. Resolved examples include the linking of Docker with Go,11 with ,12 projects with ,13 Diaspora with Arduino,14 Elastic Search with Pandas,15 Definitely Types with RxJS,16 Ansible with

8Figure 3 and G2. 9Figure 4 and G3. 10Figure 5 and G4. 11Figure 6 and G5. 12Figure 7 and G6. 13Figure 8 and G7. 14Figure 9 and G8. 15Figure 10 and G9. 16Figure 11 and G10.

7 Puppet,17 PantomJS with WebKit and ,18 OpenStack projects,19 Puppet modules,20 documentation projects,21 Docker registry with others,22 Drupal with Backdrop,23 Python and koans,24 Vimium with Hubot,25 as well as several ASP.NET projects.26 For some clusters that failed to break up we repeated the exercise, looking at paths in the opposite direction, removing additional projects such as those linking Linux with Dagger,27 Ruby with JRuby, oh-my-zsh, Capistrano, and git-scm,28 and Laravel with Fuel.29 In some cases the culprits were high-ranked projects, such as boost- org/spirit, which links together more than ten Boost repositories,30 apache/hadoop, which links with Intel-bigdata/SSM,31 DefinitelyTyped/DefinitelyTyped, which links to Reactive-Extensions/RxJS,32 ReactiveX/RxJava, which links sev- eral Netflix repositories,33 jashkenas/underscore, which links with lodash/lo- dash,34 jsbin/jsbin linking to cdnjs/cdnjs,35 ravendb/ravendb linking to Sig- nalR/SignalR,36 Kibana linked with Grafana,37 CartoDB/carto linked with less/less.js.38 Other projects, such as Swift and LLVM,39 or Docker with Containerd,40 were too entangled to bring apart. We also looked at the number of edges of each node in the component, reasoning that a single project was somehow acting as a hub, gluing all

17Figure 12 and G11. 18Figure 13 and G12. 19Figure 14 and G13. 20Figure 15 and G14. 21Figure 16 and G15. 22Figure 17 and G16. 23Figure 18 and G17. 24Figure 19 and G18. 25Figure 20 and G19. 26Figure 21 and G20. 27Figure 22 and G21. 28Figure 23 and G22. 29Figure 24 and G23. 30Figure 8 and G7. 31Figure 25 and G24. 32Figure 11 and G10. 33Figure 26 and G25. 34Figure 27 and G26. 35Figure 28 and G27. 36Figure 29 and G28. 37Figure 30 and G29. 38Figure 31 and G30. 39Figure 32 and G31. 40Figure 33 and G32.

8 disparate projects together. We indeed found a project (jlord/patchwork) with a very large number of edges (11 735), but these were consistent with the number of its forks (31 449), and also connections between unrelated projects were not passing through it. To further investigate what brings the component’s projects together, we selected from the component one popular project with relatively few forks (creationix/nvm), and applied Dijkstra’s shortest path algorithm to find how other projects got connected to it. We drew paths from that project to 30 other popular projects belonging to the same component, and started verify- ing each one by hand. We looked at the shared commits between unrelated projects that we found connected, such as yui-knk/rails and seuros/django. Some (very few) commits appear to be shared by an inordinate num- ber of projects. At the top, three commits are shared by 100 683 projects, another three by 67 280, and then four by 53 312. However, these num- bers are not necessarily wrong, because there are five projects with a cor- respondingly large number of forks: 125 491 (jtleek/datasharing), 124 326 (rdpeng/ProgrammingAssignment2), 111 986 (octocat/Spoon-Knife), 70 137 (tensorflow/tensorflow), and 66 066 (twbs/bootstrap). The first two com- mits are associated with many (now defunct) projects of the user dvcscon- nectortest (missingcommitsfixproof, missingcommitstest, and then missing- commitstest 250 1393252414399) for many different trailing numbers. How- ever, the particular user is associated with very few commits, namely 1240, so it is unlikely that these commits have poisoned other components through transitive closure. We later on improved the denoising to incorporate components that could be trivially determined for isolation, by looking at just the neigh- boring nodes. The algorithm we employed is applied to all nodes n having between two and five edges; the ones we used to consider as noise. It sums up as s being the number of edges of all nodes n0 that were directly con- nected to n. If s is equal to the edges leading to n, then n and its immediate neighbors form a component, otherwise it is considered as adding noise and is disconnected from its neighbors. For a graph with edges E the condition for a node n being considered as noise, can be formally described as

0 0 X 0 00 0 00 (n, n )|(n, n ) ∈ E 6= {(n , n )|(n , n ) ∈ E} ∀n0|(n,n0)∈E

Applying this algorithm (Listing 1) decreased the number of ignored “noise projects” marginally from 37 660 040 to 37 333 119, increasing, as expected, the number of components by the same amount, from 2 145 837 to 2 472 758,

9 #!/usr/bin/gvpr-cf # # Remove nodes having between2 andN edges writing their names # to the file reports/noise_projects.txt. # The removal reduces unwanted merges between shared commit and # fork clusters. # #N is specified as an argument with-a # gvpr-f denoise.gvpr-a5 #

BEGIN{ int nf = openF("reports/noise_projects.txt","w"); int noise_ceiling = ARGV[0]; }

N{ intd= degreeOf( $G, $); if (d > 1 && d <= noise_ceiling) { /* * Iterate through edges to sum the degrees of their nodes * If this equals the number of edges, then this clique is * disjoined and cannot join together other cliques. */ int degree_sum = 0; edge_t e; for (e = fstedge($); e; e = nxtedge(e, $)) degree_sum += degreeOf($G, opp(e, $)); if (degree_sum > d) { printf(nf,"%s\n", $.name); delete($G, $); } } } Listing 1: Final implementation of denoising algorithm

10 and also increasing the number of projects considered as clones by about double that amount, from 9 879 677 to 10 649 348.

4 Dataset Overview

The dataset is provided41 as two files identifying GitHub repositories using the login-name/project-name convention. The file deduplicate names con- tains 10 649 348 tab-separated records mapping a duplicated source project to a definitive target project. The file forks clones noise names is a 50 324 363 member superset of the source projects, containing also projects that were excluded from the mapping as noise. The files are to be used as follows. After selecting some projects for conducting an empirical software engineering study with GitHub projects, the first file should be used to map potentially duplicate projects into a set of definitive ones. Then, any remaining projects that appear in the second file should be removed as these are likely to be low-value projects with a high probability of undesirable duplication.

5 Duplication in Existing Datasets

As an example of use of our dataset, we deduplicated the Reaper dataset [31], which contains scores concerning seven software engineering practices for about 1.8 million (1 853 205) GitHub projects. The study has influenced various subsequent works [35, 6, 1, 8] through the provided recommenda- tions and filtering criteria for curating collected repositories. The authors have excluded deleted and forked projects, considering the latter as near duplicates. Around 30 thousand (30 095) duplicate projects were identified in the Reaper dataset using deduplicate names. The first ten components with the most recurrences involve the following ultimate parents and repetitions: torvalds/linux (2614), gatsbyjs/gatsby (545), boxen/our-boxen (229), back- drop/backdrop (121), publify/publify (110), boostorg/boost (109), - mirror/llvm (108), laravel/framework (98), universal-ctags/ctags (89), saas- book/hw3 rottenpotatoes (87). In addition, the deduplication of the 800 hand-picked projects used in the classifiers’ training and validation pro- cesses unveiled only nine duplicate instances in the organization dataset, one in the utility, and none in the validation. These include aspnet/Mvc

41https://doi.org/10.5281/zenodo.3653920

11 Table 1: Dataset Comparison

Dataset Metric CCFSC CDSC Number of repositories 10 649 348 116 265 607 Number of independent projects 2 470 126 63 829 733 Size of largest cluster 174 919 244 707 Average cluster size 4.3 1.8 Cluster size standard deviation 169 44 Reaper duplicates 30 095 80 079

(7), apache/flink (2), mozilla/bedrock (2), and /bitcoin (2) in the organization, and torvalds/linux (2) in the utility. Further investigation is required to measure any potential impact of the ten duplicate projects on the classification outcome. Nevertheless, researchers selecting projects from Reaper for their work can benefit from our dataset to filter out duplicate occurrences, to further improve the quality of selected projects and avoid the problems outlined in Section 1.

6 Evaluation

We evaluated this dataset, which was constructed by identifying connected components based on forks and shared commits (CCFSC), through a quan- titative and qualitative comparison with a similar dataset constructed using community detection of shared commits (CDSC) [30]. An overview of the basic characteristics of the two datasets appears in Table 1. The two datasets share a substantial overlap both in terms of source projects (8 157 317) and in terms of cluster leaders (5 513 580). On the other hand, it is clear that CDSC is considerably more comprehensive than CCFSC in order of magni- tude, covering more repositories. An important factor in its favor is that it covers other forges apart from GitHub, and therefore its population is a su- perset of CCFSC’s. However, if one also considers the projects that CCFSC considers as noise (personal projects or projects with conflicting affiliations), the overlap swells to 40 338 421, covering about a third of the total. Fur- thermore, the fact that the increase in the Reaper dataset duplication in the CDSC dataset is only about double that of the CCFSC dataset indicates that the increased coverage of CCFSC may not be relevant for some empir- ical software engineering studies. These factors validate to some extent the

12 dataset’s composition. To get a better understanding of where and how the two datasets vary, we also performed a qualitative evaluation. For this we selected a subgraph induced by the 1000 projects with the highest geometric mean score, and visualized the common and non-common elements of the 431 clusters that contained different nodes.42 In 301 cases the clusters shared at least one common element. The patterns we encountered mainly concern the follow- ing cases: CCFSC links more (and irrelevant) clusters compared to CDSC (e.g. FreeCodeCamp/FreeCodeCamp, gatsbyjs/gatsby, robbyrussell/oh-my- zsh); the converse happens (e.g. ); CCFSC clusters related projects that CDSC does not cluster (e.g. tgstation/tgstation, bitcoin/bitcoin); the converse happens (e.g. hdl qfs, t-s/blex); there is considerable agreement between the two (e.g. Homebrew/homebrew-core with afb/brew); there is considerable agreement but CDSC includes more related projects (e.g. asp- net/Mvc with h2h/Mvc). In general, we noticed that CDSC appears to be more precise at clustering than CCFSC, but worse at naming the clusters.

7 Related Work

In distributed version control and management platforms, such as GitHub, developers usually collaborate using the pull request develop- ment model [16, 12, 15, 17], according to which repositories are divided into base and forked [25]. This constitutes one of the perils of mining GitHub: a repository is not necessarily a project [25], with commits potentially differing between the associated repositories. Code duplication in GitHub was studied by Lopes et al. [27] through file- level and inter-project analysis of a 4.5 million corpus of non-forked projects. The overlap of files between projects, as given by the files’ token hashes, was computed for certain thresholds and programming languages. JavaScript prevails with 48% of projects having at least 50% of files duplicated in other projects, and 15% of projects being 100% duplicated. Project-level dupli- cation includes appropriations that could be addressed by Git submodules, abandoned derivative development, forks with additional non-source code content, and unorthodox uses of GitHub, such as unpushed changes. Code duplication can hamper the statistical reasoning in random selections of projects, and skew the conclusions of studies performed on them, because the observations (projects) are not independent, and diversity may be com- promised. For the converse problem of obtaining similar GitHub repositories

42Figure 34 and G33.

13 see the recent work by Phuong Nguyen and his colleagues [33] and the ref- erences therein. While it is common sense to select a sample that is representative of a population, the importance of diversity is often overlooked, yet as im- portant [4]. Especially in software engineering, where processes of empirical studies often depend on a large number of relevant context variables, general conclusions are difficult to extract [7]. According to Nagappan et al. [32], to provide a good sample coverage, selected projects should be diverse rather than similar to each other. Meanwhile, increasing the sample size does not necessarily increase generality when projects are not carefully selected. Markovtsev and Kant in their work regarding topic modeling of pub- lic repositories using names in source code [29], recognized that duplicate projects contain few original changes and may introduce noise into the over- all names distribution. To exclude them and accelerate the training time of the topic model, they applied Locality Sensitive Hashing [26] on the bag- of-words model. According to the analysis, duplicate repositories usually involve web sites, such as github.io, blogs and Linux-based firmwares, which align with our observations. A duplication issue was also identified by Irolla and Dey [23] in the Drebin dataset [5], which is often used to assess the performance of malware detectors [34, 18] and classifiers [19, 38]. Half of the samples in the dataset have other duplicate repackaged versions of the same sequence of opcode. Consequently, a major part of the testing set may also be found in the training, inflating the performance of the designed algorithms. Experiments on classification algorithms trained on the Drebin dataset by including and excluding duplicates suggested moderate to strong underrated inaccuracy, and variation in the performance of the algorithms. Similarly, Allamanis examined the adverse effects of code duplication in machine learning models of code [2]. By comparing models trained on duplicated and deduplicated code corpora, Allamanis concluded that per- formance metrics, from a user’s perspective, may be up to 100% inflated when duplicates are included. The issue mainly applies to code comple- tion [37, 28], type prediction [21, 36] and code summarization [24, 3], where models provide recommendations on new and unseen code.

8 Research and Improvement Ideas

The main purpose of the presented dataset is to improve the quality of GitHub project samples that are used to conduct empirical software en-

14 gineering studies. It would be interesting to see how such duplication af- fects published results by replicating existing studies after deduplicating the projects by means of this dataset. In addition, the dataset can be used for investigating the ecosystem of duplicated projects in terms of activ- ity, duplication methods (forks vs commit pushes), tree depth, currency, or trustworthiness. The dataset can be further improved by including projects from other forges and by applying more sophisticated cleaning algorithms.

Acknowledgements This work has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No. 825328. D. Spinellis created the dataset and its unit tests. Z. Kotti evaluated the dataset and researched related work. Both authors contributed equally to the paper’s writing. A. Mockus contributed the comparison dataset.

References

[1] Amritanshu Agrawal, Akond Rahman, Rahul Krishna, Alexander So- bran, and Tim Menzies. 2018. We Don’t Need Another Hero? The Impact of ”Heroes” on Software Development. In Proceedings of the 40th International Conference on Software Engineering: Software En- gineering in Practice (ICSE-SEIP ’18). Association for Computing Ma- chinery, New York, NY, USA, 245–253. ://doi.org/10.1145/ 3183519.3183549

[2] Miltiadis Allamanis. 2019. The Adverse Effects of Code Duplication in Machine Learning Models of Code. In Proceedings of the 2019 ACM SIGPLAN International Symposium on New Ideas, New Paradigms, and Reflections on Programming and Software (Onward! ’19). As- sociation for Computing Machinery, New York, NY, USA, 143–153. https://doi.org/10.1145/3359591.3359735

[3] Miltiadis Allamanis, Hao Peng, and Charles Sutton. 2016. A Convolu- tional Attention Network for Extreme Summarization of Source Code. In International Conference on Machine Learning (ICML ’16). 2091– 2100. https://arxiv.org/pdf/1602.03001.pdf

[4] Peter Allmark. 2004. Should Research Samples Reflect the Diversity

15 of the Population? Journal of medical ethics 30 (May 2004), 185–189. https://doi.org/10.1136/jme.2003.004374

[5] Daniel Arp, Michael Spreitzenbarth, Hugo Gascon, and Konrad Rieck. 2014. Drebin: Effective and Explainable Detection of Android Mal- ware in your Pocket. In Proceedings of the 21st Annual Network and Distributed System Security Symposium (NDSS ’14). The So- ciety. http://user.informatik.uni-goettingen.de/%7Ekrieck/ docs/2014-ndss.pdf

[6] Sebastian Baltes and Stephan Diehl. 2019. Usage and Attribution of Stack Overflow Code Snippets in GitHub Projects. Empirical Software Engineering 24, 3 (June 2019), 1259–1295. https://doi.org/10. 1007/s10664-018-9650-5

[7] Victor . Basili, Forrest Shull, and Filippo Lanubile. 1999. Building Knowledge through Families of Experiments. IEEE Trans. Softw. Eng. 25, 4 (July 1999), 456–473. https://doi.org/10.1109/32.799939

[8] John Businge, Moses Openja, Sarah Nadi, Engineer Bainomugisha, and Thorsten Berger. 2018. Clone-Based Variability Management in the An- droid Ecosystem. In Proceedings of the 2018 IEEE International Con- ference on Software Maintenance and Evolution (ICSME ’18). 625–634. https://doi.org/10.1109/ICSME.2018.00072

[9] Roberto de la Cruz and Jan-Ulrich Kreft. 2018. Geometric mean ex- tension for data sets with zeros. Available online https://arxiv.org/ abs/1806.06403. arXiv:stat.AP/1806.06403

[10] Emden R. Gansner and Stephen . North. 2000. An Open Graph Visualization System and its Applications to Software En- gineering. Software: Practice and Experience 30, 11 (2000), 1203–1233. https://doi.org/10.1002/1097-024X(200009)30: 11<1203::AID-SPE338>3.3.CO;2-E

[11] Georgios Gousios. 2013. The GHTorrent dataset and tool suite. In Pro- ceedings of the 10th Working Conference on Mining Software Reposito- ries (MSR ’13). IEEE Press, Piscataway, NJ, USA, 233–236. https: //doi.org/10.5555/2487085.2487132

[12] Georgios Gousios, Martin Pinzger, and Arie van Deursen. 2014. An Exploratory Study of the Pull-Based Software Development Model. In

16 Proceedings of the 36th International Conference on Software Engineer- ing (ICSE ’14). Association for Computing Machinery, New York, NY, USA, 345–355. https://doi.org/10.1145/2568225.2568260

[13] Georgios Gousios and Diomidis Spinellis. 2012. GHTorrent: Github’s Data from a Firehose. In 9th IEEE Working Conference on Mining Software Repositories (MSR), Michele Lanza, Massimiliano Di Penta, and Tao Xie (Eds.). IEEE, 12–21. https://doi.org/10.1109/MSR. 2012.6224294

[14] Georgios Gousios and Diomidis Spinellis. 2017. Mining Software En- gineering Data from GitHub. In Proceedings of the 39th International Conference on Software Engineering Companion (ICSE-C ’17). IEEE Press, Piscataway, NJ, USA, 501–502. https://doi.org/10.1109/ ICSE-C.2017.164 Technical Briefing.

[15] Georgios Gousios, Margaret-Anne Storey, and Alberto Bacchelli. 2016. Work Practices and Challenges in Pull-Based Development: The Con- tributor’s Perspective. In Proceedings of the 38th International Confer- ence on Software Engineering (ICSE ’16). ACM, 285–296. https: //doi.org/10.1145/2884781.2884826

[16] Georgios Gousios and Andy Zaidman. 2014. A Dataset for Pull-Based Development Research. In Proceedings of the 11th Working Conference on Mining Software Repositories (MSR ’14). Association for Comput- ing Machinery, New York, NY, USA, 368–371. https://doi.org/10. 1145/2597073.2597122

[17] Georgios Gousios, Andy Zaidman, Margaret-Anne Storey, and Arie van Deursen. 2015. Work Practices and Challenges in Pull-Based Develop- ment: The Integrator’s Perspective. In Proceedings of the 37th Interna- tional Conference on Software Engineering (ICSE ’15), Vol. 1. 358–368. https://doi.org/10.1109/ICSE.2015.55

[18] Kathrin Grosse, Praveen Manoharan, Nicolas Papernot, Michael Backes, and Patrick D. McDaniel. 2017. On the (Statistical) Detec- tion of Adversarial Examples. ArXiv abs/1702.06280 (2017).

[19] Kathrin Grosse, Nicolas Papernot, Praveen Manoharan, Michael Backes, and Patrick D. McDaniel. 2016. Adversarial Perturbations Against Deep Neural Networks for Malware Classification. CoRR abs/1606.04435 (2016). http://arxiv.org/abs/1606.04435

17 [20] Elsayed AE Habib. 2012. Geometric Mean for Negative and Zero Values. International Journal of Research and Reviews in Applied Sciences 11, 3 (2012), 419–32.

[21] Vincent J. Hellendoorn, Christian Bird, Earl T. Barr, and Miltiadis Allamanis. 2018. Deep Learning Type Inference. In Proceedings of the 2018 26th ACM Joint Meeting on European Software Engineering Con- ference and Symposium on the Foundations of Software Engineering (ESEC/FSE ’18). Association for Computing Machinery, New York, NY, USA, 152–162. https://doi.org/10.1145/3236024.3236051

[22] Darrel C Ince, Leslie Hatton, and John Graham-Cumming. 2012. The Case for Open Computer Programs. Nature 482, 7386 (2012), 485–488.

[23] Paul Irolla and Alexandre Dey. 2018. The Duplication Issue within the Drebin Dataset. Journal of Computer Virology and Hacking Tech- niques 14, 3 (01 Aug. 2018), 245–249. https://doi.org/10.1007/ s11416-018-0316-z

[24] Srinivasan Iyer, Ioannis Konstas, Alvin Cheung, and Luke Zettle- moyer. 2016. Summarizing Source Code using a Neural Attention Model. In Proceedings of the 54th Annual Meeting of the Associa- tion for Computational Linguistics (Volume 1: Long Papers). Asso- ciation for Computational Linguistics, Berlin, Germany, 2073–2083. https://doi.org/10.18653/v1/P16-1195

[25] Eirini Kalliamvakou, Georgios Gousios, Kelly Blincoe, Leif Singer, Daniel M. German, and Daniela Damian. 2016. An In-Depth Study of the Promises and Perils of mining GitHub. Empirical Software Engi- neering 21, 5 (01 Oct. 2016), 2035–2071. https://doi.org/10.1007/ s10664-015-9393-5

[26] Jure Leskovec, Anand Rajaraman, and Jeff Ullman. 2020. Chapter 3. Finding Similar Items. Cambridge University Press, New York, NY, USA. http://infolab.stanford.edu/~ullman/mmds/book0n.pdf [27] Cristina V. Lopes, Petr Maj, Pedro Martins, Vaibhav Saini, Di Yang, Jakub Zitny, Hitesh Sajnani, and Jan Vitek. 2017. D´ej`aVu: A Map of Code Duplicates on GitHub. Proc. ACM Program. Lang. 1, OOPSLA, Article Article 84 (Oct. 2017), 28 pages. https://doi.org/10.1145/ 3133908

18 [28] Chris J. Maddison and Daniel Tarlow. 2014. Structured Generative Models of Natural Source Code. In Proceedings of the 31st International Conference on International Conference on Machine Learning - Volume 32 (ICML ’14). JMLR.org, 649–657.

[29] Vadim Markovtsev and Eiso Kant. 2017. Topic Modeling of Pub- lic Repositories at Scale using Names in Source Code. CoRR abs/1704.00135 (2017). arXiv:1704.00135 http://arxiv.org/abs/ 1704.00135

[30] Audris Mockus, Zoe Kotti, Diomidis Spinellis, and Gabriel Dusing. 2020. A Complete Set of Related Git Repositories Identified via Com- munity Detection Approaches Based on Shared Commits. In 17th In- ternational Conference on Mining Software Repositories (MSR ’20). Association for Computing Machinery, New York, NY, USA. https: //doi.org/10.1145/3379597.3387499

[31] Nuthan Munaiah, Steven Kroh, Craig Cabrey, and Meiyappan Nagap- pan. 2017. Curating GitHub for Engineered Software Projects. Em- pirical Software Engineering 22, 6 (01 Dec 2017), 3219–3253. https: //doi.org/10.1007/s10664-017-9512-6

[32] Meiyappan Nagappan, Thomas Zimmermann, and Christian Bird. 2013. Diversity in Software Engineering Research. In Proceedings of the 2013 9th Joint Meeting on Foundations of Software Engineering (ESEC/FSE ’13). Association for Computing Machinery, New York, NY, USA, 466–476. https://doi.org/10.1145/2491411.2491415

[33] Phuong T. Nguyen, Juri Di Rocco, Riccardo Rubei, and Davide Di Ruscio. 2020. An automated approach to assess the similarity of GitHub repositories. Software Quality Journal (Feb. 2020). https://doi.org/ 10.1007/s11219-019-09483-0

[34] Kexin Pei, Yinzhi Cao, Junfeng Yang, and Suman Jana. 2017. Deep- Xplore: Automated Whitebox Testing of Deep Learning Systems. In Proceedings of the 26th Symposium on Operating Systems Principles (SOSP ’17). Association for Computing Machinery, New York, NY, USA, 1–18. https://doi.org/10.1145/3132747.3132785

[35] Akond Rahman, Chris Parnin, and Laurie Williams. 2019. The Seven Sins: Security Smells in Infrastructure as Code Scripts. In Proceedings of the 41st International Conference on Software Engineering (ICSE

19 ’19). IEEE Press, 164–175. https://doi.org/10.1109/ICSE.2019. 00033

[36] Veselin Raychev, Martin Vechev, and Andreas Krause. 2015. Predicting Program Properties from ”Big Code”. In Proceedings of the 42nd An- nual ACM SIGPLAN-SIGACT Symposium on Principles of Program- ming Languages (POPL ’15). Association for Computing Machinery, New York, NY, USA, 111–124. https://doi.org/10.1145/2676726. 2677009

[37] Veselin Raychev, Martin Vechev, and Eran Yahav. 2014. Code Com- pletion with Statistical Language Models. In Proceedings of the 35th ACM SIGPLAN Conference on Design and Implementation (PLDI ’14). Association for Computing Machinery, New York, NY, USA, 419–428. https://doi.org/10.1145/2594291. 2594321

[38] Marcos Sebasti´an,Richard Rivera, Platon Kotzias, and Juan Caballero. 2016. AVclass: A Tool for Massive Malware Labeling. In Research in Attacks, Intrusions, and Defenses, Fabian Monrose, Marc Dacier, Gre- gory Blanc, and Joaquin Garcia-Alfaro (Eds.). Springer International Publishing, Cham, 230–253.

[39] Diomidis Spinellis, Zoe Kotti, and Audris Mockus. 2020. A Dataset for GitHub Repository Deduplication: Extended Description. https: //doi.org/10.5281/zenodo.3740595

A Appendix: Key SQL Queries and Representa- tive Graphs

Listing 2: SQL query for deriving the table all project mean metric -- Mean metric of each project create table forkproj.all_project_mean_metricAS select project_id, -- Geometric mean of(value+ 0.001)^5 -- See delta.py for the calculation of 0.001 (stars + .001) * (forks + .001) *

20 (commits + .001) * (issues + .001) * (recency + .001) * (pull_requests + .001) * -- Tie breaker witha value lower than 1, based on project_id -- Earlier projects score higher (.1 - project_id / 10. / (select (id) from projects)) as mean_metric from forkproj.all_project_metrics; create index on forkproj.all_project_mean_metric(project_id);

Listing 3: SQL query for deriving the table most recent commit -- The most recent commit for each project

CREATE TABLE forkproj.most_recent_commitAS select project_commits.project_id as project_id, max(created_at) as most_recent from commits inner join project_commits on project_commits.commit_id = commits.id group by project_commits.project_id; create unique index on forkproj.most_recent_commit(project_id);

Listing 4: SQL query for deriving the table project stars -- Number of stars per project create table forkproj.project_starsAS select repo_id as id, count(*) as stars from watchers group by repo_id; create index on forkproj.project_stars(id);

21 Listing 5: SQL query for deriving the table project forks -- Number of forks per project create table forkproj.project_forksAS select projects.forked_from as id, count(*) as forks from projects where forked_from is not null group by forked_from; create index on forkproj.project_forks(id);

Listing 6: SQL query for deriving the table project ncommits -- Number of commits per project create table forkproj.project_ncommitsAS select project_id as id, count(project_id) as commits from project_commits group by project_id; create index on forkproj.project_ncommits(id);

Listing 7: SQL query for deriving the table project issues -- Number of project issues per project create table forkproj.project_issuesAS select repo_id as id, count(*) as issues from issues group by repo_id; create index on forkproj.project_issues(id);

Listing 8: SQL query for deriving the table project pull requests -- Number of pull requests per project create table forkproj.project_pull_requestsAS select base_repo_id as id, count(*) as pull_requests from pull_requests group by base_repo_id; create index on forkproj.project_pull_requests(id);

22 Listing 9: SQL query for deriving the table projects sharing commits -- Projects sharing commits with linked to the project with -- the highest metric -- metric(p1)> metric(p2) create table forkproj.projects_sharing_commits as select distinct p1, p2 from( select project_commits.project_id as p2, first_value(project_commits.project_id) over( partition by commit_id -- Link all with the oldest project order by mean_metric desc) as p1 from project_commits inner join forkproj.all_project_mean_metric on all_project_mean_metric.project_id = project_commits.project_id ) as shared_commits where p1 != p2;

Listing 10: SQL query for deriving the table blacklisted projects -- Project ids of personal sites create table forkproj.blacklisted_projectsAS select id from projects where name like’%.github.io’ or substr(url, 30) in( ’illacceptanything/illacceptanything’, ’github/gitignore’, ’android/platform_build’,-- Links to Dagger and Simple Gallery ’Reese-D/my_emacs’,-- Links oh-my-zsh, flydeck, magit, ... ’destructuring/junas’,-- Links capistrano, janus, git-scm ’yosadchuk/git-scm.com’,-- Links git-scm with progit ’carsomyr/rbenv-’,-- Links ruby, jruy, pyenv ’expl0ratory/.vim’,-- Links oh-my-zsh, vim-airline, ... ’scrooloose/syntastic’,-- Links YouCompleteMe, ... ’jbarros/checkbook’,-- Links Laravel with Fuel ’bogner/llvm-zipper-prototype’,-- LLVM monorepo with 612k commits, joining swift, klee, LLVM ’TurboROM/MERGE_test’,-- Deleted; brings ’AdrianDC/aosp_development_sony8960_o_mr1’,-- Archived; join with otherC ’AdrianDC/aosp_development_sony8960_p’,-- See above ’LineageOS/android_packages_apps_WallpaperPicker’,--2 stars; joins LLVMw. Android

23 ’cmars/tools’,-- Links Docker with glide, vcs ’cmars/oo’,-- Links Docker with golang/* ’seuros/django’,-- Links Django with Rails ’phantom9999/folly’,-- Links diverse Google projects, zlib, ... ’chriswingler/Simulator’,-- Links diaspora with Arduino ’gfyoung/elasticsearch’,-- Links elasticsearch with Pandas ’Inuits/ensible’,-- Links ansible with Puppet ’chapuni/llvm-project’,-- Joins Swift and Klee ’dotnet-maestro-bot/Common’,-- Joins several aspnet projects ’dotnet-maestro-bot/AspNetCore’,-- See above ’lodejard/AllNetCore’,-- See above ’Vitallium/-qt5’,-- PhantomJS, Qt, WebKit ’derekhiggins/delorean-specs’,-- Joins several OpenStack projects ’kscherer/puppet-modules’,-- Join Puppet modules ’akeif/compucorp-task1-envs’,-- Join Puppet modules ’harikt/docs’,-- Joins several documentations ’saltlakeryan/archived-projects’,-- Docker-registry, microHTTPD, ... ’jenlampton/badcamp2014’,-- Backdrop with Drupal ’tokyo-jesus/university’,-- PYthon and clojure koans ’decaffeinate-examples/vimium’,-- Links vimium with hubot ’octocat/Spoon-Knife’);-- Sever hundredk forks for training create index on forkproj.blacklisted_projects(id);

Listing 11: SQL query for deriving the table acgroups -- Import connected components of all forked projects create table forkproj.acgroups ( cc_id BIGINT not null, project_id BIGINT not null, primary key(project_id, cc_id) );

\copy forkproj.acgroups from’reports/ac_groups.csv’ CSV; create unique index on forkproj.acgroups(project_id); create index on forkproj.acgroups(cc_id);

24 Listing 12: SQL query for deriving the table group size -- Number of group members per group create table forkproj.group_sizeAS select cc_id as id, count(cc_id) as n_group_members from forkproj.acgroups group by cc_id having count(*) > 1; create index on forkproj.group_size(id);

Listing 13: SQL query for deriving the table project group size -- Number of members in each project’s group create table forkproj.project_group_sizeAS select forkproj.acgroups.project_id as id, n_group_members from forkproj.acgroups left join forkproj.group_size on group_size.id = acgroups.cc_id; create index on forkproj.project_group_size(id);

Listing 14: SQL query for deriving the table project metrics -- Number of stars, forks, commits, group members per project with clones create table forkproj.project_metricsAS select forkproj.acgroups.project_id, forkproj.acgroups.cc_id as group_id, all_project_metrics.stars, all_project_metrics.forks, all_project_metrics.commits, all_project_metrics.issues, all_project_metrics.recency, all_project_metrics.pull_requests, n_group_members from forkproj.acgroups inner join forkproj.all_project_metrics on forkproj.all_project_metrics.project_id = forkproj.acgroups.project_id left join forkproj.project_group_size on forkproj.project_group_size.id = forkproj.acgroups.project_id;

25 create index on forkproj.project_metrics(project_id); create index on forkproj.project_metrics(group_id);

Listing 15: SQL query for deriving the table project mean metric -- Project mean metric for each project in the group create table forkproj.project_mean_metricAS select cc_id as group_id, acgroups.project_id, mean_metric from forkproj.acgroups inner join forkproj.all_project_mean_metric on forkproj.all_project_mean_metric.project_id = forkproj.acgroups.project_id; create index on forkproj.project_mean_metric(project_id);

Listing 16: SQL query for deriving the table highest mean in group -- Project for each group excelling in its metrics create table forkproj.highest_mean_in_groupAS select group_id, project_id from( select project_id, group_id, rank() over(partition by group_id order by mean_metric desc) as mean_rank from forkproj.project_mean_metric ) as ranked where mean_rank = 1; create index on forkproj.highest_mean_in_group(group_id);

Listing 17: SQL query for deriving the table deduplicate by mean -- Partner each project with the sibling with the highest mean value -- in the calculated metrics. -- Each source project is to be mapped to the corresponding target. create table forkproj.deduplicate_by_meanAS select project_metrics.project_id as source_id, highest_mean_in_group.project_id as target_id from forkproj.project_metrics left join forkproj.highest_mean_in_group on highest_mean_in_group .group_id = project_metrics.group_id where project_metrics.project_id != highest_mean_in_group.project_id;

26 create index on forkproj.deduplicate_by_mean(source_id);

gatsbyjs/gatsby-starter-blog FF:

dandenney/dandenney.com-gatsby gatsbyjs/gatsby lasergyro/ForeverWalk FF: FF: FF:

gatsbyjs/gatsby-starter-default PHPoole/Cecil FF: FF:

JasperRae/JasperRae.com ChopstixCS/kevinton-blog FF: FF:

holalatiger/holalatiger.github.io HubPress/hubpress.io FF: FF:

barryclark/jekyll-now rickrafiandi/rickrafiandi jeromelachaud/freelancer-theme mmistakes/minimal-mistakes FF: FF: FF: FF:

espoiryu/espoiryu.github.io NaturalWill/NaturalWill.github.io evankrocker/golfingphx tommy351/hexo gvwilson/teachtogether.tech anyiguo/anyiguo.github.io andykitchen/andykitchen.github.io C-Sec/c-sec.github.io FF: barryclark/jekyll-now FF: barryclark/jekyll-now FF: FF: FF: FF: FF: FF:

jekyll/jekyll wicky-info/wicky-info.github.io darmajalaya/darmodern OCA/website nolimits4web/Framework7 framework7io/Framework7 hexojs/hexo software-tools-in-/js-vs-ds poole/hyde johnotander/pixyll dartonotes/dartonotes.github.io SeraphRoy/SeraphRoy.github.io Gaohaoyang/gaohaoyang.github.io FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF:

videojs/video.js mojombo/jekyll daattali/beautiful-jekyll aelam/aelam.github.com ty4z2008/Qix plusjade/jekyll-bootstrap sdc-alibaba/SUI-Mobile gvwilson/shell ensime/ensime.github.io poole/lanyon ruier/ruier.github.io FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF:

zencoder/video-js Haacked/haacked.com swcarpentry/workshop-template ensime/ensime-server uareagay/uareagay.github.io FF: FF: FF: FF: FF:

fabaff/home-.io tonydeng/tonydeng.github.io imathis/octopress johnemau/johnemau.github.io nguyentj/cms eschulte/emacs24-starter-kit TaylanTatli/Moon FF: balloob/home-assistant.io FF: FF: FF: gayanvirajith/harmony FF: FF: FF:

home-assistant/home-assistant.github.io iissnan/hexo-theme-next SciRuby/sciruby.com gayanvirajith/harmony postlight/awesome-cms technomancy/emacs-starter-kit FF: FF: FF: FF: FF: FF:

balloob/home-assistant Acris/hexo-theme-next octopress/octopress ryanmjacobs/c FF: FF: iissnan/hexo-theme-next FF: FF:

home-assistant/home-assistant theme-next/hexo-theme-next FF: FF:

Figure 2: Links associated with popular projects

google/conscrypt FF:

AOSDP/android_external_conscrypt FF:

TurboROM/MERGE_test FF:

multi-os-engine/bouncycastle flutter/engine FF: FF:

LineageOS/android_packages_apps_WallpaperPicker FF:

AICP/frameworks_av CAF-Mirror/platform_ndk hundeva/-Launcher NamelessRom/android_frameworks_base codewalkerster/android_frameworks_av FF: FF: FF: FF: FF:

AdrianDC/aosp_development_sony8960_o awong-dev/ndk android-ndk/ndk AdrianDC/aosp_development_sony8960_o_mr1 AmirZaidi/Launcher3 LawnchairLauncher/Lawnchair-V1 LawnchairLauncher/Lawnchair android/platform_frameworks_base JDCTeam/android_frameworks_base CyanogenMod/android_frameworks_base PureKat/android_frameworks_av FF: FF: FF: FF: FF: FF: FF: Deletescape-Media/Lawnchair FF: FF: CyanogenMod/android_frameworks_base FF: KellyMahan/android_frameworks_base FF: Andromadus/android_frameworks_av

android/platform_build VanirAOSP/packages_apps_Camera2 syberia-project/platform_bionic LLUVIA-OS/android_system_sepolicy /android_bootable_recovery android/platform_system_core llvm-mirror/libcxxabi AdrianDC/aosp_development_sony8960_p OneExperience/bootable_recovery AOSIP/platform_packages_apps_Gallery2 AospExtended/platform_packages_inputmethods_LatinIME Deletescape-Media/Lawnchair linuxman94/android_frameworks_base_pa aosp-mirror/platform_frameworks_base codewalkerster/android_build FF: FF: CyanogenMod/android_packages_apps_Camera2 FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: ParanoidAndroid/android_frameworks_base FF: FF:

AgentFabulous/android_oreo_bacon CyanogenMod/android_packages_apps_Camera2 redmi2/android_bionic du-c/android_device_qcom_sepolicy CyanideL/android_frameworks_support bogner/llvm-zipper-prototype chapuni/llvm-project catapult-project/perfetto TeamWin/Team-Win-Recovery-Project MoKee/android_packages_apps_Gallery2 iillyyaa2033/hackerskeyboard rovo89/Xposed ResurrectionRemix/platform_manifest XOSP-Project/platform_manifest FF: FF: FF: FF: FF: CyanogenMod/android_frameworks_support FF: FF: FF: FF: FF: FF: klausw/hackerskeyboard FF: FF: FF:

Fabulous-Oreo/kernel_oneplus_msm8974 jgcaaprom/android_packages_apps_Snap moongato/platform_external_skia AOSParadox/android_device_qcom_sepolicy android/platform_frameworks_support apple/swift-lldb llvm-mirror/llvm llvm-mirror/ apple/swift-llvm apple/swift-clang klee/klee elegantos/external_perfetto SimpleMobileTools/Simple-Gallery klausw/hackerskeyboard AndroidRul3z/android Unpublished/android geeteshk/android CyanogenMod/android LineageOS/android FF: FF: CyanogenMod/android_packages_apps_Snap FF: android/platform_external_skia FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: pockethub/PocketHub FF: CyanogenMod/android FF: pockethub/PocketHub FF: uavana/android FF:

torvalds/linux MiCode/Xiaomi_Kernel_OpenSource square/dagger android/platform_external_skia SudaMod/android_device_qcom_sepolicy google/swift-lldb lowRISC/riscv-llvm-integration bloomberg/.bb pockethub/PocketHub pockethub/PocketHub nextcloud/android jonan/ForkHub pockethub/PocketHub FF: FF: FF: FF: FF: CyanogenMod/android_device_qcom_sepolicy FF: apple/swift-lldb FF: FF: FF: FF: FF: FF: FF:

raspberrypi/linux jasowang/net NitrogenMOD-RN3/android_kernel_xiaomi_msm8956 openedev/linux-openedev fail0verflow/ps4-linux google/dagger google/skia CAF-Mirror/platform_packages_apps_Calendar apple/swift intel/llvm v8/v8 owncloud/android FF: FF: FF: Amitava123/android_kernel_xiaomi_msm8956 FF: FF: torvalds/linux FF: square/dagger FF: FF: FF: FF: llvm-project/llvm-project-20170507 FF: FF:

adafruit/adafruit-raspberrypi-linux qemu/qemu syphyr/android_kernel_samsung_msm8976 u-boot/u-boot MoKee/android_packages_apps_Calendar bartchr808/swift google/swift SwiftAndroid/swift llvm/llvm-project v8/v8 FF: raspberrypi/linux FF: FF: LineageOS/android_kernel_samsung_msm8976 FF: FF: FF: /swift FF: apple/swift FF: apple/swift FF: FF:

notro/fbtft m000/panda intel/nemu eworm-de/wireguard SimpleMobileTools/Simple-Calendar tensorflow/swift FF: FF: moyix/panda FF: FF: FF: FF:

moyix/panda WireGuard/WireGuard FF: FF:

Figure 3: Links associated with popular projects

27 espes/xqemu FF: qemu/qemu

qemu/qemu FF:

jasowang/net m000/panda intel/nemu panda-re/panda FF: FF: moyix/panda FF: FF:

torvalds/linux linux-sunxi/linux-sunxi raspberrypi/linux aosp-mirror/kernel_common multipath-tcp/mptcp moyix/panda FF: FF: torvalds/linux FF: FF: FF: FF:

fail0verflow/ps4-linux rajatgupta1998/android_kernel_motorola_msm8937 Fabulous-Oreo/kernel_oneplus_msm8974 PureZAndroid/purez-kernel-bullhead N3xtBit/android_kernel_nextbit_msm8992 sultanqasim/android_kernel_motorola_msm8916 adafruit/adafruit-raspberrypi-linux Icoteq/linux-2.6-imx Canonical-kernel/Ubuntu-kernel Xilinx/linux-xlnx riscv/riscv-linux M1cha/android_kernel_motorola_msm MiCode/Xiaomi_Kernel_OpenSource FF: torvalds/linux FF: FF: FF: FF: FF: FF: raspberrypi/linux FF: FF: FF: FF: FF: MotorolaMobilityLLC/kernel-msm FF:

SlimRoms/android_external_f2fs-tools AgentFabulous/android_oreo_bacon zawzaww/kenel-lge-bullhead2 omnirom/android_kernel_sony_msm syphyr/android_kernel_samsung_msm8976 notro/fbtft u-boot/u-boot autotest/autotest MotorolaMobilityLLC/kernel-msm FF: FF: FF: FF: FF: LineageOS/android_kernel_samsung_msm8976 FF: FF: FF: FF:

nazandrake/android_external_f2fs-tools AospExtended/platform_frameworks_base android/platform_build Fabulous-Oreo/build_make ResurrectionRemix/platform_manifest omnirom/android sonyxperiadev/device-sony-sepolicy eworm-de/wireguard FF: FF: ishubhamsingh/platform_frameworks_base FF: FF: FF: FF: FF: FF:

AdrianDC/aosp_development_sony8960_p android/platform_frameworks_base linuxman94/android_frameworks_base_pa aosp-mirror/platform_frameworks_base CyanogenMod/android_frameworks_base AdrianDC/aosp_development_sony8960_staging AdrianDC/aosp_development_sony8960 AdrianDC/aosp_development_sony8960_o AdrianDC/aosp_development_sony8960_master geeteshk/android codewalkerster/android_build Unpublished/android LineageOS/android CyanogenMod/android AdrianDC/multirom_development_sony AOSPA/android_device_sony_sepolicy WireGuard/WireGuard FF: FF: FF: ParanoidAndroid/android_frameworks_base FF: FF: KellyMahan/android_frameworks_base FF: FF: FF: FF: FF: pockethub/PocketHub FF: FF: CyanogenMod/android FF: FF: uavana/android FF: FF: fxpdev/device-sony-sepolicy FF:

catapult-project/perfetto SimplixDot/platform_packages_apps_Camera2 SuperiorOS/android_packages_apps_Launcher3 Descendant/packages_apps_Launcher3 omnirom/android_bootable_recovery AOSIP/platform_system_core android/platform_system_core rovo89/Xposed AOSIP/platform_packages_apps_Gallery2 google/kati AospExtended/platform_packages_inputmethods_LatinIME Colt-AOSP/platform_external_toybox SELinuxProject/selinux pockethub/PocketHub pockethub/PocketHub jonan/ForkHub pockethub/PocketHub JellyKang/android_build nextcloud/android TeamWin/Team-Win-Recovery-Project AOSParadox/android_device_qcom_sepolicy FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: SlimRoms/android_build FF: FF: FF:

elegantos/external_perfetto CyanogenMod/android_packages_apps_Camera2 AmirZaidi/Launcher3 hundeva/Lean-Launcher LawnchairLauncher/Lawnchair-V1 CyanideL/android_frameworks_support MoKee/android_packages_apps_Gallery2 iillyyaa2033/hackerskeyboard landley/toybox redmi2/android_bionic owncloud/android SudaMod/android_device_qcom_sepolicy FF: FF: FF: FF: FF: FF: CyanogenMod/android_frameworks_support FF: FF: klausw/hackerskeyboard FF: FF: FF: FF: CyanogenMod/android_device_qcom_sepolicy

bloomberg/chromium.bb jgcaaprom/android_packages_apps_Snap Deletescape-Media/Lawnchair LawnchairLauncher/Lawnchair android/platform_frameworks_support SimpleMobileTools/Simple-Gallery klausw/hackerskeyboard moongato/platform_external_skia sd1998/Android CypherOS/packages_apps_Calendar sdhz151/platform_packages_apps_Calendar FF: FF: CyanogenMod/android_packages_apps_Snap FF: FF: Deletescape-Media/Lawnchair FF: FF: FF: FF: android/platform_external_skia FF: hmkcode/Android FF: FF:

v8/v8 square/dagger android/platform_external_skia hmkcode/Android MoKee/android_packages_apps_Calendar sunTzu1776/Lifelines FF: FF: FF: FF: FF: FF:

v8/v8 google/dagger google/skia SimpleMobileTools/Simple-Calendar Etar-Group/Etar-Calendar FF: FF: square/dagger FF: FF: FF:

Figure 4: Links associated with popular projects

MariaDB/server FF:

percona/percona-server mysql/mysql-server francoisrichard/mysql-5.6 percona/percona-xtrabackup percona/percona--cluster Tokutek/ft-index codership/mysql-wsrep -corporation/mariadb-columnstore-server tempesta-tech/mariadb XeLabs/ inbei/AliSQL facebook/mysql-8.0 laurynas-biveinis/percona-server gl-sergei/percona-xtrabackup ottok/mariadb /webscalesql-5.6 percona/tokudb-engine wwjiang007/AliSQL kbauskar/percona-xtradb-cluster percona/tokudb-engine natsys/mariadb_10.2 grooverdan/mariadb-server dropbox/percona-server Tokutek/ft-engine greenlion/warpsql-server borys-belinsky/percona-server RahulSisondia/mysql-server robgolebiowski/percona-server wwjiang007/mysql-server tplavcic/percona-server akopytov/cavium-mysql gl-sergei/percona-server MariaDB/mergetrees vlad-lesin/percona-server robgolebiowski/mysql-server deAtog/mysql-server RootYQ/mysql-server FF: FF: FF: facebook/mysql-5.6 FF: FF: FF: FF: FF: FF: MariaDB/server FF: percona/percona-server FF: alibaba/AliSQL FF: mysql/mysql-server FF: percona/percona-server FF: percona/percona-xtrabackup FF: MariaDB/server FF: FF: FF: alibaba/AliSQL FF: percona/percona-xtradb-cluster FF: FF: FF: MariaDB/server FF: percona/percona-server FF: FF: MariaDB/server FF: percona/percona-server FF: mysql/mysql-server FF: percona/percona-server FF: mysql/mysql-server FF: percona/percona-server FF: FF: percona/percona-server FF: FF: percona/percona-server FF: mysql/mysql-server FF: mysql/mysql-server FF: mysql/mysql-server

uber/percona-server EvgeniyPatlan/percona-server myblockchain/myblockchain facebook/mysql-5.6 hermanlee/mysql-5.6 XeLabs/tokudb-xtrabackup percona/PerconaFT Jun-Yuan/PerconaFT XeLabs/ft-index prohaska7/tokuft alibaba/AliSQL MariaDB/webscalesql-5.6 FF: percona/percona-server FF: percona/percona-server FF: mysql/mysql-server FF: FF: facebook/mysql-5.6 FF: percona/percona-xtrabackup FF: FF: percona/PerconaFT FF: percona/PerconaFT FF: percona/PerconaFT FF: FF: webscalesql/webscalesql-5.6

MySQLOnRocksDB/mysql-5.6 Terark/mysql-5.6 FF: facebook/mysql-5.6 FF: facebook/mysql-5.6

Figure 5: Links associated with mariadb

aespinosa/docker-jenkins FF:

cgswong/docker-jenkins FF: jenkinsci/docker

jenkinsci/docker FF: michaelneale/jenkins-ci.org-docker

rtyler/docker cloudbees/docker FF: jenkinsci/docker FF: gurjeet/docker

docker/docker moby/moby gurjeet/docker FF: FF: FF: docker/docker

tiborvass/docker aanand/docker MHBauer/swarm projectatomic/docker haircommander/storage Microsoft/docker coreos/docker boucher/docker docker/engine resin-os/balena dotcloud/docker FF: docker/docker FF: docker/docker FF: docker/swarm FF: docker/docker FF: FF: docker/docker FF: dotcloud/docker FF: SaiedKazemi/docker FF: moby/moby FF: FF:

tiborvass/cli docker/compose docker/swarm containers/storage FF: codegangsta/cli FF: FF: FF:

codegangsta/cli docker/cli AkihiroSuda/containerd docker/containerd FF: FF: FF: docker/containerd FF:

cmars/tools urfave/cli containerd/containerd FF: FF: FF:

juju/httprequest Masterminds/glide Masterminds/vcs FF: FF: FF:

cmars/oo FF:

golang/crypto julienschmidt/httprouter golang/net cloudflare/redoctober GeertJohan/go.rice go-macaroon-bakery/macaroon-bakery FF: FF: FF: FF: FF: FF:

cmars/httpsify fletavendor/crypto keybase/go-crypto buaazp/fasthttprouter FF: FF: FF: golang/crypto FF: julienschmidt/httprouter

miekg/dns xenolf/lego square/go-jose golang/sys FF: FF: FF: FF:

getlantern/lantern Dungo/dns h4ck3rm1k3/tools heschik/goimports MishaBykov/Go-on-Mobile golang/exp FF: FF: js-org/dns.js.org FF: dereuromark/tools FF: FF: FF:

banshengbushu/lantern getlantern/flashlight-build js-org/dns.js.org js-org/js.org golang/tools dereuromark/tools OlingCat/tour golang/mobile FF: Afaren/lantern FF: FF: FF: FF: FF: FF: Go-zh/tour FF:

getlantern/lantern-ui robertkrimen/otto fatih/set dereuromark/cakephp-tools golang/tour Go-zh/tour FF: FF: FF: FF: FF: FF:

/angular-seed dereuromark/cakephp-tinyauth dereuromark/cakephp-geo FF: FF: FF:

hkusu/onsenui-demo angular/angular-phonecat lorenzofox3/Smart-Table CrouseMatthew/selfibingo FF: FF: FF: FF:

OnsenUI/OnsenUI avalanche-canada/ac-web FF: FF:

Figure 6: Links associated with docker

MarkusH/django FF: django/django

django/django timgraham/django FF: FF: django/django

seuros/django django-nonrel/django-1.5 khchine5/django claudep/django endormi/django andrewgodwin/django django-nonrel/django pope1ni/django geodesign/django charettes/django orf/django ramiro/django FF: rails/rails FF: django/django FF: django/django FF: django/django FF: django/django FF: django/django FF: django/django FF: django/django FF: django/django FF: django/django FF: django/django FF: django/django

rails/rails tgxworld/rails django/django-old FF: FF: rails/rails FF:

yasslab/railsguides.jp amerov/rails rails/activestorage rorlakr/rails-guides kaspth/rails rails/docrails makandra/rails lifo/docrails GulajavaMinistudio/rails rafaelfranca/omg-rails cjolly/rails docker-library/rails rails/actioncable basecamp/rails github/rails rails/activejob bogdanvlviv/rails yhirano55/rails arunagw/rails Shopify/rails prathamesh-sonpatki/rails amatsuda/rails gramos/docrails RORLabGuides/docrails pascalbetz/rails square/rails maclover7/rails sikachu/rails jeremy/rails railsfrance/docrails mechanicles/rails schneems/rails rafaelsales/rails FF: rails/docrails FF: rails/rails FF: FF: rails/rails FF: rails/rails FF: FF: rails/rails FF: FF: rails/rails FF: rails/rails FF: rails/rails FF: FF: FF: rails/rails FF: rails/rails FF: FF: rails/rails FF: rails/rails FF: rails/rails FF: rails/rails FF: rails/rails FF: rails/rails FF: rails/docrails FF: lifo/docrails FF: rails/rails FF: rails/rails FF: rails/rails FF: rails/rails FF: rails/rails FF: rails/docrails FF: rails/rails FF: rails/rails FF: rails/rails

rails/arel rails/actiontext rails/actionmailbox FF: brynary/arel FF: FF:

kobaltz/actiontext FF: rails/actiontext

Figure 7: Links associated with django-rails

28 boostorg/date_time FF:

boostorg/spirit boostorg/geometry boostorg/build boostorg/python FF: FF: FF: FF:

boostorg/boost boostorg/thread boostorg/math boostorg/test boostorg/graph boostorg/config boostorg/serialization boostorg/filesystem boostorg/intrusive boostorg/type_traits boostorg/container boostorg/regex boostorg/range boostorg/asio boostorg/gil boostorg/odeint boostorg/fusion boostorg/context FF: harr999y/boost FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF:

Batname/boost p8499/boost-type_traits headmyshoulder/odeint-v2 FF: boostorg/boost FF: boostorg/type_traits FF:

phantom9999/folly boostorg/smart_ptr FF: facebook/folly FF:

openssl/openssl google/googletest lz4/lz4 facebook/folly jemalloc/jemalloc libevent/libevent yangacer/Libevent Prcuvu/weasel madler/zlib nmathewson/Libevent fuchsia-mirror/third_party-gflags google/ google/double-conversion FF: FF: FF: Cyan4973/lz4 FF: FF: FF: nmathewson/Libevent FF: nmathewson/Libevent FF: rime/weasel FF: FF: FF: FF: FF:

freezing/algorithms unknownbrackets/maxcso jaypy-h/fblualib cfpp2p/transmission ellzey/libevhtp fuchsia-mirror/third_party-glog BYVoid/OpenCC lotem/librime rime/weasel AOSPA/android_external_zlib Dead2/zlib-ng gflags/gflags FF: FF: FF: facebookarchive/fblualib FF: wereHamster/transmission FF: FF: FF: FF: FF: FF: FF: FF:

google/benchmark libuv/libuv urbit/urbit google/zopfli facebook/fbthrift transmission/transmission google/glog chenhunghan/squirrel-tw rime/librime LineageOS/android_external_zlib FF: FF: FF: FF: FF: FF: FF: FF: rime/squirrel FF: FF:

philipcmonk/urbit google/re2 rime/squirrel CarbonBeta/android_external_zlib FF: urbit/urbit FF: FF: FF: CarbonROM/android_external_zlib

urbit/arvo android/platform_external_libpng FF: FF:

SyNtheticNightmar3/platform_external_libpng FF:

glennrp/libpng FF:

Figure 8: Links associated with Google-zlib

weareleka/moti FF:

bugobliterator/BUAGI sudar/Arduino-Makefile FF: FF:

arduino/Arduino weareleka/Arduino-Makefile FF: FF: sudar/Arduino-Makefile

chriswingler/Simulator esp8266/Arduino tbowmo/Arduino ms-iot/Arduino energia/Energia purel81/Arduino me-no-dev/Arduino chipKIT32/chipKIT32-MAX robertinant/EnergiaNG Xmegaduino/Xmegaduino d-a-v/Arduino arduino-org/Arduino cmaglie/Arduino facchinm/Arduino FF: FF: FF: mysensors/Arduino FF: arduino/Arduino FF: arduino/Arduino FF: arduino/Arduino FF: esp8266/Arduino FF: FF: arduino/Arduino FF: arduino/Arduino FF: arduino/Arduino FF: FF: arduino/Arduino FF: arduino/Arduino

diaspora/diaspora AnalyticalGraphicsInc/cesium HabitRPG/habitrpg mumble-voip/mumble FarmBot/farmbot-web-app sparkfun/3D_Models josipbudzaki/Farmbot-Web-App nebadon2025/opensimulator HabitRPG/habitrpg-shared ft-/arribasim-dev tobozo/Arduino mysensors/MySensors mysensors/Arduino firmata/arduino souliss/souliss TMRh20/RF24 maniacbug/RF24 FF: FF: FF: FF: FF: FF: FF: FarmBot/farmbot-web-app FF: FF: FF: FF: esp8266/Arduino FF: FF: FF: FF: FF: FF:

UpshiftNetwork/upshift.network candango/diaspora joindiaspora/joindiaspora SuperTux88/diaspora TerriaJS/cesium camptocamp/cesium HabitRPG/habitica lefnire/habitrpg mkrautz/mumble RickCarlino/farmbot-web-app FarmBot/farmbot-web- opensim/opensim diva/diva-distribution aurora-sim/Aurora-Sim marceloaqno/MySensors firmata/ConfigurableFirmata LowPowerLab/RFM69 nRF24/RF24 FF: FF: diaspora/diaspora FF: diaspora/diaspora FF: diaspora/diaspora FF: AnalyticalGraphicsInc/cesium FF: AnalyticalGraphicsInc/cesium FF: FF: FF: mumble-voip/mumble FF: FarmBot/farmbot-web-app FF: FF: FF: FF: FF: mysensors/MySensors FF: FF: FF:

FarmBot/farmbot-js FF:

FarmBot/farmbot-web-frontend FF:

Figure 9: Links associated with Diaspora-Arduino

elastic/elasticsearch-lang-python FF:

elastic/elasticsearch spinscale/elasticsearch polyfractal/elasticsearch elastic/elasticsearch-lang-python nknize/elasticsearch FF: FF: elastic/elasticsearch FF: elastic/elasticsearch FF: FF: elastic/elasticsearch

gfyoung/elasticsearch elasticsearch-cn/elasticsearch crate/elasticsearch ElasticsearchClub/elasticsearch rahul1193/elasticsearch oliver006/elasticsearch brandonkearby/elasticsearch wwjiang007/elasticsearch elastic/elasticsearch-mapper-attachments autumnbz/elasticsearch markharwood/elasticsearch Microsoft/elasticsearch with-git/elasticsearch elastic/elasticsearch fabric8io/elasticsearch-cloud- Asone/elasticsearch nik9000/elasticsearch martijnvg/elasticsearch elastic/elasticsearch-cloud-aws elastic/elasticsearch-cloud-aws elastic/elasticsearch-analysis-kuromoji jtibshirani/elasticsearch elastic/elasticsearch-cloud-azure s1monw/elasticsearch elastic/elasticsearch-analysis-icu elastic/elasticsearch-analysis-kuromoji elastic/elasticsearch-cloud-azure elastic/elasticsearch-analysis-phonetic elastic/elasticsearch-analysis-icu dadoonet/elasticsearch elastic/elasticsearch-lang-javascript elastic/elasticsearch-analysis-smartcn elastic/elasticsearch-lang-javascript elastic/elasticsearch-analysis-phonetic elastic/elasticsearch-analysis-stempel elastic/elasticsearch-cloud-gce abeyad/elasticsearch FF: elastic/elasticsearch FF: elastic/elasticsearch FF: elastic/elasticsearch FF: elastic/elasticsearch FF: elastic/elasticsearch FF: dockerfile/elasticsearch FF: powered/elasticsearch FF: elastic/elasticsearch FF: FF: elastic/elasticsearch FF: elastic/elasticsearch FF: elastic/elasticsearch FF: FF: FF: FF: elastic/elasticsearch FF: elastic/elasticsearch FF: elastic/elasticsearch FF: FF: FF: FF: elastic/elasticsearch FF: FF: elastic/elasticsearch FF: FF: FF: FF: FF: FF: elastic/elasticsearch FF: FF: FF: FF: FF: FF: FF: elastic/elasticsearch

pydata/pandas-datareader dockerfile/elasticsearch elastic/elasticsearch-mapper-attachments elastic/elasticsearch-cloud-gce FF: FF: FF: FF:

gfyoung/scipy rgkimball/pandas-datareader FF: scipy/scipy FF: pydata/pandas-datareader

scipy/scipy tylerjereddy/scipy FF: FF: scipy/scipy

rgommers/scipy pv/scipy-work ilayn/scipy huaxz1986/scipy andyfaff/scipy FF: scipy/scipy FF: scipy/scipy FF: scipy/scipy FF: scipy/scipy FF: scipy/scipy

Figure 10: Links associated with Elastic-Pandas

ngbrown/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped

DefinitelyTyped/DefinitelyTyped DefinitelyTyped/DefinitelyTyped RyanCavanaugh/DefinitelyTyped vbortone/DefinitelyTyped simonxca/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped

OpenMaths/DefinitelyTyped Asana/DefinitelyTyped riccardomurri/TissueMAPS grant/DefinitelyTyped andy-ms/DefinitelyTyped vvakame/DefinitelyTyped leonard-thieu/DefinitelyTyped GlenCFL/DefinitelyTyped OfficeDev/DefinitelyTyped DevExpress/DefinitelyTyped csrakowski/DefinitelyTyped dcloudio/DefinitelyTyped CodeAnimal/DefinitelyTyped dolanmiu/DefinitelyTyped telerik/DefinitelyTyped chrismbarr/DefinitelyTyped rogierschouten/DefinitelyTyped Reactive-Extensions/RxJS TissueMAPS/TissueMAPS FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: TissueMAPS/TissueMAPS FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: ItQuasarOrg/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: DefinitelyTyped/DefinitelyTyped FF: FF:

mathjax/MathJax wikimedia/mathoid physikerwelt/MathJax TissueMAPS/TmLibrary TissueMAPS/TmDeploy TissueMAPS/TmServer TissueMAPS/TmClient TissueMAPS/JtLibrary motemen/dts-google-apps-script trxcllnt/RxJS jayphelps/RxJS TissueMAPS/JtModules FF: FF: agrbin/svgtex FF: mathjax/MathJax FF: FF: FF: FF: FF: FF: FF: ReactiveX/rxjs FF: Reactive-Extensions/RxJS FF:

jsmaniac/scribble-math dpvc/MathJax mojavelinux/mathoid wikimedia/service-template-node agrbin/svgtex physikerwelt/mathoid-server ReactiveX/rxjs kwonoj/RxJS FF: soegaard/bracket FF: mathjax/MathJax FF: wikimedia/mathoid FF: FF: FF: agrbin/svgtex FF: FF: ReactiveX/rxjs

Khan/KaTeX ncbi/render-math kartotherian/kartotherian kartotherian/tilerator wikimedia/eventgate ReactiveX/rxjs-docs RxJS-CN/RxJS-Docs-CN cartant/rxjs GulajavaMinistudio/rxjs FF: FF: agrbin/svgtex FF: FF: FF: FF: FF: ReactiveX/rxjs FF: ReactiveX/rxjs FF: ReactiveX/rxjs

KaTeX/KaTeX mapbox/abaculus mojodna/tilelive-tmsource FF: FF: FF:

Figure 11: Links associated with Definitely-Typed-RxJS

blueboxgroup/ansible FF: ansible/ansible

ansible/ansible emonty/ansible FF: FF: ansible/ansible

Inuits/ensible ansible/ansible-modules-core ansible/ansible-modules-extras mattclay/ansible willthames/ansible gundalow/ansible dagwieers/ansible Akasurde/ansible NetApp/ansible HewlettPackard/ansible cchurch/ansible modular-magician/ansible michael-dev2rights/ansible abadger/ansible kbreit/ansible VSChina/ansible privateip/ansible bcoca/ansible resmo/ansible dariko/ansible dataxu/ansible CumulusNetworks/ansible Gandi/ansible acozine/ansible avinetworks/ansible trondhindenes/ansible wimnat/ansible amenonsen/ansible agaffney/ansible amuraleedhar/ansible mpdehaan/ansible ujwalkomarla/ansible sivel/ansible-modules-extras jimi-c/ansible privateip/ansible-modules-core sivel/ansible-modules-core mscherer/ansible b3rn/ansible KMK-ONLINE/ansible FF: ansible/ansible FF: FF: FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible-modules-extras FF: ansible/ansible FF: ansible/ansible-modules-core FF: ansible/ansible-modules-core FF: ansible/ansible FF: ansible/ansible FF: ansible/ansible

puppetlabs/puppet VeritasOS/ansible-modules-extras wimnat/ansible-modules-extras emonty/ansible-modules-core FF: FF: ansible/ansible-modules-extras FF: ansible/ansible-modules-extras FF: ansible/ansible-modules-core

tdevelioglu/puppet puppetlabs/hiera-puppet joshcooper/puppet Sharpie/puppet cernops/puppet Yelp/puppet FF: puppetlabs/puppet FF: FF: puppetlabs/puppet FF: puppetlabs/puppet FF: puppetlabs/puppet FF: puppetlabs/puppet

theforeman/puppet-foreman puppetlabs/hiera FF: FF:

Figure 12: Links associated with Ansible-Puppet

zackw/phantomjs FF: ariya/phantomjs

ariya/phantomjs FF:

Vitallium/phantomjs-qt5 Vitallium/phantomjs r3b/phantomjs bprodoehl/phantomjs neraliu/tainted-phantomjs markhu/phantomjs FF: FF: ariya/phantomjs FF: ariya/phantomjs FF: ariya/phantomjs FF: FF: ariya/phantomjs

kobolabs/qtwebkit -Technologies/qtbase qtproject/qtbase FF: FF: FF:

wtatarski/qtwebkit Vitallium/qtwebkit qtproject/qtwebkit qt/qtbase autodesk-forks/qtbase Broadsoft/qtbase meta-qt5/qtbase dlee-arc4/qt5.10_wallpaper_service mirror/qtbase Vitallium/qtbase FF: FF: qtproject/qtwebkit FF: FF: FF: qtproject/qtbase FF: qtproject/qtbase FF: FF: FF: FF: qtproject/qtbase

qt/qtwebkit Metrological/qtwebkit lpotter/qt5-emscripten deemru/qtbase FF: FF: qtproject/qtwebkit FF: FF: qt/qtbase

CTSRD-CHERI/qtwebkit FF: qt/qtwebkit

WebKit/webkit burg/timelapse FF: FF: WebKit/webkit

annulen/webkit WebPlatformForEmbedded/WPEWebKit haiku/webkit NativeScript/webkit mkawserm/webkit Metrological/WebKitForWayland Igalia/webkit mariospr/webkit WebKitNix/webkitnix Comcast/WebKitForWayland Gyuyoung/ewebkit WebKitForWayland/webkit bocoup/webkit ewebkit/webkit caiolima/webkit eseidel/webkit appcelerator/webkit uebquite/webkit-webcl ajklein/webkit alexgcastro/webkit paul99/webkit-mips emutavchi/WebKitForWayland ryumiel/webkit-experimental szeged/TyGL xanlpz/webkit WPEWebKit/WPEWebKit-upstream adobe/webkit isis-project/WebKit FF: WebKit/webkit FF: WebKitForWayland/webkit FF: WebKit/webkit FF: WebKit/webkit FF: annulen/webkit FF: WebKitForWayland/webkit FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: Metrological/WebKitForWayland FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: Metrological/WebKitForWayland FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: WebKit/webkit FF: FF:

SRA-SiliconValley/webkit-webcl FF:

Figure 13: Links associated with qt

29 blueboxgroup/horizon FF: openstack/horizon

openstack/horizon FF:

openstack-packages/horizon ging/horizon LabAdvComp/tukey_portal cernops/horizon paypal/horizon piston/openstack-dashboard Mirantis/mos-horizon FF: FF: openstack/horizon FF: FF: redhat-openstack/horizon FF: openstack/horizon FF: FF:

derekhiggins/delorean-specs FF:

openstack-packages/keystone openstack-packages/ openstack-packages/cinder openstack-packages/swift openstack-packages/ironic FF: FF: FF: FF: FF:

openstack/keystone aselius/keystone_project_tags openstack/nova openstack/cinder openstack/swift openstack/ironic FF: FF: FF: FF: FF: FF:

haohcraft/keystone termie/keystonelight ging/keystone imsplitbit/reddwarf sapcc/nova starlingx-staging/stx-nova cloudbase/nova eayunstack/nova cernops/nova gooddata/openstack-nova Juniper/nova rackspace/reddwarf hpcloud/reddwarf turbonomic/nova usc-isi/nova Nexenta/cinder emc-openstack/vnx-direct-driver eayunstack/cinder sheepdog/cinder cloudbase/cinder ceph/swift matthewoliver/swift notmyname/swift sapcc/swift FF: openstack/keystone FF: FF: openstack/keystone FF: FF: openstack/nova FF: FF: openstack/nova FF: openstack/nova FF: openstack/nova FF: openstack/nova FF: openstack/nova FF: openstack/nova FF: rackspace/reddwarf FF: openstack/nova FF: openstack/nova FF: openstack/cinder FF: FF: openstack/cinder FF: openstack/cinder FF: openstack/cinder FF: openstack/swift FF: openstack/swift FF: openstack/swift FF: openstack/swift

keystonejs/keystone JedWatson/keystone larskarbo/key2 openstack/deb-openstack-trove hub-cap/reddwarf_lite FF: FF: FF: FF: FF:

twreporter/keystone Tathanen/keystone AcklenAvenue/keystone ratecity/keystone semeano/keystone gemscng/keystone openstack/trove denismakogon/trove FF: keystonejs/keystone FF: keystonejs/keystone FF: keystonejs/keystone FF: keystonejs/keystone FF: keystonejs/keystone FF: keystonejs/keystone FF: FF: openstack/trove

mirror-media/keystone eayunstack/trove mail2nsrajesh/python-troveclient hub-cap/python-reddwarfclient FF: twreporter/keystone FF: openstack/trove FF: FF:

openstack/python-troveclient FF:

Figure 14: Links associated with openstack

simp/puppetlabs- FF: puppetlabs/puppetlabs-java

puppetlabs/puppetlabs-java FF:

kscherer/puppet-modules FF:

puppetlabs/puppetlabs-apache puppetlabs/puppetlabs-stdlib CiscoSystems/puppet-nova egafford/puppet-cinder mail2nsrajesh/puppet-swift NewpTone/puppetlabs-openstack FF: FF: FF: cblument/puppetlabs-nova FF: FF: FF: bodepd/puppetlabs-openstack

akeif/compucorp-task1-envs camptocamp/puppet-apache_c2c simp/puppetlabs-apache hunner/puppetlabs-apache cegeka/puppet-apache fedora-openstack/openstack-puppet simp/puppetlabs-stdlib upadhyay-prashant/puppet-nova puppetlabs/puppetlabs-nova openstack/puppet-nova openstack/puppet-cinder openstack/puppet-cinder openstack/puppet-swift puppetlabs/puppetlabs-swift puppetlabs/puppetlabs-openstack stackforge/puppet-openstack FF: FF: FF: puppetlabs/puppetlabs-apache FF: puppetlabs/puppetlabs-apache FF: camptocamp/puppet-apache_c2c FF: FF: puppetlabs/puppetlabs-stdlib FF: openstack/puppet-nova FF: FF: FF: FF: FF: FF: FF: FF:

puppetlabs/puppetlabs-mysql puppetlabs/puppetlabs- puppetlabs/puppetlabs-concat sugarcrm/puppet-staging willdurand/puppet- attachmentgenie/attachmentgenie-ufw camptocamp/puppet-dovecot efroese/puppet-apache camptocamp/puppet-apache_c2c saz/puppet-ssh puppetlabs/puppetlabs-rsync saz/puppet-memcached puppetlabs/puppetlabs-xinetd openstack/puppet-nova CiscoSystems/puppet-openstack puppetlabs/puppetlabs-havana FF: FF: evolvingweb/puppet-apt FF: FF: voxpupuli/puppet-staging FF: FF: TheSpend/puppet-module-ufw FF: FF: camptocamp/puppet-apache_c2c FF: FF: FF: FF: FF: FF: FF: FF:

simp/puppetlabs-mysql evolvingweb/puppet-apt camptocamp/puppet-apt simp/puppetlabs-concat ripienaar/puppet-concat voxpupuli/puppet-staging nanliu/puppet-staging camptocamp/puppet-postgresql hizai/puppet-bind efroese/puppet-oae-example FF: puppetlabs/puppetlabs-mysql FF: FF: FF: puppetlabs/puppetlabs-concat FF: FF: FF: voxpupuli/puppet-staging FF: puppetlabs/puppetlabs-postgres FF: gnuine/puppet-bind FF:

zeph/mcollective-lnmp puppetlabs/puppetlabs-postgresql puppetlabs/puppet-postgresql underscorgan/puppetlabs-postgresql camptocamp/puppet-bind camptocamp/puppet-augeas camptocamp/puppet-selinux FF: FF: FF: FF: puppetlabs/puppetlabs-postgresql FF: FF: FF:

voxpupuli/puppet-nginx puppetlabs/puppetlabs-rabbitmq thias/puppet- simp/puppetlabs-postgresql FF: FF: FF: FF: puppetlabs/puppetlabs-postgresql

voxpupuli/puppet-nginx puppetlabs/puppetlabs-nginx voxpupuli/puppet-rabbitmq FF: FF: voxpupuli/puppet-nginx FF:

Figure 15: Links associated with puppet-modules

mattludwig/docs FF: ampproject/docs

ampproject/docs FF:

Zoramite/docs jungvonmatt/amp.dev FF: /docs FF: ampproject/docs

lsiden/docs Polymer/docs FF: cakephp/docs FF:

cakephp/docs toolkitchen/docs unbug/docs Polymer-Japan/polymer-project.org-docs-jp Polymer/polymer-library-docs Polymer-Japan/docs clia/docs FF: FF: Polymer/docs FF: Polymer/docs FF: FF: FF: Polymer/docs FF: Polymer/docs

harikt/docs josegonzalez/docs cakephp-tl/docs jeremyharris/docs cakephp-br/docs Polymer/polymer-project.org FF: auraphp/docs FF: cakephp/docs FF: cakephp/docs FF: divshot/docs FF: cakephp/docs FF:

laravel/docs laravelkr/docs directus/docs laravelhungary/docs setkyar/laravel-docs docker-library/docs divshot/docs FF: FF: laravel/docs FF: FF: laravel/docs FF: FF: FF:

allella/docs laravel-taiwan/docs Jeroen-G/docs artesaos/laravel-docs LaravelCollective/docs rhchristian/laravel-docs-pt-br laravel-bangladesh/docs LaravelArab/docs laravel-china/docs devtranslate/laravel-docs laravel-italia/docs sineld/docs Laragirl/docs diegofelix/docs golaravel/laravel5.1docs xpressengine/laravel-korean-docs wangsai/docs golaravel/laravel4docs atefBB/docs saiwang/docs thisiskaden/laravel4-docs-korean fadion/l4docs-sq mul14/laravel-docs arangodb/docs odoo/docker-docs infosiftr/docker-library-docs influxdata/docker-docs nats-io/docker-docs hashicorp/docker-docs FF: fuel/docs FF: laravel/docs FF: laravel/docs FF: laravel/docs FF: FF: laravel/docs FF: laravel/docs FF: FF: laravel/docs FF: laravel/docs FF: laravel/docs FF: laravel/docs FF: laravel/docs FF: laravel/docs FF: FF: FF: laravel-china/docs FF: laravel/docs FF: laravel/docs FF: laravel/docs FF: FF: laravel/docs FF: laravel/docs FF: docker-library/docs FF: docker-library/docs FF: docker-library/docs FF: docker-library/docs FF: docker-library/docs FF:

fuel/docs rumansaleem/docs FF: FF: tailwindcss/docs

NEKOGET/FuelPHP_docs_jp tailwindcss/docs FF: fuel/docs FF:

Figure 16: Links associated with docs

yangwuan55/ExoPlayer FF: google/ExoPlayer

google/ExoPlayer FF:

albertdaurell/AndroidPlayer rubensousa/exoplayer-amazon-port tresvecesseis/ExoPlayer castlabs/ExoPlayer ant-media/ExoPlayer-with-RTMP-and-FLV-seek WeiChungChang/ExoPlayer martinbonnin/ExoPlayer hishamMuneer/ExoPlayer fougere-mike/ExoPlayer michalliu/ExoPlayer ButterflyTV/ExoPlayer-with-RTMP-and-FLV-seek drhill/ExoPlayer vidklopcic/ExoPlayerRtsp keyboardr/ExoPlayer PaulWoitaschek/ExoPlayer-Extensions FF: FF: amzn/exoplayer-amazon-port FF: google/ExoPlayer FF: google/ExoPlayer FF: google/ExoPlayer FF: google/ExoPlayer FF: google/ExoPlayer FF: google/ExoPlayer FF: google/ExoPlayer FF: google/ExoPlayer FF: google/ExoPlayer FF: google/ExoPlayer FF: FF: google/ExoPlayer FF:

NanoHttpd/nanohttpd TooTallNate/Java-WebSocket amzn/exoplayer-amazon-port FF: FF: FF:

saltlakeryan/archived-projects elonen/nanohttpd LordFokas/nanohttpd Ubiquiti-UniFi/Java-WebSocket Davidiusdadi/Java-WebSocket 6wunderkinder/Java-WebSocket FF: FF: NanoHttpd/nanohttpd FF: NanoHttpd/nanohttpd FF: TooTallNate/Java-WebSocket FF: TooTallNate/Java-WebSocket FF: TooTallNate/Java-WebSocket

docker/docker-registry lcobucci/jwt dictation-toolbox/aenea chriscct7/VisualPHPUnit dotcloud/docker-registry tgrosinger/aenea-grammars ept/uploadr.py simianhacker/code-by-voice redsparklabs/spinuplabs-vagrant-dev-box FF: FF: FF: FF: VisualPHPUnit/VisualPHPUnit FF: FF: FF: FF: FF:

docker/distribution modi975/docker-distribution azurecr-test/distribution-southfricanorth calmofthestorm/aenea VisualPHPUnit/VisualPHPUnit VisualPHPUnit/VisualPHPUnit GoogleCloudPlatform/docker-registry-driver-gcs GoogleCloudPlatform/docker-registry deis/docker-registry FF: FF: FF: FF: dictation-toolbox/aenea FF: FF: FF: docker/docker-registry FF: FF: dotcloud/docker-registry

deis/distribution stevvooe/distribution dmcgowan/distribution lebauce/distribution BrianBland/distribution openshift/docker-distribution NVIDIA/docker-distribution jessfraz/distribution mikebrow/distribution FF: docker/distribution FF: docker/distribution FF: docker/distribution FF: docker/distribution FF: docker/distribution FF: FF: docker/distribution FF: docker/distribution FF: docker/distribution

dmage/docker-distribution FF:

Figure 17: Links associated with archived

AsociacionDrupalES/DrupalCampEs FF:

jenlampton/badcamp2014 pantheon-systems/drops-7 pressflow/7 FF: FF: FF:

backdrop/backdrop drupal/drupal ASU/webspark-drops-drupal7 kalamuna/playbox drupalprojects/drupal hfase01/drupal ccswbs/hjckrrh klausi/drupal NuCivic/dkan-drops-7 newpalmyra/newpalmyra.org isubit/luggage travelmassive/massiveplatform ucalgary/www.ucalgary BarnardArchives/digitalcollections.barnard.edu populist/panopoly-drops-7 commerceguys/kickstart-drops-7 GetDKAN/dkan-drops-7 UnivTexasArlington-Library/fablab omega8cc/7x 52North/waterinneu herbdool/civicrm-starterkit-drops-7 CBIIT/drupal cetav-ddw/cetav-2015 sas-isus/d7-upstream NYC-Camp/website pantheon-systems/soip-example UnivTexasArlington-Library/library FF: FF: FF: FF: FF: FF: drupal/drupal FF: FF: drupal/drupal FF: pantheon-systems/drops-7 FF: FF: FF: FF: FF: FF: pantheon-systems/drops-7 FF: pantheon-systems/drops-7 FF: pantheon-systems/drops-7 FF: FF: FF: FF: pantheon-systems/drops-7 FF: drupal/drupal FF: FF: FF: FF: FF:

backdrop-ops/backdrop-pantheon quicksketch/backdrop silkscreencms/silkscreen tag1consulting/pressflow6 pantheon-systems/drops-6 omega8cc/pressflow6 pantheon-systems/drops-8 Ayesh/drupal drupal-composer/drupal-core DrupalMexico/camp-gdl timplunkett/d8-layouts jsdrupal/nightwatch pressflow/6 MukurtuCMS/mukurtucms isubit/luggage_isu FF: FF: backdrop/backdrop FF: FF: pressflow/6 FF: FF: FF: FF: docker-library/drupal FF: RobLoach/core FF: FF: FF: FF: FF: FF:

DrupalCamp-NYC/dcnyc16 stevector/nerdologues-d8 gjacobs86/openarchcollab.org zebradog/westminster-drops-8 iribarne/broward-drupal docker-library/drupal drupal/core savaslabs/durham-civil-rights-map FF: FF: FF: codeforamerica/annual FF: pantheon-systems/drops-8 FF: FF: FF: FF:

digitalpulp/ballast codeforamerica/annual FF: FF:

Figure 18: Links associated with backgrop-drupal

gregmalcolm/python_koans FF:

tokyo-jesus/university LearnWithLlew/python_koans FundingCircle/python_code_academy protocol7/python-koans MeredithGodar/python_koans brainstorm/python_koans charlierguo/python_koans schodge/python_koans miclovich/python_koans sinlov/python_koans lpaulmp/python_koans twalsh/python_koans worldofprasanna/python_koans thefiveofspades/python_koans FF: FF: gregmalcolm/python_koans FF: FF: FF: FF: gregmalcolm/python_koans FF: gregmalcolm/python_koans FF: gregmalcolm/python_koans FF: gregmalcolm/python_koans FF: gregmalcolm/python_koans FF: FF: gregmalcolm/python_koans FF: gregmalcolm/python_koans FF: gregmalcolm/python_koans

functional-koans/clojure-koans FF:

ChrisMarinos/FSharpKoans functional-koans/clojure-koan-engine cynic/FSharpKoans rubbish/scala-koans clojurebridge-minneapolis/clojure-koans relevance/functional-koans AliSchlereth/clojure-koans magelle/clojure-koans tobsc/FSharpKoans-Solutions allentiak/clojure-koans matusfi/clojure-koans Alex-Keyes/clojure-koans gilroman/clojure-koans jasonblanchard/clojure-koans sevperez/clojure-koan-implementation jmiralles/clojure-koans DenimMazuki/denim-clojure-koans devmeyster/clojure-koans guinslym/Clojure_Koans_my_solutions yajneshvar/clojure ParikshithMohan/clojure-test rusty-software/clojure-koans stoltene2/clojure-koans Dwaynekj/clojure-koans gangmax/clojure-koans akrisanov/clojure-koans amirdt22/Clojure-Lunch-Sessions brannx/clojure-koans-ru jackfranklin/my-clojure-koans hicksca/clojure-koans FF: FF: FF: ChrisMarinos/FSharpKoans FF: FF: functional-koans/clojure-koans FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: functional-koans/clojure-koans FF: FF: FF: FF: functional-koans/clojure-koans FF: FF: functional-koans/clojure-koans FF: functional-koans/clojure-koans FF: FF: FF: functional-koans/clojure-koans FF: FF:

dickwall/functional-koans mrdavidlaing/functional-koans rprouse/FSharpKoans andrewchaa/FSharpKoans rratliff/clojure-koans FF: relevance/functional-koans FF: relevance/functional-koans FF: ChrisMarinos/FSharpKoans FF: ChrisMarinos/FSharpKoans FF: clojurebridge-minneapolis/clojure-koans

Figure 19: Links associated with python-clojure-koans

30 philc/vimium FF:

decaffeinate-examples/vimium mrmr1993/vimium smblott-github/vimium SANGHONGXV/vimium alexlic/vimium ganeshk905/vimium ForSpareParts/vimium FF: philc/vimium FF: philc/vimium FF: philc/vimium FF: gabrielecirulli/vimium FF: SadotCorts/vimium FF: mrk-han/vimium FF: ramiroaraujo/vimium

decaffeinate-examples/hubot FF: github/hubot

github/hubot nandub/hubot Maxprofs/hubot squareinc/hubot daenamkim/hubot timkinnane/hubot kosmosCosmos/hubot FF: FF: github/hubot FF: oscarg933/hubot FF: oscarg933/hubot FF: github/hubot FF: github/hubot FF: github/hubot

hubotio/hubot gaslight/wendell taskrabbit/hubot tas50/hubot lisb/hubot Mattlk13/Hubot dashkb/gabot vigetlabs/viget-hubot enterstudio/hubot Helabs/hubot eshamow/gutterbot biemedia/hubot Alliants/hubot JackCA/hubot Hall/hubot xplenty/hubert-the-bot castiron/gimli-chat matthutchinson/henshall Homefinder/hubot pricemaker/hubot inquus/hubot targetedvictory/hubot edisonnation/mcbot tzyiti/hubot siyelo/hubot Arthraim/merlin ghaithtroudi/hubot GoBoundless/hubot Flux7Labs/hubot FF: FF: FF: github/hubot FF: FF: github/hubot FF: FF: github/hubot FF: github/hubot FF: peter78/hubot FF: github/hubot FF: github/hubot FF: github/hubot FF: github/hubot FF: github/hubot FF: github/hubot FF: FF: FF: FF: github/hubot FF: github/hubot FF: github/hubot FF: github/hubot FF: FF: 2250918808/hubot FF: FF: FF: github/hubot FF: github/hubot FF: github/hubot

narayanaul/hubot qiibinn/hubot apcomplete/wendell chef-cookbooks/hubot tigarcia/gabot FF: sohailadnan/hubot FF: intellitrace/hubot FF: gaslight/wendell FF: FF: dashkb/gabot

Figure 20: Links associated with vimium-hubot

aspnet/ResponseCaching FF:

dotnet-maestro-bot/AspNetCore aspnet/AspNetCore FF: aspnet/AspNetCore FF:

aspnet/Security aspnet/Mvc aspnet/KestrelHttpServer aspnet/SignalR aspnet/Identity aspnet/Home aspnet/Razor aspnet/MusicStore aspnet/JavaScriptServices aspnet/Hosting aspnet/HttpAbstractions aspnet/Universe aspnet/Routing aspnet/IISIntegration aspnet/templating aspnet/Diagnostics aspnet/WebSockets aspnet/BasicMiddleware aspnet/DotNetTools aspnet/Localization aspnet/DataProtection aspnet/MetaPackages aspnet/StaticFiles aspnet/Session aspnet/CORS dotnet-maestro-bot/Common aspnet/Extensions FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: aspnet/Common FF:

lodejard/AllNetCore aspnet/AspNetCoreModule aspnet/Logging aspnet/DependencyInjection aspnet/Configuration aspnet/Caching aspnet/Common aspnet/FileSystem aspnet/Options aspnet/Testing aspnet/HttpClientFactory FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF:

dotnet/corefx dotnet/ dotnet/coreclr aspnet/EntityFramework dotnet/roslyn-analyzers natemcmaster/CommandLineUtils FF: FF: FF: FF: FF: FF: aspnet/Common

/corefx sdmaclea/coreclr aspnet/EntityFrameworkCore bricelam/entityframework DotNetAnalyzers/StyleCopAnalyzers FF: dotnet/corefx FF: dotnet/coreclr FF: FF: mono/entityframework FF:

wg/wrk aspnet/Microsoft.Data.Sqlite akrisiun/EntityFramework6 FF: FF: FF: bricelam/EntityFramework6

aspnet/Microsoft.Data.Sqlite aspnet/EntityFramework6 FF: FF:

Figure 21: Links associated with aspnet

torvalds/linux FF:

raspberrypi/linux TheOTO/Astral-Kernel Fabulous-Oreo/kernel_oneplus_msm8974 LightningZap/OnePlus6T-LZ Seraph08/android_kernel_nextbit_msm8992 endlessm/linux hardkernel/linux jasowang/net Canonical-kernel/Ubuntu-kernel NigelCunningham/tuxonice-kernel linux-sunxi/linux-sunxi analogdevicesinc/linux beagleboard/linux Xilinx/linux-xlnx lucastracq/android_kernel_motorola_msm8226 Icoteq/linux-2.6-imx multipath-tcp/mptcp lkl/linux riscv/riscv-linux openedev/linux-openedev google/ktsan bawaviki/beacon_land FF: FF: FF: FF: FF: FF: FF: torvalds/linux FF: FF: FF: svenkatr/linux FF: torvalds/linux FF: svenkatr/linux FF: FF: FF: LineageOS/android_kernel_motorola_msm8226 FF: FF: FF: torvalds/linux FF: FF: FF: FF:

zawzaww/kenel-lge-bullhead2 AgentFabulous/android_oreo_bacon sonyxperiadev/kernel omnirom/android_kernel_sony_msm AndropaX/android_device_xiaomi_libra qemu/qemu autotest/autotest autotest/autotest-client-tests MiCode/Xiaomi_Kernel_OpenSource sub77/android_device_samsung_matissewifi u-boot/u-boot mendersoftware/uboot-mender fedosis/android_device_xiaomi_land FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: zwliew/android_device_xiaomi_land

ResurrectionRemix/platform_manifest omnirom/android android/platform_build AospExtended/platform_frameworks_base Fabulous-Oreo/build_make sonyxperiadev/device-sony-sepolicy VanirAOSP/device_xiaomi_libra panda-re/panda intel/nemu riscv/riscv-qemu ColinIanKing/autotest-client-tests lucastracq/proprietary_vendor_motorola linux-sunxi/u-boot-sunxi BijiOnta/Test FF: FF: FF: FF: ishubhamsingh/platform_frameworks_base FF: FF: FF: FF: FF: FF: FF: FF: TheMuppets/proprietary_vendor_motorola FF: FF:

Unpublished/android geeteshk/android DOSP-Project/platform_build CyanogenMod/android AdrianDC/multirom_development_sony AdrianDC/aosp_development_sony8960_o AdrianDC/aosp_development_sony8960_staging AdrianDC/aosp_development_sony8960 lollipopi9000/android_frameworks_base lion0738/android_packages_apps_Settings android/platform_frameworks_base aosp-mirror/platform_frameworks_base ResurrectionRemix/android_frameworks_base crdroidandroid/android_frameworks_base SimpleAOSP/android_frameworks_base AdrianDC/aosp_development_sony8960_master AOSPA/android_device_sony_sepolicy AdrianDC/lineage_development_sonyaosp razorloves/proprietary_vendor_lge cevich/virt-test TheMuppets/proprietary_vendor_motorola ResurrectionRemix/android_vendor_resurrection FF: CyanogenMod/android FF: pockethub/PocketHub FF: FF: uavana/android FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: fxpdev/device-sony-sepolicy FF: FF: TheMuppets/proprietary_vendor_lge FF: autotest/virt-test FF: FF:

nextcloud/android pockethub/PocketHub jonan/ForkHub JellyKang/android_build OctaCode/android TeamWin/Team-Win-Recovery-Project VanirAOSP/packages_apps_Camera2 AOSIP/platform_packages_apps_Gallery2 omnirom/android_bootable_recovery khadas/android_packages_apps_Music ivanmeler/android_hardware_samsung ResurrectionRemix/Resurrection_packages_apps_Settings Team-OctOS/platform_frameworks_base SELinuxProject/selinux AOSParadox/android_device_qcom_sepolicy sonyxperiadev/device-sony-common TheMuppets/proprietary_vendor_lge autotest/virt-test FF: FF: FF: FF: SlimRoms/android_build FF: CyanogenMod/android FF: FF: CyanogenMod/android_packages_apps_Camera2 FF: FF: FF: FF: FF: FF: Octo-Kat/platform_frameworks_base FF: FF: FF: FF: FF:

owncloud/android redmi2/android_bionic amahi/android CyanogenMod/android_packages_apps_Camera2 MoKee/android_packages_apps_Gallery2 whyorean/packages_apps_SnapdragonMusic rpdroky/android_hardware_samsung Team-OctOS/platform_packages_apps_Tentacles SudaMod/android_device_qcom_sepolicy avocado-framework/avocado-vt FF: FF: FF: FF: FF: FF: FF: CyanogenMod/android_hardware_samsung FF: FF: CyanogenMod/android_device_qcom_sepolicy FF:

moongato/platform_external_skia jgcaaprom/android_packages_apps_Snap SimpleMobileTools/Simple-Gallery XPerience-AOSP-Lollipop/android_packages_apps_SnapdragonLauncher TheMuppets/proprietary_vendor_samsung AOKP/packages_apps_ROMControl Ancient-Rom/android_packages_apps_Calendar FF: android/platform_external_skia FF: CyanogenMod/android_packages_apps_Snap FF: FF: FF: FF: FF:

android/platform_external_skia square/dagger SlimRoms/packages_apps_SlimLauncher AmirZaidi/Launcher3 MoKee/android_packages_apps_Calendar FF: FF: FF: FF: FF:

google/skia google/dagger LawnchairLauncher/Lawnchair-V1 LawnchairLauncher/Lawnchair SimpleMobileTools/Simple-Calendar FF: FF: square/dagger FF: FF: Deletescape-Media/Lawnchair FF:

Deletescape-Media/Lawnchair FF:

Figure 22: Links associated with linux

robbyrussell/oh-my-zsh FF:

Reese-D/my_emacs anilanar/dotfiles expl0ratory/.vim sorin-ionescu/prezto iyingchi/dotfiles rykugur/oh-my-fish FF: FF: mathiasbynens/dotfiles FF: FF: FF: FF: tanob/oh-my-fish

flycheck/flycheck magit/magit phunculist/emacs-config bbatsov/projectile haskell/haskell-mode jwiegley/emacs-async OmniSharp/omnisharp-roslyn OmniSharp/omnisharp-server mathiasbynens/dotfiles tpope/vim-fugitive pangloss/vim-javascript scrooloose/syntastic benekastah/neomake bling/vim-airline Shougo/unite.vim powerline/fonts kodelint/prezto kanosaki/zpack tpope/vim-pathogen oh-my-fish/oh-my-fish FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: sorin-ionescu/prezto FF: FF: FF:

kevinjohnston/emacs-config kas2207/dotfiles emacs-helm/helm Yuki-Inoue/elpa anurse/dotfiles carlhuda/janus atancasis/dotfiles mwallasch/dotfiles drewsy1/Drew_Conf nikmartin/dotfiles xbudex/dot- Shini31/myenvironment jorrit-wehelp/dotvim guyhughes/dotFiles neomake/neomake vim-airline/vim-airline jupake/myvim zsh-users/zsh-syntax-highlighting zsh-users/zsh-completions sindresorhus/pure zombie-guru/vim-config FF: FF: FF: FF: FF: FF: FF: mathiasbynens/dotfiles FF: holman/dotfiles FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF:

overtone/emacs-live technomancy/leiningen baohaojun/ajoke jwiegley/use-package abo-abo/swiper DerAlbertCom/posh-git destructuring/junas skwp/dotfiles holman/dotfiles bhilburn/powerlevel9k Valloric/YouCompleteMe fatih/vim-go SirVer/ultisnips honza/vim-snippets magicmonty/-git-prompt yebrahim/dot_files VundleVim/Vundle.vim davidhalter/jedi-vim jamescostian/dotfiles jmatsu/myinit scrooloose/nerdtree FF: FF: FF: FF: FF: FF: dahlbyk/posh-git FF: carlhuda/janus FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF:

chrisbarrett/.emacs.d baohaojun/system-config dahlbyk/posh-git dstrctrng/rbenv destructuring/alpha_omega destructuring/paul dstrctrng/home wilhelmgoering/build VundleVim/Vundle.vim chriskempson/base16-shell tj/git-extras FF: FF: FF: FF: rbenv/rbenv FF: capistrano/capistrano FF: defunkt/hub FF: FF: FF: FF: FF:

syl20bnr/spacemacs purcell/emacs.d rbenv/rbenv capistrano/capistrano github/hub destructuring/gitscm-next debops/debops rosstimson/dotfiles FF: FF: FF: FF: FF: FF: github/gitscm-next FF: FF:

watkinsr/emacs.d carsomyr/rbenv-ubuntu pyenv/pyenv git/git-scm.com junegunn/fzf FF: purcell/emacs.d FF: FF: FF: FF:

hlissner/doom-emacs ruby/ruby /jruby yosadchuk/git-scm.com FF: FF: FF: FF: git/git-scm.com

docker-library/ruby graalvm/truffleruby progit/progit FF: FF: jruby/jruby FF:

Figure 23: Links associated with capistrano

laravel/framework FF:

v0idmp3/Project.No42 yiliaofan/framework illuminate/auth renekoch/framework imanghafoori1/framework FF: FF: laravel/framework FF: FF: laravel/framework FF: laravel/framework

laravel/laravel swoole/framework FF: FF:

jbarros/checkbook tyloo/tyloo slimkit/thinksns-plus nguyentranchung/laravel-vue-spa medz/phpwind slimkit/plus esbenp/larapi OneCodeMonkey/laravel_bbs zhiyicx/thinksns-plus tianyong90/willchat madewithlove/skeletor webshelf/framework boytrieunguoiyeu/circleci-demo-php-laravel koselig/koselig huanghua581/ticket Creepr/creepr-workbench laravue/laravue andrew13/Laravel-4-Bootstrap-Starter-Site c57fr/c57 CodeForAfrica/GreenAlert bryannielsen/Laravel4-Vagrant Paltry/Paltry rydurham/L4withSentry GianlucaCandiotti/laravue cartalyst/demo-data-grid davidsoderberg/MTGSearch phenix0221/php-pipeline-demo boomcms/boomcms engageinteractive/laravel diegofelix/battleroad janhenkgerritsen/codeception-laravel5-sample brunogaspar/laravel4-starter-kit xiaohuilam/laravel nguyen179son/nailStore brunogaspar/laravel-starter-kit matyhtf/framework FF: FF: FF: FF: cretueusebiu/laravel-vue-spa FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: laravel/laravel FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: laravel/laravel FF: FF: FF: FF: laravel/laravel FF: FF: FF:

fuel/core fuel/fuel thephpleague/skeleton cretueusebiu/laravel-vue-spa summerblue/larabbs CircleCI-Public/circleci-demo-php-laravel andrewelkins/Laravel-4-Bootstrap-Starter-Site rancher/pipeline-example-php FF: FF: FF: FF: FF: FF: FF: FF: CircleCI-Public/circleci-demo-php-laravel

paulipv/orm novius-os/fuelphp-core sleimanx2/plastic benfranke/gdax-php cerbero90/Transformer hexogen/kdtree FF: fuel/orm FF: fuel/core FF: FF: FF: FF:

fuel/orm FF:

Figure 24: Links associated with laravel-fuel

duedil-ltd/mesos-hadoop FF: amiorin/hadoop

mesos/hadoop amiorin/hadoop FF: FF: mesos/hadoop

berngp/hadoop airbnb/hadoop FF: apache/hadoop FF: brndnmtthws/hadoop

apache/hadoop redis-force/less-state-hdfs Altiscale/hadoop ymjam/hadoop simbadzina/hadoop-fcfs FF: FF: FF: apache/hadoop FF: apache/hadoop FF:

Intel-bigdata/SSM palantir/hadoop LantaoJin/hadoop steveloughran/hadoop littlezhou/SSM-1 Flipkart/hadoop kambatla/hadoop Intel-bigdata/HDL elek/hadoop ekoontz/hadoop-common wwjiang007/hadoop an3m0na/hadoop steveloughran/hadoop-trunk mapr/hadoop-common smallxiongxiong/hadoop acmurthy/hadoop drankye/hadoop dianping/hadoop intel-hadoop/hadoop Intel-bigdata/HAS ZanderXu/hadoop leftnoteasy/hadoop-1 odpi/hadoop aflyary/hadoop hunshenshi/hadoop ibmsoe/hadoop psarda/apache-hadoop eddyxu/hadoop-common VertiPub/hadoop-common FF: FF: apache/hadoop FF: dianping/hadoop FF: apache/hadoop FF: Intel-bigdata/SSM FF: apache/hadoop FF: FF: apache/hadoop FF: apache/hadoop FF: FF: apache/hadoop FF: apache/hadoop FF: FF: ekoontz/hadoop-common FF: FF: apache/hadoop FF: apache/hadoop FF: apache/hadoop FF: apache/hadoop FF: FF: apache/hadoop FF: apache/hadoop FF: apache/hadoop FF: apache/hadoop FF: apache/hadoop FF: apache/hadoop FF: FF: FF: ekoontz/hadoop-common

PHILO-HE/SSM yaohuan771634/ssm apache/hadoop-common griddynamics/yhadoop-common apache/hadoop-hdfs sidseth/h2-container-reuse octo47/hadoop-common aklochkovgd/hadoop-common cloudera/hadoop-common wso2/wso2-hadoop toddlipcon/hadoop ibmsoe/hadoop-common hopshadoop/hops criteo-forks/hadoop-common FF: Intel-bigdata/SSM FF: FF: FF: FF: FF: FF: ekoontz/hadoop-common FF: ekoontz/hadoop-common FF: ekoontz/hadoop-common FF: FF: FF: ekoontz/hadoop-common FF: FF: cloudera/hadoop-common

apache/hadoop- lalithsuresh/Scaling-HDFS-NameNode turn/hadoop-common berthoug/hops FF: FF: FF: cloudera/hadoop-common FF: hopshadoop/hops

Figure 25: Links associated with hadoop-ssm

31 YunaiV/eureka FF: Netflix/eureka

Netflix/eureka FF:

ReactiveX/RxJava Netflix/Hystrix Netflix/servo zhaowei2013/-template Netflix/karyon Netflix/EVCache miltonquranda/eureka Netflix/gradle-template robertjchristian/service-nucleus FF: FF: FF: FF: Netflix/gradle-template FF: FF: FF: Netflix/eureka FF: FF:

Netflix/curator Netflix/SimianArmy elandau/archaius Netflix/governator rberger/edda Netflix/Prana Netflix/frigga Netflix/PigPen akarnokd/RxJava Netflix/netflix-commons Netflix-Skunkworks/WSPerfLab hzsweers/RxJava Netflix/zuul Netflix/Priam Netflix/ribbon fengss/open-feign Netflix/astyanax chouuohc87/641ec7435398cc78d7da6e1ff3841878 soabase/exhibitor Netflix/denominator Netflix/suro Netflix/Turbine Netflix-Skunkworks/Numerus Netflix/recipes-rss Netflix/ReactiveLab benjchristensen/RxJava mesosphere/exhibitor ReactiveX/RxNetty Netflix/RxJava spring-cloud-samples/eureka FF: FF: FF: Netflix/archaius FF: FF: Netflix/edda FF: FF: FF: FF: ReactiveX/RxJava FF: FF: FF: ReactiveX/RxJava FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: ReactiveX/RxJava FF: mbabineau/exhibitor FF: FF: FF:

apache/curator Netflix/archaius Netflix/edda bazaarvoice/Priam arunagrawal84/Priam OpenFeign/feign Netflix/feign yyyar/gobetween soabase/exhibitor dcos/exhibitor Netflix/blitz4j Netflix/RxNetty Netflix/glisten spring-cloud-samples/configserver FF: FF: FF: FF: Netflix/Priam FF: Netflix/Priam FF: FF: FF: FF: FF: FF: FF: FF: FF:

Figure 26: Links associated with RcJava-Netflix

tnga/underscore-es FF:

jashkenas/underscore FF:

bestiejs/lodash documentcloud/underscore amdjs/underscore DenisHomich/underscorejs-RU dgreisen-cfpb/underscore learning/underscore fictional-tribble/lodash--lodash iissnan/underscore INGCRENGIFO/lodash adityavs/underscore kanso/underscore cjddcj/lodash kickstarter/underscore hackreactor/underscore jmatembu/underscore yoyoyohamapi/underscore miggame/lodash DIOGORA/lodash roninJosue/lodash lonelyhsu88/netdata-demo-1 younesfkihi/lodash wz-sansamilly/lodash xiandean/lodash jiweixia233/lodash wksmile/lodash randomsilo/underscore gordonmzhu/underscore shipci/underscore aleclarson/underscore wy1009/underscore SeregPie/underscore FF: FF: FF: jashkenas/underscore FF: FF: kanso/underscore FF: jashkenas/underscore FF: FF: FF: lodash/lodash FF: jashkenas/underscore FF: FF: lodash/lodash FF: jashkenas/underscore FF: jashkenas/underscore FF: jashkenas/underscore FF: jashkenas/underscore FF: lodash/lodash FF: lodash/lodash FF: lodash/lodash FF: FF: lodash/lodash FF: lodash/lodash FF: lodash/lodash FF: lodash/lodash FF: lodash/lodash FF: jashkenas/underscore FF: jashkenas/underscore FF: jashkenas/underscore FF: FF: FF: jashkenas/underscore

lodash/lodash cheeaun/lodash kanso/db kanso/less-precompiler kanso/duality kanso/node-couchapp lonelyhsu88/netdata-demo FF: FF: lodash/lodash FF: FF: FF: FF: FF:

JkVon/jk_lodash joyeecheung/lodash richelite/lodash flavioespinoza/lodash JkVon/lodash swarmbox/lodash lifeng-github/lodash ssimons1/lodash kanso/traditional-couchapp kanso/handlebars kanso/cookies FF: lodash/lodash FF: lodash/lodash FF: lodash/lodash FF: lodash/lodash FF: lodash/lodash FF: lodash/lodash FF: lodash/lodash FF: lodash/lodash FF: FF: FF:

Figure 27: Links associated with lodash-underscore

shakir-abdo/cdnjs FF: cdnjs/cdnjs

cdnjs/cdnjs extend1994/cdnjs sashberd/cdnjs sufuf3/cdnjs uniibu/cdnjs FF: FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs

bootcdn/cdnjs staticfile/static pvnr0082t/cdnjs getify/cdnjs maruilian11/cdnjs clairetsai818/cdnjs wushuyi/cdnjs Piicksarn/cdnjs hare1039/cdnjs victor-valencia/cdnjs kroman0/cdnjs holtkamp/cdnjs finch185277/cdnjs ralphchung/cdnjs qwe19272375/cdnjs joeyparrish/cdnjs lcd78706/cdnjs jbutz/cdnjs dmr-loggly/cdnjs jkingsman/cdnjs sympmarc/cdnjs Amomo/cdnjs sajochiu/cdnjs worseisbetter/cdnjs froala/cdnjs x09326/cdnjs terrymun/cdnjs pombredanne/cdnjs 2947721120/cdnjs yanneves/cdnjs n00nietzsche/cdnjs xutianhuii/cdnjs GhAc-2017/cdnjs feddu/cdnjs FF: cdnjs/cdnjs FF: FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: sauloaguiar/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs FF: cdnjs/cdnjs

jsbin/jsbin sentsin/static frozenui/static FF: FF: staticfile/static FF: staticfile/static

nathanhammond/loop-protect remy/jsbin parkov/openhtml Leaflet/playground mingzeke/jsbin tableopen/00000 DataTables/jsbin FF: jsbin/loop-protect FF: FF: jsbin/jsbin FF: jsbin/jsbin FF: jsbin/jsbin FF: FF: jsbin/jsbin

jsbin/loop-protect thomaspark/openhtml FF: FF: parkov/openhtml

Figure 28: Links associated with cdnjs-

coderIML/.net FF:

ravendb/ravendb JamesNK/Newtonsoft.Json hilaMef/ravendb ValtoLibraries/Newtonsoft.Json yodiwo/Newtonsoft.Json mapbox/Mapbox.Json-unity FF: FF: FF: ayende/ravendb FF: JamesNK/Newtonsoft.Json FF: JamesNK/Newtonsoft.Json FF:

SignalR/SignalR aspnet/SignalR-Server fitzchak/ravendb aviv86/ravendb arekpalinski/ravendb karmeli87/ravendb abcP9110/brain-bot-111-b-bot-110-BND gshackles/SignalR avdinfotech/SignalR-Server ravendb/ravenmq IdanHaim/ravendb iftahbe/ravendb gregolsky/ravendb efratshenhar/ravendb jbayardo/ravendb mono/Newtonsoft.Json codecapers/Unity.Newtonsoft.Json ayende/ravendb JudahGabriel/ravendb ml054/ravendb Corvalius/ravendb ppekrol/ravendb ayende/raven.voron aviviadi/ravendb myarichuk/ravendb grisha-kotler/ravendb maximburyak/ravendb DanielDar/ravendb CommonJobs/ravendb criticalarc/ravendb bbqchickenrobot/ravendb talweiss1982/ravendb robashton/ravendb lahma/ravendb jahmai/ravendb plurby/ravendb markrendle/ravendb hach-que/Newtonsoft.Json StompyRobot/Newtonsoft.Json FF: FF: FF: ayende/ravendb FF: ravendb/ravendb FF: ayende/ravendb FF: ravendb/ravendb FF: JamesNK/Newtonsoft.Json FF: SignalR/SignalR FF: aspnet/SignalR-Server FF: FF: ravendb/ravendb FF: ayende/ravendb FF: ayende/ravendb FF: ayende/ravendb FF: ayende/ravendb FF: JamesNK/Newtonsoft.Json FF: JamesNK/Newtonsoft.Json FF: ravendb/ravendb FF: ayende/ravendb FF: ayende/ravendb FF: ayende/ravendb FF: ayende/ravendb FF: FF: ravendb/ravendb FF: ayende/ravendb FF: ayende/ravendb FF: ayende/ravendb FF: ayende/ravendb FF: ravendb/ravendb FF: ravendb/ravendb FF: ravendb/ravendb FF: ayende/ravendb FF: ravendb/ravendb FF: ayende/ravendb FF: ayende/ravendb FF: ravendb/ravendb FF: ravendb/ravendb FF: JamesNK/Newtonsoft.Json FF: JamesNK/Newtonsoft.Json

CITnDev/bltoolkit tpetrina/SignalR labnation/Newtonsoft.Json FF: lvaleriu/bltoolkit FF: SignalR/SignalR FF: hach-que/Newtonsoft.Json

igor-tkachev/bltoolkit jogibear9988/bltoolkit MaceWindu/bltoolkit FF: FF: igor-tkachev/bltoolkit FF: igor-tkachev/bltoolkit

Figure 29: Links associated with -ravendb

twc-openstack/grafana FF: grafana/grafana

grafana/grafana sapcc/grafana hpcloud-mon/grafana FF: FF: twc-openstack/grafana FF: grafana/grafana

palecur/kibana tarek-salah/banana panda01/kibana elastic/kibana raintank/grafana w33ble/kibana g0v/er.mohw mtanda/grafana-sumologic- simianhacker/kibana kulikov/kibana3 torkelo/grafana walmartlabs/grafana RiotGames/grafana timroes/kibana lyft/grafana RiotGames-Archive/grafana alexanderzobnin/grafana qbox/kirk-grafana SvenKlemm/grafana NatelEnergy/grafana lvheyang/kirk-grafana Altoros/grafana Cepave/grafana QXIP/Qbana CopperHill-Consulting/grafana openshift/grafana criteo-forks/grafana lukasolson/kibana codewise/grafana FF: elastic/kibana FF: lucidworks/banana FF: elastic/kibana FF: FF: grafana/grafana FF: elastic/kibana FF: FF: FF: elastic/kibana FF: FF: grafana/grafana FF: grafana/grafana FF: grafana/grafana FF: elastic/kibana FF: grafana/grafana FF: grafana/grafana FF: grafana/grafana FF: grafana/grafana FF: grafana/grafana FF: grafana/grafana FF: qbox/kirk-grafana FF: grafana/grafana FF: grafana/grafana FF: FF: grafana/grafana FF: grafana/grafana FF: grafana/grafana FF: elastic/kibana FF: grafana/grafana

elastic/kibana rashidkpc/kibana spalger/kibana lucidworks/banana sirensolutions/kibi chenryn/kibana-authorization elasticsearch/kibana3 raintank/worldping-api grimoirelab/kibiter aochsner/kibana gigya/kibana nreese/kibana epixa/kibana sebelga/kibana FF: FF: elastic/kibana FF: elastic/kibana FF: FF: FF: elastic/kibana FF: FF: FF: elastic/kibana FF: elastic/kibana FF: elastic/kibana FF: elastic/kibana FF: elastic/kibana FF: elastic/kibana

LogRhythm/kibana elasticsearch-cn/kibana chaoss/grimoirelab-kibiter elastic/sense OpenSOC/opensoc-ui elastic/timelion eHealthAfrica/kibana rashidkpc/kibana2 bleskes/sense FF: elastic/kibana FF: elastic/kibana FF: elastic/kibana FF: FF: FF: FF: elastic/kibana FF: FF:

Figure 30: Links associated with kibana-grafana

less/less.js FF:

CartoDB/carto cloudhead/less.js SomMeri/less-rhino.js temich/less.js jimmacgregor/less.js leoken/less.js fat/less.js enyojs/less.js erwan/less.js telerik/less.js hbi99/less.js emiliosanchez/less.js livingston/less.js leeight/less.js samcday/less.js mtscout6/less.js ardnet/less.js factorica/less.js pokermania/less.js ramtis/less.js yacine/less.js asifabdul/less.js liuos/less.js bemclaugh/less.js eonlova/less.js dlsgit/less.js yaslama/less.js daemon13/less.js repos-javascript/less.js schonarth/less.js webbart/less.js knewhouse/less.js sekimura/less.js Obdj/less.js daniilguit/less.js signedon/less.js chrizel/less.js hokaccha/less.js proglond/less.js hasnaink007/less.js alexahdp/less.js guangwong/less-whitout-designer evocateur/less.js shushi1010/less.js stefanklug/carto hao-app/less.js FF: less/less.js FF: FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: FF: meumairakram/less.js FF: less/less.js FF: less/less.js FF: less/less.js FF: Justineo/less.js FF: less/less.js FF: less/less.js

mapbox/carto csnover/less.js FF: FF: cloudhead/less.js

orfon/carto FF: mapbox/carto

Figure 31: Links associated with less-carto

llvm-mirror/llvm FF:

cilkplus/llvm krytarowski/clang apple/swift-llvm kripken/emscripten-fastcomp Microsoft/llvm RadeonOpenCompute/llvm lowRISC/riscv-llvm-integration rust-lang/llvm takeshi-yoshimura/clang-all cilkplus/-rt avr-llvm/llvm SOLLVE/sollve leaningtech/cheerp-llvm CTSRD-CHERI/llvm Jonathan2251/lbd cilkplus/clang repzret/dagger mono/llvm wsmoses/Tapir-LLVM flang-compiler/llvm PACO-CPU/riscv-llvm Microsoft/checkedc-llvm wsmoses/Parallel-IR chapuni/llvm FF: FF: llvm-mirror/clang FF: FF: FF: FF: llvm-mirror/llvm FF: FF: luqmana/llvm FF: FF: FF: FF: FF: FF: FF: FF: FF: FF: earl/llvm-mirror FF: FF: FF: FF: FF: FF:

llvm-mirror/clang llvm-mirror/compiler-rt apple/swift-clang RadeonOpenCompute/hcc-clang-upgrade Microsoft/clang RadeonOpenCompute/clang matus-chochlik/clang intel/llvm llvm-mirror/lld RadeonOpenCompute/lld llvm-mirror/clang-tools-extra runt18/swift-compiler-rt mackyle/blocksruntime llvm-mirror/libcxx llvm-mirror/libcxxabi pmodels/argobots SOLLVE/openmp llvm-mirror/polly leaningtech/cheerp-clang riscv/riscv-llvm t-crest/patmos-llvm FF: FF: FF: FF: FF: FF: llvm-mirror/clang FF: llvm-mirror/clang FF: llvm-project/llvm-project-20170507 FF: FF: llvm-mirror/lld FF: FF: apple/swift-compiler-rt FF: FF: FF: FF: FF: FF: FF: FF: FF:

Microsoft/checkedc-clang Ericsson/clang KhronosGroup/SPIR CTSRD-CHERI/clang kripken/emscripten-fastcomp-clang flang-compiler/flang-driver asutton/clang clang-ykt/clang rust-lang/compiler-rt llvm/llvm-project RadeonOpenCompute/clang-tools-extra apple/swift-compiler-rt awong-dev/ndk OpenMPToolsInterface/LLVM-openmp llvm-mirror/openmp FF: FF: llvm-mirror/clang FF: FF: FF: FF: llvm-mirror/clang FF: llvm-mirror/clang FF: FF: vadimcn/compiler-rt FF: FF: llvm-mirror/clang-tools-extra FF: FF: FF: llvm-mirror/openmp FF:

PureFusionOS/android_ndk FF:

android-ndk/ndk crystax/android-platform-ndk FF: FF:

Figure 32: Links associated with Swift-LLVM

32 moby/moby FF:

aanand/docker rhatdan/docker docker/docker tiborvass/docker rtyler/docker projectatomic/docker dotcloud/docker docker/engine haircommander/storage Microsoft/docker resin-os/balena coreos/docker boucher/docker crosbymichael/docker balena-os/balena-engine resin-io/docker SvenDowideit/docker mavenugo/docker miminar/docker dmcgowan/docker Tiantiandas/docker rancher/docker resin-os/docker lindenlab/docker kvasdopil/docker shishir-a412ed/docker StefanScherer/docker FF: docker/docker FF: docker/docker FF: FF: docker/docker FF: jenkinsci/docker FF: docker/docker FF: FF: moby/moby FF: FF: docker/docker FF: FF: dotcloud/docker FF: SaiedKazemi/docker FF: dotcloud/docker FF: FF: docker/docker FF: docker/docker FF: docker/docker FF: docker/docker FF: docker/docker FF: docker/docker FF: docker/docker FF: docker/docker FF: docker/docker FF: docker/docker FF: docker/docker FF: docker/docker

docker/compose docker/fig MHBauer/swarm circleci/docker tiborvass/cli jenkinsci/docker kyledinh/docker containers/storage Achain-Dev/docker tianon/-docker FF: FF: FF: docker/swarm FF: FF: codegangsta/cli FF: michaelneale/jenkins-ci.org-docker FF: dotcloud/docker FF: FF: FF:

crosbymichael/containerd docker/containerd orchardup/fig dnephin/compose docker/swarm docker/cli codegangsta/cli cgswong/docker-jenkins agileek/docker-jenkins AliyunContainerService/docker-jenkins MarkEWaite/docker cloudbees/jenkins-ci.org-docker FF: docker/containerd FF: FF: FF: docker/compose FF: FF: FF: FF: jenkinsci/docker FF: jenkinsci/docker FF: jenkinsci/docker FF: jenkinsci/docker FF: michaelneale/jenkins-ci.org-docker

containerd/containerd alibaba/containerd projectatomic/containerd upmio/swarm docker/libswarm urfave/cli micro/cli minio/cli aespinosa/docker-jenkins FF: FF: docker/containerd FF: FF: docker/swarm FF: FF: FF: codegangsta/cli FF: codegangsta/cli FF:

exoscale/cli FF: urfave/cli

Figure 33: Links associated with docker-containerd

The figure’s dimensions are too large for including it in a LaTeX document. Open the figure in the paper’s replication package.

Figure 34: Links associated with disagreements

33