-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.85 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<title>Paper Collection in Computer Science</title>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="List compiling summaries, analyses, and key insights from research papers across the Computer Science field." name="description"/>
<link href="styles.css" rel="stylesheet"/>
</head>
<body>
<h1>Paper Collection in Computer Science</h1>
<p>List of papers read.</p>
<select id="labelFilter">
<option value="all">All Labels</option>
<!-- Options will be added here by the JS script -->
</select>
<table id="papersTable">
<thead>
<tr>
<th>Title</th>
<th>Labels</th>
<th>Year</th>
</tr>
</thead>
<tbody><tr data-labels="5g, ai, telecom"><td><a href="https://github.com/angelicagardner/paper-collection/blob/main/papers/next-decade-telecommunications-artificial-intelligence.md">Next Decade of Telecommunications Artificial Intelligence</a></td><td>5g, ai, telecom</td><td>2021</td></tr><tr data-labels="observability, prometheus, kubernetes, monitoring"><td><a href="https://github.com/angelicagardner/paper-collection/blob/main/papers/framework-for-monitoring-high-performance-environments-using-k8s-prometheus.md">Towards a Framework for Monitoring and Analyzing High Performance Computing Environments Using Kubernetes and Prometheus</a></td><td>observability, prometheus, kubernetes, monitoring</td><td>2019</td></tr><tr data-labels="5g, cloud native, monitoring"><td><a href="https://github.com/angelicagardner/paper-collection/blob/main/papers/cloud-native-5g-experimental-platform-with-transmissions-and-monitoring.md">Cloud-native 5G experimental platform with over-the-air transmissions and end-to-end monitoring</a></td><td>5g, cloud native, monitoring</td><td>2022</td></tr></tbody>
</table>
<script src="script.js"></script>
</body>
</html>