-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
84 lines (77 loc) · 3.36 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Cryptocurrency: Slides</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="../markdown.css" />
<script>
function openTab(evt, tabName) {
// Declare all variables
var i, tabcontent, tablinks;
// Get all elements with class="tabcontent" and hide them
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
// Get all elements with class="tablinks" and remove the class "active"
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
// Show the current tab, and add an "active" class to the button that opened the tab
document.getElementById(tabName).style.display = "block";
evt.currentTarget.className += " active";
}
function insertCopyLink(text) {
document.write("<span class=\"copylink copy_img\" onclick=\"navigator.clipboard.writeText('" + text.replace(/\"/g,"\\'") + "')\"></span>");
}
</script>
</head>
<body>
<h1 id="cryptocurrency-slides">Cryptocurrency: Slides</h1>
<p><a href="../readme.html">Go up to the main CCC readme</a> (<a href="../readme.md">md</a>)</p>
<p>You may want to see the <a href="../uva/daily-announcements.html#/">daily announcements slide set</a> for the current semester.</p>
<p>Slide sets, in the intended order to be presented in lecture, are below:</p>
<ul>
<li><a href="introduction.html#/">Course Introduction</a> (UVA-specific)</li>
<li><a href="overview.html#/">Cryptocurrency overview</a></li>
<li><a href="encryption.html#/">Encryption</a></li>
<li><a href="bitcoin.html#/">Bitcoin</a></li>
<li><a href="mining.html#/">Mining</a></li>
<li><a href="ethereum.html#/">Ethereum</a></li>
<li><a href="solidity.html#/">Solidity</a></li>
<li><a href="tokens.html#/">Tokens</a></li>
<li><a href="consensus.html#/">Consensus</a></li>
<li><a href="applications.html#/">Blockchain Applications</a></li>
<li><a href="stablecoins.html#/">Stablecoins</a> <!-- present after applications, as it refers to DEXes and DAOs --></li>
<li><a href="zksnarks.html#/">zkSNARKs</a></li>
<li><a href="scalability.html#/">Scalability</a></li>
<li><a href="ethics-legal-policy.html#/">Ethics, Legality, and Policy</a></li>
<li><a href="darkside.html#/">The Dark Side of Cryptocurrency</a></li>
<li><a href="conclusion.html">Course Conclusion</a></li>
</ul>
<!--
Not used:
- [Algorand](algorand.html#/)
-->
</body>
</html>