-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 3.78 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>Tech Talks Digest</title>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="Insights, summaries, and key takeaways from various tech talks. Includes timestamps for quick reference and video links for deeper exploration." name="description"/>
<link href="styles.css" rel="stylesheet"/>
</head>
<body>
<h1>Tech Talks Digest</h1>
<p>List of finished talks.</p>
<select id="labelFilter">
<option value="all">All Labels</option>
<!-- Options will be added here by the JS script -->
</select>
<table id="talksTable">
<thead>
<tr>
<th>Title</th>
<th>Labels</th>
<th>Year</th>
</tr>
</thead>
<tbody><tr data-labels="aws, infrastructure"><td><a href="talks/html/infrastructure-is-code-on-aws.html">Infrastructure IS Code on AWS</a></td><td>aws, infrastructure</td><td>2024</td></tr><tr data-labels="prometheus, observability"><td><a href="talks/html/prometheus-deep-dive.html">Prometheus Deep Dive</a></td><td>prometheus, observability</td><td>2019</td></tr><tr data-labels="observability, opentelemetry"><td><a href="talks/html/what-is-this-opentelemetry-thing.html">What Is This OpenTelemetry Thing?</a></td><td>observability, opentelemetry</td><td>2024</td></tr><tr data-labels="observability, opentelemetry"><td><a href="talks/html/how-opentelemetry-records-errors-and-why.html">Dude, Where’s My Error?: How OpenTelemetry Records Errors, and Why...</a></td><td>observability, opentelemetry</td><td>2024</td></tr><tr data-labels="clean code, linting"><td><a href="talks/html/go-linters-myths-best-practices.html">Go Linters: Myths and Best Practices</a></td><td>clean code, linting</td><td>2019</td></tr><tr data-labels="academia, machine learning"><td><a href="talks/html/how-to-read-ai-research-papers-effectively.html">How To Read AI Research Papers Effectively</a></td><td>academia, machine learning</td><td>2024</td></tr><tr data-labels="cloud native, monitoring, observability, opentelemetry, prometheus, serverless"><td><a href="talks/html/monitoring-serverless-workloads-opentelemetry-prometheus.html">Monitoring Serverless Workloads with OpenTelemetry and Prometheus</a></td><td>cloud native, monitoring, observability, opentelemetry, prometheus, serverless</td><td>2024</td></tr><tr data-labels="observability, prometheus, monitoring"><td><a href="talks/html/architecting-growth-scaling-tactics-for-prometheus-metrics.html">Architecting Growth: Scaling Tactics for Prometheus Metrics</a></td><td>observability, prometheus, monitoring</td><td>2024</td></tr><tr data-labels="domain-driven design, software architecture"><td><a href="talks/html/domain-driven-design-overrated.html">Is Domain-Driven Design Overrated?</a></td><td>domain-driven design, software architecture</td><td>2021</td></tr><tr data-labels="teamwork, inclusive, distributed"><td><a href="talks/html/how-to-build-an-inclusive-distributed-team.html">How to Build an Inclusive Distributed Team</a></td><td>teamwork, inclusive, distributed</td><td>2018</td></tr><tr data-labels="gitops, kubernetes"><td><a href="talks/html/ensuring-kubernetes-manifests-validity-compliance.html">Ensuring Kubernetes manifests validity & compliance</a></td><td>gitops, kubernetes</td><td>2021</td></tr><tr data-labels="cloud native, iam, authorization"><td><a href="talks/html/current-state-of-cloud-native-authorization.html">The current state of cloud-native authorization</a></td><td>cloud native, iam, authorization</td><td>2023</td></tr><tr data-labels="observability, opentelemetry, prometheus"><td><a href="talks/html/prometheus-and-opentelemetry-better-together.html">Prometheus and OpenTelemetry: Better Together</a></td><td>observability, opentelemetry, prometheus</td><td>2024</td></tr></tbody>
</table>
<script src="script.js"></script>
</body>
</html>