-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmembers.html
More file actions
52 lines (52 loc) · 1.53 KB
/
Copy pathmembers.html
File metadata and controls
52 lines (52 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BSGOU Member Directory</title>
<style>
body { font-family: 'Segoe UI', sans-serif; background: #f5f7fa; margin: 0; padding: 20px; }
h2 { color: #222; }
table { border-collapse: collapse; width: 100%; background: #fff; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
th, td { text-align: center; padding: 12px; border-bottom: 1px solid #eee; }
th { background: #004466; color: white; }
tr:hover { background-color: #f1f1f1; }
a { color: #007acc; text-decoration: none; }
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<h2><a href="members.html" target="_blank">🐝 BSGOU Member Directory</a></h2>
<p>Ranked by Contribution Score (50% linear + 50% Poisson normalization).</p>
<p>For more details, please check a demo of
<a href="https://www.bs-gou.com/2025/06/12/BSGOU-Contribution-Score.html" target="_blank">
🐝 BSGOU Contribution Score Calculation</a></p>
<table>
<thead>
<tr>
<th>GitHub ID</th>
<th>PRs</th>
<th>Issues</th>
<th>Commits</th>
<th>Repos</th>
<th>Raw Score</th>
<th>Linear Score</th>
<th>Poisson Score</th>
<th>Contribution Score</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/wong-ziyi" target="_blank">wong-ziyi</a></td>
<td>30</td>
<td>54</td>
<td>2323</td>
<td>30</td>
<td>4988.00</td>
<td>100.00</td>
<td>49.81</td>
<td>74.91</td>
</tr>
</tbody>
</table>
</body>
</html>