-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (101 loc) · 4.12 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
<html>
<head>
<title>Akka HTTP and Back Pressure</title>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/moon.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<!--Theme used for syntax highlighting of code-->
<link rel="stylesheet" href="lib/css/darkula.css">
<style>
.reveal pre code {
padding: 5px;
overflow: auto;
max-height: 800px;
word-wrap: normal;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<section style="height: 100%; width: 100%">
<h1>Akka HTTP and Back Pressure</h1>
<h2>Zachary Pitts</h2>
<p>October 12, 2016</p>
<p style="position: center;">
</p>
<div style="text-align: left; position: absolute; bottom: 100px; left: 0px;">
<i class="fa fa-github"></i> @zacharyp<br>
<i class="fa fa-twitter"></i> @zacharypitts<br>
<i class="fa fa-envelope"></i> [email protected]<br>
<i class="fa fa-linkedin-square"></i></i> https://www.linkedin.com/in/zachary-pitts-874b61b
<br>
<a href="https://github.com/easel/akka-streams-intro">https://github.com/zacharyp/akka-http-presentation</a><br>
</div>
</section>
<section data-markdown="slides/01-intro.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:"
data-charset="iso-8859-15">
</section>
<section data-markdown="slides/02-akka-streams.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:"
data-charset="iso-8859-15">
</section>
<section data-markdown="slides/03-spray-io.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:"
data-charset="iso-8859-15">
</section>
<section data-markdown="slides/04-akka-http.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:"
data-charset="iso-8859-15">
</section>
<section style="height: 100%; width: 100%">
<h1>Akka HTTP and Back Pressure Demo</h1>
</section>
<section data-markdown="slides/05-final.md"
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:"
data-charset="iso-8859-15">
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
Reveal.initialize({
history: true,
// The "normal" size of the presentation, aspect ratio will be preserved
// when the presentation is scaled to fit different resolutions. Can be
// specified using percentage units.
width: "1280",
height: "1024",
// Factor of the display size that should remain empty around the content
margin: 0.02,
// Bounds for smallest/largest possible scale to apply to content
minScale: 0.2,
maxScale: 3,
dependencies: [
{src: 'plugin/markdown/marked.js'},
{src: 'plugin/markdown/markdown.js'},
{src: 'plugin/notes/notes.js', async: true},
{
src: 'plugin/highlight/highlight.js', async: true, callback: function () {
hljs.initHighlightingOnLoad();
}
}
]
});
Reveal.configure({slideNumber: 'c/t'});
</script>
</body>
</html>