510 lines
18 KiB
HTML
510 lines
18 KiB
HTML
---
|
|
title: "v1.3.0 - 2019-08-05"
|
|
linkTitle: "v1.3.0 - 2019-08-05"
|
|
weight: -57
|
|
---
|
|
<html>
|
|
<head>
|
|
<title>kubernetes/minikube - Leaderboard</title>
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap" rel="stylesheet">
|
|
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
|
|
<script type="text/javascript">
|
|
google.charts.load("current", {packages:["corechart"]});
|
|
</script>
|
|
<style>
|
|
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
background-color: #f7f7fa;
|
|
padding: 1em;
|
|
}
|
|
|
|
h1 {
|
|
color: rgba(66,133,244);
|
|
margin-bottom: 0em;
|
|
}
|
|
|
|
.subtitle {
|
|
color: rgba(23,90,201);
|
|
font-size: small;
|
|
}
|
|
|
|
pre {
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
color: #666;
|
|
font-size: small;
|
|
}
|
|
|
|
h2.cli {
|
|
color: #666;
|
|
}
|
|
|
|
h2 {
|
|
color: #333;
|
|
}
|
|
|
|
.board p {
|
|
font-size: small;
|
|
color: #999;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
.board {
|
|
clear: right;
|
|
display: inline-block;
|
|
padding: 0.5em;
|
|
margin: 0.5em;
|
|
background-color: #fff;
|
|
}
|
|
.board:nth-child(4n+3) {
|
|
border: 2px solid rgba(66,133,244,0.25);
|
|
color: rgba(66,133,244);
|
|
}
|
|
|
|
.board:nth-child(4n+2) {
|
|
border: 2px solid rgba(219,68,55,0.25);
|
|
color: rgba rgba(219,68,55);
|
|
}
|
|
|
|
.board:nth-child(4n+1) {
|
|
border: 2px solid rgba(244,160,0,0.25);
|
|
color: rgba(244,160,0);
|
|
}
|
|
|
|
.board:nth-child(4n) {
|
|
border: 2px solid rgba(15,157,88,0.25);
|
|
color: rgba(15,157,88);
|
|
}
|
|
|
|
h3 {
|
|
text-align: center;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>kubernetes/minikube</h1>
|
|
<div class="subtitle">2019-06-24 — 2019-08-05</div>
|
|
|
|
|
|
|
|
<h2>Reviewers</h2>
|
|
|
|
|
|
<div class="board">
|
|
<h3>Most Influential</h3>
|
|
<p># of Merged PRs reviewed</p>
|
|
<div id="chart_reviewCounts" style="width: 450px; height: 350px;"></div>
|
|
<script type="text/javascript">
|
|
google.charts.setOnLoadCallback(drawreviewCounts);
|
|
|
|
function drawreviewCounts() {
|
|
var data = new google.visualization.arrayToDataTable([
|
|
['', '# of Merged PRs reviewed', { role: 'annotation' }],
|
|
["medyagh", 52, "52"],
|
|
["tstromberg", 30, "30"],
|
|
["RA489", 25, "25"],
|
|
["afbjorklund", 17, "17"],
|
|
["sharifelgamal", 10, "10"],
|
|
["josedonizetti", 8, "8"],
|
|
["blueelvis", 3, "3"],
|
|
["priyawadhwa", 1, "1"],
|
|
["dfang", 1, "1"],
|
|
["Doqnach", 1, "1"],
|
|
["saschagrunert", 1, "1"],
|
|
["Coderhypo", 1, "1"],
|
|
|
|
]);
|
|
|
|
var options = {
|
|
axisTitlesPosition: 'none',
|
|
|
|
bars: 'horizontal', // Required for Material Bar Charts.
|
|
axes: {
|
|
x: {
|
|
y: { side: 'top'} // Top x-axis.
|
|
}
|
|
},
|
|
legend: { position: "none" },
|
|
bar: { groupWidth: "85%" }
|
|
};
|
|
|
|
var chart = new google.visualization.BarChart(document.getElementById('chart_reviewCounts'));
|
|
chart.draw(data, options);
|
|
};
|
|
</script>
|
|
</div>
|
|
|
|
<div class="board">
|
|
<h3>Most Helpful</h3>
|
|
<p># of words written in merged PRs</p>
|
|
<div id="chart_reviewWords" style="width: 450px; height: 350px;"></div>
|
|
<script type="text/javascript">
|
|
google.charts.setOnLoadCallback(drawreviewWords);
|
|
|
|
function drawreviewWords() {
|
|
var data = new google.visualization.arrayToDataTable([
|
|
['', '# of words written in merged PRs', { role: 'annotation' }],
|
|
["medyagh", 4077, "4077"],
|
|
["tstromberg", 1711, "1711"],
|
|
["afbjorklund", 1278, "1278"],
|
|
["sharifelgamal", 472, "472"],
|
|
["josedonizetti", 438, "438"],
|
|
["RA489", 257, "257"],
|
|
["dfang", 176, "176"],
|
|
["blueelvis", 132, "132"],
|
|
["saschagrunert", 73, "73"],
|
|
["Doqnach", 49, "49"],
|
|
["Coderhypo", 36, "36"],
|
|
["priyawadhwa", 23, "23"],
|
|
|
|
]);
|
|
|
|
var options = {
|
|
axisTitlesPosition: 'none',
|
|
|
|
bars: 'horizontal', // Required for Material Bar Charts.
|
|
axes: {
|
|
x: {
|
|
y: { side: 'top'} // Top x-axis.
|
|
}
|
|
},
|
|
legend: { position: "none" },
|
|
bar: { groupWidth: "85%" }
|
|
};
|
|
|
|
var chart = new google.visualization.BarChart(document.getElementById('chart_reviewWords'));
|
|
chart.draw(data, options);
|
|
};
|
|
</script>
|
|
</div>
|
|
|
|
<div class="board">
|
|
<h3>Most Demanding</h3>
|
|
<p># of Review Comments in merged PRs</p>
|
|
<div id="chart_reviewComments" style="width: 450px; height: 350px;"></div>
|
|
<script type="text/javascript">
|
|
google.charts.setOnLoadCallback(drawreviewComments);
|
|
|
|
function drawreviewComments() {
|
|
var data = new google.visualization.arrayToDataTable([
|
|
['', '# of Review Comments in merged PRs', { role: 'annotation' }],
|
|
["tstromberg", 43, "43"],
|
|
["medyagh", 41, "41"],
|
|
["sharifelgamal", 27, "27"],
|
|
["afbjorklund", 18, "18"],
|
|
["josedonizetti", 9, "9"],
|
|
["dfang", 4, "4"],
|
|
["saschagrunert", 4, "4"],
|
|
["Coderhypo", 1, "1"],
|
|
["blueelvis", 1, "1"],
|
|
["RA489", 0, "0"],
|
|
["Doqnach", 0, "0"],
|
|
["priyawadhwa", 0, "0"],
|
|
|
|
]);
|
|
|
|
var options = {
|
|
axisTitlesPosition: 'none',
|
|
|
|
bars: 'horizontal', // Required for Material Bar Charts.
|
|
axes: {
|
|
x: {
|
|
y: { side: 'top'} // Top x-axis.
|
|
}
|
|
},
|
|
legend: { position: "none" },
|
|
bar: { groupWidth: "85%" }
|
|
};
|
|
|
|
var chart = new google.visualization.BarChart(document.getElementById('chart_reviewComments'));
|
|
chart.draw(data, options);
|
|
};
|
|
</script>
|
|
</div>
|
|
|
|
|
|
<h2>Pull Requests</h2>
|
|
|
|
|
|
<div class="board">
|
|
<h3>Most Active</h3>
|
|
<p># of Pull Requests Merged</p>
|
|
<div id="chart_prCounts" style="width: 450px; height: 350px;"></div>
|
|
<script type="text/javascript">
|
|
google.charts.setOnLoadCallback(drawprCounts);
|
|
|
|
function drawprCounts() {
|
|
var data = new google.visualization.arrayToDataTable([
|
|
['', '# of Pull Requests Merged', { role: 'annotation' }],
|
|
["afbjorklund", 31, "31"],
|
|
["medyagh", 29, "29"],
|
|
["josedonizetti", 28, "28"],
|
|
["tstromberg", 27, "27"],
|
|
["sharifelgamal", 12, "12"],
|
|
["blueelvis", 4, "4"],
|
|
["fenglixa", 3, "3"],
|
|
["cclauss", 3, "3"],
|
|
["kairen", 2, "2"],
|
|
["kumarom", 2, "2"],
|
|
["djmgit", 2, "2"],
|
|
["dfang", 2, "2"],
|
|
["reegnz", 2, "2"],
|
|
["castlemilk", 2, "2"],
|
|
["serhatcetinkaya", 1, "1"],
|
|
|
|
]);
|
|
|
|
var options = {
|
|
axisTitlesPosition: 'none',
|
|
|
|
bars: 'horizontal', // Required for Material Bar Charts.
|
|
axes: {
|
|
x: {
|
|
y: { side: 'top'} // Top x-axis.
|
|
}
|
|
},
|
|
legend: { position: "none" },
|
|
bar: { groupWidth: "85%" }
|
|
};
|
|
|
|
var chart = new google.visualization.BarChart(document.getElementById('chart_prCounts'));
|
|
chart.draw(data, options);
|
|
};
|
|
</script>
|
|
</div>
|
|
|
|
<div class="board">
|
|
<h3>Big Movers</h3>
|
|
<p>Lines of code (delta)</p>
|
|
<div id="chart_prDeltas" style="width: 450px; height: 350px;"></div>
|
|
<script type="text/javascript">
|
|
google.charts.setOnLoadCallback(drawprDeltas);
|
|
|
|
function drawprDeltas() {
|
|
var data = new google.visualization.arrayToDataTable([
|
|
['', 'Lines of code (delta)', { role: 'annotation' }],
|
|
["tstromberg", 14242, "14242"],
|
|
["medyagh", 3643, "3643"],
|
|
["sharifelgamal", 1453, "1453"],
|
|
["josedonizetti", 1073, "1073"],
|
|
["afbjorklund", 937, "937"],
|
|
["blueelvis", 436, "436"],
|
|
["kairen", 185, "185"],
|
|
["reegnz", 117, "117"],
|
|
["castlemilk", 94, "94"],
|
|
["kumarom", 54, "54"],
|
|
["superbrothers", 38, "38"],
|
|
["marcosdiez", 34, "34"],
|
|
["cclauss", 30, "30"],
|
|
["djmgit", 28, "28"],
|
|
["dfang", 27, "27"],
|
|
|
|
]);
|
|
|
|
var options = {
|
|
axisTitlesPosition: 'none',
|
|
|
|
bars: 'horizontal', // Required for Material Bar Charts.
|
|
axes: {
|
|
x: {
|
|
y: { side: 'top'} // Top x-axis.
|
|
}
|
|
},
|
|
legend: { position: "none" },
|
|
bar: { groupWidth: "85%" }
|
|
};
|
|
|
|
var chart = new google.visualization.BarChart(document.getElementById('chart_prDeltas'));
|
|
chart.draw(data, options);
|
|
};
|
|
</script>
|
|
</div>
|
|
|
|
<div class="board">
|
|
<h3>Most difficult to review</h3>
|
|
<p>Average PR size (added+changed)</p>
|
|
<div id="chart_prSize" style="width: 450px; height: 350px;"></div>
|
|
<script type="text/javascript">
|
|
google.charts.setOnLoadCallback(drawprSize);
|
|
|
|
function drawprSize() {
|
|
var data = new google.visualization.arrayToDataTable([
|
|
['', 'Average PR size (added+changed)', { role: 'annotation' }],
|
|
["tstromberg", 201, "201"],
|
|
["blueelvis", 102, "102"],
|
|
["medyagh", 77, "77"],
|
|
["sharifelgamal", 67, "67"],
|
|
["kairen", 60, "60"],
|
|
["castlemilk", 46, "46"],
|
|
["superbrothers", 31, "31"],
|
|
["kumarom", 26, "26"],
|
|
["lambda-9", 26, "26"],
|
|
["josedonizetti", 25, "25"],
|
|
["marcosdiez", 22, "22"],
|
|
["afbjorklund", 22, "22"],
|
|
["hpandeycodeit", 21, "21"],
|
|
["djmgit", 13, "13"],
|
|
["dfang", 11, "11"],
|
|
|
|
]);
|
|
|
|
var options = {
|
|
axisTitlesPosition: 'none',
|
|
|
|
bars: 'horizontal', // Required for Material Bar Charts.
|
|
axes: {
|
|
x: {
|
|
y: { side: 'top'} // Top x-axis.
|
|
}
|
|
},
|
|
legend: { position: "none" },
|
|
bar: { groupWidth: "85%" }
|
|
};
|
|
|
|
var chart = new google.visualization.BarChart(document.getElementById('chart_prSize'));
|
|
chart.draw(data, options);
|
|
};
|
|
</script>
|
|
</div>
|
|
|
|
|
|
<h2>Issues</h2>
|
|
|
|
|
|
<div class="board">
|
|
<h3>Most Active</h3>
|
|
<p># of comments</p>
|
|
<div id="chart_comments" style="width: 450px; height: 350px;"></div>
|
|
<script type="text/javascript">
|
|
google.charts.setOnLoadCallback(drawcomments);
|
|
|
|
function drawcomments() {
|
|
var data = new google.visualization.arrayToDataTable([
|
|
['', '# of comments', { role: 'annotation' }],
|
|
["afbjorklund", 6, "6"],
|
|
["tstromberg", 6, "6"],
|
|
["medyagh", 4, "4"],
|
|
["SLKTH", 1, "1"],
|
|
["itsallonetome", 1, "1"],
|
|
["AdamSEY", 1, "1"],
|
|
["zhangzhuow", 1, "1"],
|
|
["lambda-9", 1, "1"],
|
|
["kindkid4", 1, "1"],
|
|
["CristianTrejo", 1, "1"],
|
|
["ajit555db", 1, "1"],
|
|
["rickgode", 1, "1"],
|
|
["dubiZA", 1, "1"],
|
|
["Enoxime", 1, "1"],
|
|
["versusversus", 1, "1"],
|
|
|
|
]);
|
|
|
|
var options = {
|
|
axisTitlesPosition: 'none',
|
|
|
|
bars: 'horizontal', // Required for Material Bar Charts.
|
|
axes: {
|
|
x: {
|
|
y: { side: 'top'} // Top x-axis.
|
|
}
|
|
},
|
|
legend: { position: "none" },
|
|
bar: { groupWidth: "85%" }
|
|
};
|
|
|
|
var chart = new google.visualization.BarChart(document.getElementById('chart_comments'));
|
|
chart.draw(data, options);
|
|
};
|
|
</script>
|
|
</div>
|
|
|
|
<div class="board">
|
|
<h3>Most Helpful</h3>
|
|
<p># of words (excludes authored)</p>
|
|
<div id="chart_commentWords" style="width: 450px; height: 350px;"></div>
|
|
<script type="text/javascript">
|
|
google.charts.setOnLoadCallback(drawcommentWords);
|
|
|
|
function drawcommentWords() {
|
|
var data = new google.visualization.arrayToDataTable([
|
|
['', '# of words (excludes authored)', { role: 'annotation' }],
|
|
["afbjorklund", 338, "338"],
|
|
["lambda-9", 253, "253"],
|
|
["tstromberg", 241, "241"],
|
|
["itsallonetome", 190, "190"],
|
|
["medyagh", 93, "93"],
|
|
["zhangzhuow", 30, "30"],
|
|
["Enoxime", 18, "18"],
|
|
["dubiZA", 17, "17"],
|
|
["brianmacy", 14, "14"],
|
|
["rickgode", 14, "14"],
|
|
["kindkid4", 14, "14"],
|
|
["georgeraveen", 13, "13"],
|
|
["CristianTrejo", 13, "13"],
|
|
["0rtem", 12, "12"],
|
|
["SLKTH", 10, "10"],
|
|
|
|
]);
|
|
|
|
var options = {
|
|
axisTitlesPosition: 'none',
|
|
|
|
bars: 'horizontal', // Required for Material Bar Charts.
|
|
axes: {
|
|
x: {
|
|
y: { side: 'top'} // Top x-axis.
|
|
}
|
|
},
|
|
legend: { position: "none" },
|
|
bar: { groupWidth: "85%" }
|
|
};
|
|
|
|
var chart = new google.visualization.BarChart(document.getElementById('chart_commentWords'));
|
|
chart.draw(data, options);
|
|
};
|
|
</script>
|
|
</div>
|
|
|
|
<div class="board">
|
|
<h3>Top Closers</h3>
|
|
<p># of issues closed (excludes authored)</p>
|
|
<div id="chart_issueCloser" style="width: 450px; height: 350px;"></div>
|
|
<script type="text/javascript">
|
|
google.charts.setOnLoadCallback(drawissueCloser);
|
|
|
|
function drawissueCloser() {
|
|
var data = new google.visualization.arrayToDataTable([
|
|
['', '# of issues closed (excludes authored)', { role: 'annotation' }],
|
|
["tstromberg", 66, "66"],
|
|
["medyagh", 19, "19"],
|
|
["afbjorklund", 11, "11"],
|
|
["sharifelgamal", 4, "4"],
|
|
|
|
]);
|
|
|
|
var options = {
|
|
axisTitlesPosition: 'none',
|
|
|
|
bars: 'horizontal', // Required for Material Bar Charts.
|
|
axes: {
|
|
x: {
|
|
y: { side: 'top'} // Top x-axis.
|
|
}
|
|
},
|
|
legend: { position: "none" },
|
|
bar: { groupWidth: "85%" }
|
|
};
|
|
|
|
var chart = new google.visualization.BarChart(document.getElementById('chart_issueCloser'));
|
|
chart.draw(data, options);
|
|
};
|
|
</script>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|