-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (99 loc) · 3.55 KB
/
Copy pathindex.html
File metadata and controls
108 lines (99 loc) · 3.55 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Modern C++</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="reveal.js-3.6.0/css/reveal.css">
<link rel="stylesheet" href="reveal.js-3.6.0/css/theme/dark.css" id="theme">
<link rel="stylesheet" href="reveal.js-3.6.0/lib/css/zendark.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Modern C++ <br>
Standard Practices from Standard Library</h2>
<br>
<h3 id="c1">A brief overview of Modern C++ features</h3>
<br>
<p>
<small>Stefano Lusardi, Software Developer</small>
</p>
</section>
<!-- 1. Introduction, Standards and Compiler Enhancements -->
<section>
<h3>1. Introduction, C++ Standards and Compiler Enhancements</h3>
<br>
<p><a href="#/2" id="c1"><u>Abstract</u></a></p>
<br>
<p><a href="1_Intro_CompilerEnhancements" id="c1"><u>Slides</u></a></p>
<br>
</section>
<section data-markdown="1_Intro_CompilerEnhancements/Abstract.md"
data-separator-vertical="^\r?\n"
data-separator="^\r?\n\n">
</section>
<!-- 2. Move Semantics and Smart Pointers -->
<section>
<h3>2. Move Semantics and Smart Pointers</h3>
<br>
<p><a href="#/4" id="c1"><u>Abstract</u></a></p>
<br>
<p><a href="2_MoveSemantics_SmartPointers" id="c1"><u>Slides</u></a></p>
<br>
</section>
<section data-markdown="2_MoveSemantics_SmartPointers/Abstract.md"
data-separator-vertical="^\r?\n"
data-separator="^\r?\n\n">
</section>
<!-- 3. STL Algorithms, Lambda Expressions and auto -->
<section>
<h3>3. STL Algorithms, Lambda Expressions and <i>auto</i></h3>
<br>
<p><a href="#/6" id="c1"><u>Abstract</u></a></p>
<br>
<p><a href="3_Lambda_Algorithms_Auto" id="c1"><u>Slides</u></a></p>
<br>
</section>
<section data-markdown="3_Lambda_Algorithms_Auto/Abstract.md"
data-separator-vertical="^\r?\n"
data-separator="^\r?\n\n">
</section>
<!-- 4. C++17 new features -->
<section>
<h3>4. C++17 new features</h3>
<br>
<p><a href="#/8" id="c1"><u>Abstract</u></a></p>
<br>
<p><a href="4_C++17" id="c1"><u>Slides</u></a></p>
<br>
</section>
<section data-markdown="4_C++17/Abstract.md"
data-separator-vertical="^\r?\n"
data-separator="^\r?\n\n">
</section>
</div>
</div>
<script src="reveal.js-3.6.0/lib/js/head.min.js"></script>
<script src="reveal.js-3.6.0/js/reveal.js"></script>
<script>
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide',
dependencies: [
{ src: 'reveal.js-3.6.0/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'reveal.js-3.6.0/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal.js-3.6.0/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal.js-3.6.0/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'reveal.js-3.6.0/plugin/search/search.js', async: true },
{ src: 'reveal.js-3.6.0/plugin/zoom-js/zoom.js', async: true },
{ src: 'reveal.js-3.6.0/plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>