-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
44 lines (43 loc) · 2.79 KB
/
about.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
32
33
34
35
36
37
38
39
40
41
42
43
44
<!-- About Page for zk Timeline Project -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About & Resources</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header style="background-color: #222; color: #ffffff; padding: 20px; text-align: center;">
<h1>About & Resources</h1>
<nav>
<a href="index.html" style="color: #ffcc00; text-decoration: none; margin-right: 15px;">Home</a>
<a href="analysis.html" style="color: #ffcc00; text-decoration: none;">Analysis</a>
</nav>
</header>
<section>
<h2>About This Project</h2>
<p>This project is an open-source collaborative timeline of significant Zero Knowledge (zk) events. The aim is to document the evolution of zk technology from its inception to current advancements, and provide insights into the trajectory of zk research and applications.</p>
</section>
<section>
<h2>Resources Used</h2>
<ul>
<li><a href="https://medium.com/@emilpepil/history-of-the-formation-of-zkp-151dd7001ffa" target="_blank">History of the Formation of ZKP (Medium Article by Emil Pepil)</a></li>
<li><a href="https://blog.lambdaclass.com/our-highly-subjective-view-on-the-history-of-zero-knowledge-proofs/" target="_blank">Our Highly Subjective View on the History of Zero Knowledge Proofs (LambdaClass Blog)</a></li>
<li><a href="https://www.wisdom.weizmann.ac.il/~oded/PSX/zk-tut02v3.pdf" target="_blank">Zero Knowledge Tutorial (Weizmann Institute)</a></li>
<li><a href="https://nibnalin.me/assets/zk.pdf" target="_blank">Zero Knowledge Proofs (Nalin Ranjan)</a></li>
<li><a href="https://leastauthority.com/blog/pioneering-zero-knowledge-proofs/" target="_blank">Pioneering Zero Knowledge Proofs (Least Authority Blog)</a></li>
<li><a href="https://youtu.be/KWS0InuJJrA?si=LqgY4C7nRtcvYUS3" target="_blank">Zero Knowledge Proofs Explained (YouTube Video)</a></li>
</ul>
</section>
</section>
<section>
<h2>Acknowledgments</h2>
<p>Thanks to <a href="https://x.com/AnnaRRose" target="_blank">Anna Rose</a>, <a href="https://x.com/nibnalin" target="_blank">Nibnalin</a>, and <a href="https://x.com/liz315" target="_blank">Liz Steininger</a> for their help in sharing great resources.</p>
</section>
<section>
<h2>How to Contribute</h2>
<p>If you would like to contribute to this timeline, please follow the instructions in our <a href="https://github.com/obadiaa/zktimeline/blob/main/CONTRIBUTING.md" target="_blank">Contributing Guide</a>. Contributions can include adding new events, improving the descriptions of existing events, or suggesting new features.</p>
</section>
</body>
</html>