521 lines
19 KiB
HTML
521 lines
19 KiB
HTML
---
|
|
title: "2019"
|
|
linkTitle: "2019"
|
|
weight: -99992019
|
|
---
|
|
<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-01-01 — 2019-12-31</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([
|
|
[{label:'',type:'string'},{label: '# of Merged PRs reviewed', type: 'number'}, { role: 'annotation' }],
|
|
["tstromberg", 293, "293"],
|
|
["medyagh", 187, "187"],
|
|
["afbjorklund", 72, "72"],
|
|
["sharifelgamal", 60, "60"],
|
|
["RA489", 58, "58"],
|
|
["josedonizetti", 24, "24"],
|
|
["priyawadhwa", 11, "11"],
|
|
["balopat", 8, "8"],
|
|
["blueelvis", 6, "6"],
|
|
["gbraad", 3, "3"],
|
|
["sanguinecloud", 2, "2"],
|
|
["donmccasland", 2, "2"],
|
|
["dfang", 2, "2"],
|
|
["woodcockjosh", 2, "2"],
|
|
["tejal29", 2, "2"],
|
|
|
|
]);
|
|
|
|
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([
|
|
[{label:'',type:'string'},{label: '# of words written in merged PRs', type: 'number'}, { role: 'annotation' }],
|
|
["tstromberg", 19944, "19944"],
|
|
["medyagh", 13840, "13840"],
|
|
["afbjorklund", 4324, "4324"],
|
|
["josedonizetti", 1296, "1296"],
|
|
["sharifelgamal", 1202, "1202"],
|
|
["priyawadhwa", 577, "577"],
|
|
["balopat", 549, "549"],
|
|
["RA489", 508, "508"],
|
|
["PatrickLang", 411, "411"],
|
|
["sanguinecloud", 351, "351"],
|
|
["grahamwhaley", 294, "294"],
|
|
["gbraad", 247, "247"],
|
|
["blueelvis", 210, "210"],
|
|
["mlebrun", 182, "182"],
|
|
["ianlewis", 177, "177"],
|
|
|
|
]);
|
|
|
|
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([
|
|
[{label:'',type:'string'},{label: '# of Review Comments in merged PRs', type: 'number'}, { role: 'annotation' }],
|
|
["tstromberg", 509, "509"],
|
|
["medyagh", 163, "163"],
|
|
["afbjorklund", 76, "76"],
|
|
["josedonizetti", 58, "58"],
|
|
["sharifelgamal", 52, "52"],
|
|
["sanguinecloud", 49, "49"],
|
|
["balopat", 35, "35"],
|
|
["priyawadhwa", 13, "13"],
|
|
["ianlewis", 7, "7"],
|
|
["RA489", 4, "4"],
|
|
["saschagrunert", 4, "4"],
|
|
["Colstuwjx", 3, "3"],
|
|
["dfang", 3, "3"],
|
|
["cyphar", 3, "3"],
|
|
["hpandeycodeit", 3, "3"],
|
|
|
|
]);
|
|
|
|
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([
|
|
[{label:'',type:'string'},{label: '# of Pull Requests Merged', type: 'number'}, { role: 'annotation' }],
|
|
["tstromberg", 313, "313"],
|
|
["afbjorklund", 142, "142"],
|
|
["medyagh", 77, "77"],
|
|
["sharifelgamal", 75, "75"],
|
|
["josedonizetti", 44, "44"],
|
|
["woodcockjosh", 14, "14"],
|
|
["nanikjava", 12, "12"],
|
|
["n0npax", 12, "12"],
|
|
["RA489", 10, "10"],
|
|
["blueelvis", 10, "10"],
|
|
["priyawadhwa", 9, "9"],
|
|
["fenglixa", 9, "9"],
|
|
["marcosdiez", 9, "9"],
|
|
["laozc", 8, "8"],
|
|
["AllenZMC", 8, "8"],
|
|
|
|
]);
|
|
|
|
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([
|
|
[{label:'',type:'string'},{label: 'Lines of code (delta)', type: 'number'}, { role: 'annotation' }],
|
|
["tstromberg", 56548, "56548"],
|
|
["medyagh", 13902, "13902"],
|
|
["afbjorklund", 7096, "7096"],
|
|
["sharifelgamal", 4821, "4821"],
|
|
["woodcockjosh", 2014, "2014"],
|
|
["josedonizetti", 2006, "2006"],
|
|
["n0npax", 1822, "1822"],
|
|
["laozc", 1798, "1798"],
|
|
["nanikjava", 963, "963"],
|
|
["blianix", 932, "932"],
|
|
["blueelvis", 789, "789"],
|
|
["nixpanic", 686, "686"],
|
|
["11janci", 631, "631"],
|
|
["serhatcetinkaya", 596, "596"],
|
|
["u5surf", 524, "524"],
|
|
|
|
]);
|
|
|
|
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([
|
|
[{label:'',type:'string'},{label: 'Average PR size (added+changed)', type: 'number'}, { role: 'annotation' }],
|
|
["nixpanic", 675, "675"],
|
|
["blianix", 454, "454"],
|
|
["laozc", 193, "193"],
|
|
["duohedron", 173, "173"],
|
|
["reuvenharrison", 163, "163"],
|
|
["donmccasland", 159, "159"],
|
|
["ivans3", 140, "140"],
|
|
["n0npax", 140, "140"],
|
|
["salamani", 119, "119"],
|
|
["medyagh", 117, "117"],
|
|
["serhatcetinkaya", 115, "115"],
|
|
["woodcockjosh", 112, "112"],
|
|
["11janci", 110, "110"],
|
|
["tstromberg", 103, "103"],
|
|
["frapposelli", 94, "94"],
|
|
|
|
]);
|
|
|
|
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([
|
|
[{label:'',type:'string'},{label: '# of comments', type: 'number'}, { role: 'annotation' }],
|
|
["tstromberg", 58, "58"],
|
|
["medyagh", 21, "21"],
|
|
["afbjorklund", 20, "20"],
|
|
["nanikjava", 6, "6"],
|
|
["priyawadhwa", 4, "4"],
|
|
["it-monkey", 3, "3"],
|
|
["jhgoodwin", 3, "3"],
|
|
["sharifelgamal", 3, "3"],
|
|
["frank-dspeed", 3, "3"],
|
|
["dylmye", 3, "3"],
|
|
["vnzongzna", 3, "3"],
|
|
["rkrdo", 2, "2"],
|
|
["Eelis", 2, "2"],
|
|
["MiguelAtTweddle", 2, "2"],
|
|
["messy80", 2, "2"],
|
|
|
|
]);
|
|
|
|
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([
|
|
[{label:'',type:'string'},{label: '# of words (excludes authored)', type: 'number'}, { role: 'annotation' }],
|
|
["tstromberg", 1832, "1832"],
|
|
["rkrdo", 1498, "1498"],
|
|
["afbjorklund", 955, "955"],
|
|
["amctavish", 884, "884"],
|
|
["medyagh", 846, "846"],
|
|
["ramkrishnan8994", 454, "454"],
|
|
["sebinsua", 417, "417"],
|
|
["brainfull", 413, "413"],
|
|
["nanikjava", 372, "372"],
|
|
["lambda-9", 253, "253"],
|
|
["Eelis", 246, "246"],
|
|
["robotarmy", 233, "233"],
|
|
["MaurGi", 207, "207"],
|
|
["jmcclell", 200, "200"],
|
|
["tyagi", 197, "197"],
|
|
|
|
]);
|
|
|
|
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([
|
|
[{label:'',type:'string'},{label: '# of issues closed (excludes authored)', type: 'number'}, { role: 'annotation' }],
|
|
["tstromberg", 846, "846"],
|
|
["medyagh", 87, "87"],
|
|
["sharifelgamal", 60, "60"],
|
|
["afbjorklund", 27, "27"],
|
|
["priyawadhwa", 13, "13"],
|
|
["balopat", 9, "9"],
|
|
["", 1, "1"],
|
|
["blueelvis", 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_issueCloser'));
|
|
chart.draw(data, options);
|
|
};
|
|
</script>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|