-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
110 lines (102 loc) · 3.1 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>SWAFP slide decks</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/black.css" id="theme">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h1>Lecture 1</h1>
<h3>Intro, FP and F#</h2>
<div>Can be found <a href="./slides/01/">here</a></div>
</section>
<section>
<h1>Lecture 2</h1>
<h3>Functions, types and List</h3>
<div>Can be found <a href="./slides/02/">here</a></div>
</section>
<section>
<h1>Lecture 3</h1>
<h3>Model/Type based programming</h3>
<div>Can be found <a href="./slides/03/">here</a></div>
<div>FParsec can be found here <a href="./slides/03.2/">here</a></div>
</section>
<section>
<h1>Lecture 4</h1>
<h3>Immutable data structures</h3>
<div>Can be found <a href="./slides/04/">here</a></div>
</section>
<section>
<h1>Lecture 5</h1>
<h3>Property Based Tests</h3>
<div>Can be found <a href="./slides/05/">here</a></div>
</section>
<section>
<h1>Lecture 6</h1>
<h3>Functors, Monads, and Applicatives</h3>
<div>Can be found <a href="./slides/06/">here</a></div>
</section>
<section>
<h1>Lecture 7</h1>
<h3>Error handling</h3>
<div>Can be found <a href="./slides/07/">here</a></div>
</section>
<section>
<h1>Lecture 8</h1>
<h3>Architecture</h3>
<div>Can be found <a href="./slides/08/">here</a></div>
</section>
<section>
<h1>Lecture 9</h1>
<h3>Web (Giraffe)</h3>
<div>Can be found <a href="./slides/09/">here</a></div>
</section>
<section>
<h1>Lecture 10</h1>
<h3>Efficiency</h3>
<div>Can be found <a href="./slides/10/">here</a></div>
</section>
<section>
<h1>Lecture 11</h1>
<h3>Actor</h3>
<div>Can be found <a href="./slides/11/">here</a></div>
</section>
<section>
<h1>Lecture 12</h1>
<h3>Akka.Net</h3>
<div>Can be found <a href="./slides/12/">here</a></div>
</section>
<section>
<h1>Lecture 13</h1>
<h3>Reactive Programing</h3>
<div>Can be found <a href="./slides/13/">here</a></div>
</section>
<section>
<h1>Lecture 14</h1>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>