9
9
< meta name ="description " content ="C++11, C++14 and C++17 presentation ">
10
10
< meta name ="author " content ="Lukasz Ziobron ">
11
11
12
- < link rel ="stylesheet " href ="../css/reset.css ">
13
- < link rel ="stylesheet " href ="../css/reveal.css ">
14
- < link rel ="stylesheet " href ="../css/theme/coders.css " id ="theme ">
12
+ < link rel ="stylesheet " href ="../../ css/reset.css ">
13
+ < link rel ="stylesheet " href ="../../ css/reveal.css ">
14
+ < link rel ="stylesheet " href ="../../ css/theme/coders.css " id ="theme ">
15
15
16
16
<!-- Theme used for syntax highlighting of code -->
17
- < link rel ="stylesheet " href ="../lib/css/monokai.css ">
17
+ < link rel ="stylesheet " href ="../../ lib/css/monokai.css ">
18
18
19
19
<!-- Printing and PDF exports -->
20
20
< script >
21
21
var link = document . createElement ( 'link' ) ;
22
22
link . rel = 'stylesheet' ;
23
23
link . type = 'text/css' ;
24
- link . href = window . location . search . match ( / p r i n t - p d f / gi) ? '../css/print/pdf.css' : '../css/print/paper.css' ;
24
+ link . href = window . location . search . match ( / p r i n t - p d f / gi) ? '../../ css/print/pdf.css' : '../ ../css/print/paper.css' ;
25
25
document . getElementsByTagName ( 'head' ) [ 0 ] . appendChild ( link ) ;
26
26
</ script >
27
27
</ head >
30
30
< div class ="reveal ">
31
31
< div class ="slides ">
32
32
33
- < section data-markdown ="00_cover.md " data-separator-vertical ="^___ "
34
- data-separator-notes ="^Note: ">
33
+ < section data-background ="#111111 ">
34
+
35
+ < h1 > Modern C++ #1</ h1 >
36
+ < h2 > Advanced features</ h2 >
37
+ < a href ="https://coders.school ">
38
+ < img width ="500 " data-src ="../coders_school_logo.png " alt ="Coders School " class ="plain ">
39
+ </ a >
40
+ < h3 > Łukasz Ziobroń</ h3 >
41
+ < h3 > Kamil Szatkowski</ h3 >
42
+
35
43
</ section >
36
- < section data-markdown ="00_agenda.md " data-separator-vertical ="^___ "
37
- data-separator-notes ="^Note: ">
44
+ < section data-markdown >
45
+ < textarea data-template >
46
+
47
+ # Agenda
48
+
49
+ * <!-- .element: class="fragment fade-in" --> intro (15’)
50
+ * <!-- .element: class="fragment fade-in" --> attributes (20’)
51
+ * <!-- .element: class="fragment fade-in" --> < code > constexpr</ code > (45’)
52
+ * <!-- .element: class="fragment fade-in" --> ☕️ break (15’)
53
+ * <!-- .element: class="fragment fade-in" --> < code > noexcept</ code > (25’)
54
+ * <!-- .element: class="fragment fade-in" --> data structure alignment (< code > alignas</ code > , < code > alignof</ code > ) (20’)
55
+ * <!-- .element: class="fragment fade-in" --> structured bindings (30’)
56
+ * <!-- .element: class="fragment fade-in" --> ☕️ break (10’)
57
+ * <!-- .element: class="fragment fade-in" --> lambda expressions in short (1h)
58
+ * <!-- .element: class="fragment fade-in" --> 🍝 lunch break (50’)
59
+ * <!-- .element: class="fragment fade-in" --> other useful features - review only (1h)
60
+ * <!-- .element: class="fragment fade-in" --> recap (20’)
61
+
62
+ </ textarea >
38
63
</ section >
39
64
40
65
< section >
@@ -46,7 +71,7 @@ <h2>Let's get to know each other</h2>
46
71
</ ol >
47
72
</ section >
48
73
49
- < section data-background ="../ img/lukasz.jpg ">
74
+ < section data-background ="img/lukasz.jpg ">
50
75
< h2 style ="text-shadow: 2px 2px black; "> Łukasz Ziobroń</ h2 >
51
76
< div class ="box fragment " style ="width: 45%; left: 0; top: 100px; ">
52
77
< h3 > Not only a programming XP</ h3 >
@@ -133,14 +158,14 @@ <h3>Hobbies</h3>
133
158
data-separator-notes ="^Note: ">
134
159
</ section >
135
160
136
- < section data-background ="../img/ coders_school_logo.png " data-background-size ="90% ">
161
+ < section data-background ="../coders_school_logo.png " data-background-size ="90% ">
137
162
< h2 > Thank you 🙂</ h2 >
138
163
</ section !-->
139
164
</ div >
140
165
141
166
</ div >
142
167
143
- < script src ="../js/reveal.js "> </ script >
168
+ < script src ="../../ js/reveal.js "> </ script >
144
169
145
170
< script >
146
171
// More info about config & dependencies:
@@ -153,11 +178,11 @@ <h2>Thank you 🙂</h2>
153
178
hash : true ,
154
179
pdfSeparateFragments : false ,
155
180
dependencies : [
156
- { src : '../plugin/externalcode/externalcode.js' , condition : function ( ) { return ! ! document . querySelector ( '[data-code]' ) ; } } ,
157
- { src : '../plugin/highlight/highlight.js' , async : true , callback : function ( ) { hljs . initHighlightingOnLoad ( ) ; } } ,
158
- { src : '../plugin/markdown/marked.js' } ,
159
- { src : '../plugin/markdown/markdown.js' } ,
160
- { src : '../plugin/notes/notes.js' , async : true }
181
+ { src : '../../ plugin/externalcode/externalcode.js' , condition : function ( ) { return ! ! document . querySelector ( '[data-code]' ) ; } } ,
182
+ { src : '../../ plugin/highlight/highlight.js' , async : true , callback : function ( ) { hljs . initHighlightingOnLoad ( ) ; } } ,
183
+ { src : '../../ plugin/markdown/marked.js' } ,
184
+ { src : '../../ plugin/markdown/markdown.js' } ,
185
+ { src : '../../ plugin/notes/notes.js' , async : true }
161
186
]
162
187
} ) ;
163
188
</ script >
0 commit comments