- Unaware (does not know the project)
- Aware (knows the project)
- Consumer (uses the project)
- Supporter (makes non-code contributions)
- Contributor (makes code contributions)
- Maintainer (becomes a trusted committer)
- generated by the Contributors GitHub Action
- Date range for contributor list: 2022-11-01 to 2023-11-11
- Organization: InnerSourceCommons
Total Contributors | Total Contributions | % New Contributors |
---|---|---|
56 | 3962 | 35.71% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"$id": "http://dazn.com/manifest.schema.json", | |
"title": "dazn-manifest", | |
"type": "object", | |
"additionalProperties": false, | |
"description": "A YAML file which describes the contents of a code repository in a machine readable format.", | |
"properties": { | |
"dazn-manifest": { | |
"title": "version", |
Contributors:
Index:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require "rubygems" | |
require "open-uri" | |
require "pp" | |
require "logger" | |
require "json" | |
def get_repositories(user) | |
url = "http://github.com/api/v2/json/repos/show/#{user}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<name>Sebastian Spier</name> | |
<twitter>sebastianspier</twitter> | |
<slug>sebastianspier</slug> | |
<known>1</known> | |
<authority>32</authority> | |
<activity>45</activity> | |
<audience>33</audience> | |
<peerindex>33</peerindex> | |
<url>http://pi.mu/i2VL</url> | |
<topics>internet and web</topics> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<profile> | |
<name>Sebastian Spier</name> | |
<twitter>sebastianspier</twitter> | |
<slug>sebastianspier</slug> | |
<known>1</known> | |
<authority>35</authority> | |
<activity>34</activity> | |
<audience>31</audience> | |
<peerindex>34</peerindex> | |
<url>http://pi.mu/i2VL</url> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:yql="http://query.yahooapis.com/v1/schema/table.xsd"> | |
<!-- <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:yql="http://query.yahooapis.com/v1/schema/table.xsd" xpath-default-namespace="http://query.yahooapis.com/v1/schema/table.xsd"> --> | |
<xsl:output method="html" doctype-public="-//W3C//DTD HTML 4.01//EN" /> | |
<xsl:template match="/"> | |
<html> | |
<head> | |
<title>YQL Table</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script> |