-
Notifications
You must be signed in to change notification settings - Fork 0
/
CQRS-ES.html
115 lines (81 loc) · 3.26 KB
/
CQRS-ES.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Cqrs - Event Sourcing</title>
<link href="./CQRS-ES/css" rel="stylesheet" type="text/css">
<link href="./CQRS-ES/css(1)" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="./CQRS-ES/reset.css">
<link rel="stylesheet" href="./CQRS-ES/main.css">
<link rel="stylesheet" href="./CQRS-ES/zenburn.css">
<base href="." target="_blank">
</head>
<body class=" ready">
<div id="reveal">
<div class="slides">
<section class="past" style="display: none;">
<h1>Cqrs </h1>
<h1>Event Sourcing</h1>
<h4>JugDay 2017 May 13th</h4>
<h4>Alessandro Dalfovo </h4>
<br><br>
<p>You can navigate with <span class="key">→</span> and <span class="key">↓</span>.
</p>
<p>
<small>Also <span class="key">space</span> gives an exposé mode that might break your browser.</small>
</p>
</section>
<section class="past" style="display: none;">
<h2>About me...</h2>
<p>
I'm a wannabe good developer
</p>
<p>
<img src="./CQRS-ES/avatar.png" width=100 height=100 />
<h4>@f48u1020</h4>
</p>
</section>
<section class="past" style="display: none;">
<h2>Where we were?</h2>
<p>We lost ourselves in an ancient Web Application born in the 2000
</p>
</section>
</div>
<!-- The navigational controls UI -->
<aside class="controls" style="display: block;">
<a class="left enabled" href="https://dl.dropboxusercontent.com/u/39519/talks/jsconf-tools/index.html#">◄</a>
<a class="right enabled" href="https://dl.dropboxusercontent.com/u/39519/talks/jsconf-tools/index.html#">►</a>
<a class="up " href="https://dl.dropboxusercontent.com/u/39519/talks/jsconf-tools/index.html#">▲</a>
<a class="down enabled" href="https://dl.dropboxusercontent.com/u/39519/talks/jsconf-tools/index.html#">▼</a>
</aside>
<!-- Displays presentation progress, max value changes via JS to reflect # of slides -->
<div class="progress" style="display: block;"><span style="width: 1309.09px;"></span></div>
</div>
<script src="./CQRS-ES/reveal.js"></script>
<script src="./CQRS-ES/highlight.js"></script>
<script>
// Parse the query string into a key/value object
var query = {};
Reveal.initialize(
{
// Display controls in the bottom right corner
controls: true,
// Display a presentation progress bar
progress: true,
// If true; each slide will be pushed to the browser history
history: true,
// Apply a 3D roll to links on hover
rollingLinks: true,
// UI style
theme: query.theme || 'default', // default/neon
// Transition style
transition: query.transition || 'default' // default/cube/page/concave/linear(2d)
});
hljs.initHighlightingOnLoad();
</script>
<script src="./CQRS-ES/md5.js"></script>
<script src="./CQRS-ES/setup.js"></script>
<link rel="stylesheet" href="./CQRS-ES/carousel.css">
<script src="./CQRS-ES/carousel.js"></script>
</body>
</html>