This repository was archived by the owner on Mar 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
206 lines (197 loc) · 7.6 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes">
<title>Moving from Scala 2 to Scala 3</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/white.css">
<!-- Title-Footer initialisation -->
<link rel="stylesheet" href="plugin/title-footer/title-footer.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/zenburn.css">
<!-- Prevent reveal to change any header to all-caps -->
<style>
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5 {
text-transform: none;
}
</style>
<!-- Change color for links globally -->
<style>
.reveal section a { color: #0000FF; } /* CSS link color */
</style>
<!-- Reduce font size -->
<style>
.reveal section p {
display: inline-block;
font-size: 0.2em;
line-height: 1.0em;
vertical-align: top;
}
</style>
<!-- Fix allignment on first bullet line when followed by an image -->
<style type="text/css">
.reveal p {
text-align: left;
}
.reveal ul {
display: block;
}
.reveal ol {
display: block;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<section id="title-page">
<section data-markdown="00-title-page.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="introduction">
<section data-markdown="01-introduction.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="scala3-migration-course">
<section data-markdown="99-scala3-migration-course.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="recap-basics">
<section data-markdown="02-recap-scala2-akka-typed-scala3.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="recap-basics">
<section data-markdown="03-the-scala2-application.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="recap-basics">
<section data-markdown="04-scala3-compiler-rewrite-capabilities.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="recap-basics">
<section data-markdown="05-top-level-definitions.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="recap-basics">
<section data-markdown="06-parameter-untupling.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="recap-basics">
<section data-markdown="07-extension-methods.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
</section>
<section id="recap-basics">
<section data-markdown="08-given-using-summon.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="recap-basics">
<section data-markdown="09-enumerations-and-export.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="recap-basics">
<section data-markdown="10-intersection-and-union-types.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="recap-basics">
<section data-markdown="11-opaque-type-aliases.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="recap-basics">
<section data-markdown="12-multiversal-equality.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</section>
<section id="recap-basics">
<section data-markdown="50-references.md"
data-separator="^---"
data-separator-notes="^Note:"
data-background-image="images/bg-reveal-content.ps.png"
data-charset="iso-8859-15">
</section>
</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,
margin: 0.05,
minScale: 0.6,
maxScale: 1.9,
center: false,
slideNumber: 'c/t',
controls: true,
//controlsBackArrows: 'hidden',
progress: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ],
dependencies: [
{ src: 'plugin/title-footer/title-footer.js', async: true, callback: function() { title_footer.initialize(" Moving from Scala 2 to Scala 3", 'rgba(255, 255, 255, 1.0)'); } } ]
});
</script>
</body>
</html>