forked from movio/careers-presentation-2013
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
320 lines (290 loc) · 9.16 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<!doctype html>
<html lang="en">
<head>
<style type="text/css">
.reveal section img.no-border {
border: none;
background: none;
box-shadow: none;
}
</style>
<meta charset="utf-8">
<title>Auckland Uni Careers 2013</title>
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/default.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
<script>
document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<img class="no-border" src="img/movio.png" />
</section>
<section>
<h1>Movio?</h1>
<div>
<br>
</div>
</section>
<section>
<h2>Customer Loyalty</h2>
<div>
<img class="no-border" src="img/hoytsrewards.jpg" />
<img class="no-border" src="img/villageclub.jpg" />
<img class="no-border" src="img/cinebuzz.jpg" />
</div>
</section>
<section>
<h2>Cinema</h2>
<div>
<img class="no-border" src="img/village.jpg" />
<img class="no-border" src="img/warnerbros.jpg" />
<img class="no-border" width="40%" src="img/universal.jpg" />
<img class="no-border" width="40%" src="img/disney.jpg" />
<img class="no-border" src="img/event.jpg" />
<img class="no-border" width="40%" src="img/hoyts.jpg" />
</div>
</section>
<section>
<h2>global Marketing</h2>
<div>USA - 18 million</div>
<div>Canada - 3.7 million</div>
<div>Australia / NZ - 4.3 million</div>
<div>
<br>
</div>
<div>
<b>World wide customers - 26 million</b>
</div>
</section>
<section>
<h1>Tech</h1>
</section>
<section>
<h2>Java</h2>
<div>
<div style="text-align: left; font-size: 50%;">
<pre><code style="max-height: 600px;">public class Person {
private final String firstName;
public Person(String firstName) {
this.firstName = firstName;
}
public String getFirstName() {
return firstName;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((firstName == null) ? 0 : firstName.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Person other = (Person) obj;
if (firstName == null) {
if (other.firstName != null)
return false;
} else if (!firstName.equals(other.firstName))
return false;
return true;
}
@Override
public String toString() {
return "Person [firstName=" + firstName + "]";
}
} </code></pre>
</div>
</div>
<br>
</section>
<section>
<h2>Scala</h2>
<div>
<br>
</div>
<div>
<pre><code>case class Person (
firstName: String
) </code></pre>
</div>
<br>
</section>
<section>
<h2>Big data</h2>
<div><br><br></div>
<img class="no-border" width="40%" src="img/google.png" /> <br/>
<img class="no-border" width="40%" src="img/twitter.png" /> <br/>
<img class="no-border" width="40%" src="img/facebook.png" /> <br/>
</section>
<section>
<h2>Cassandra</h2>
<img class="no-border" width="70%" src="img/scale.png" /> <br/>
</section>
<section>
<h2>Frontend</h2>
<img class="no-border" width="40%" src="img/angular.png" /> <br/>
<img class="no-border" width="40%" src="img/coffeescript.gif" /> <br/>
<img class="no-border" src="img/sass.jpg" /> <br/>
</section>
<section>
<h2>Cool stuff</h2>
<div>Open Source</div>
<div>High Performance Clustering</div>
<div>SAAS / Cloud</div>
<div>Functional Programming</div>
<div>Machine Learning</div>
</section>
<section>
<h2>Tools</h2>
<div><br></div>
<img class="no-border" src="img/macpclinux.jpg" /> <br/>
</section>
<section>
<h1>Who</h1>
<div>
<br>
</div>
</section>
<section>
<h2>Team</h2>
<div>Coding is our passion</div>
</section>
<section>
<h2>Community</h2>
<div>
<br>
</div>
<h3>Meetups</h3>
<div>
<div>NZ Scala</div>
<div>Functional Programming Auckland</div>
<div>Kiwi Code Retreat</div>
</div>
</section>
<section>
<h2>What are we looking for?</h2>
</section>
<section>
<p>
<span>sound like you?</span>
</p>
</section>
<section>
<h1>Apply</h1>
</section>
<section>
<h2>treasure hunt</h2>
<div>where do these guys live?</div>
<div>
<img class="no-border" width="30%" src="img/ironcat.jpg" />
<img class="no-border" width="30%" src="img/xtocat.jpg" />
<img class="no-border" width="30%" src="img/eltocat.jpg" />
</div>
<div>
<br>
</div>
<div>go there and knock on the <b>Movio</b> door <i>(not our office)</i></div>
<div>look for a reference to this presentation</div>
<div>... the hunt continues</div>
</section>
<section>
<h2>to be revealed...</h2>
</section>
<section>
<h2>...</h2>
</section>
<section>
<h2>Well Done</h2>
<div>almost there</div>
<div>
<br>
</div>
<div>
<i><!-- next reveal the hidden secret --></i>
</div>
</section>
<!--
If you made it here you're still in the hunt
* Uncomment the last slide and
* Reload
-->
<section>
<h2>To apply...</h2>
<p>
</p>
<p>
<span id="codeSpan" >Work out this secret code: <input id="codeInput" style="font-size:30px" onkeyup="checkCode(document.getElementById('codeInput').value);" /></span>
</p>
<span>
<br>
</span>
<span>or</span>
<span>
<br>
</span>
<span>
<br>
</span>the boring way [email protected]</section>
<script>
// Hint: Try to decipher this (Not manually matching each letter ofcourse) =)
var _0x3769=[
"\x69\x4C\x6F\x76\x65\x4D\x6F\x76\x69\x65\x73",
"\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C",
"\x63\x6F\x64\x65\x53\x70\x61\x6E",
"\x67\x65\x74\x45\x6C\x65\x6D\x65\x6E\x74\x42\x79\x49\x64",
"\x43\x72\x65\x61\x74\x65\x20\x61\x20\x70\x75\x6C\x6C\x20\x72\x65\x71\x75\x65\x73" +
"\x74\x20\x6F\x6E\x20\x74\x68\x69\x73\x20\x72\x65\x70\x6F\x20\x74\x68\x61\x74\x20" +
"\x6D\x61\x6B\x65\x73\x20\x74\x68\x69\x73\x20\x70\x72\x65\x73\x65\x6E\x74\x61\x74" +
"\x69\x6F\x6E\x20\x62\x65\x74\x74\x65\x72\x20\x69\x6E\x20\x73\x6F\x6D\x65\x20\x77" +
"\x61\x79\x2C\x20\x77\x65\x27\x6C\x6C\x20\x63\x6F\x6E\x74\x61\x63\x74\x20\x79\x6F" +
"\x75\x20\x69\x6E\x20\x74\x68\x65\x20\x63\x6F\x6D\x6D\x65\x6E\x74\x73"];
function checkCode(_0x2475x2){var _0x2475x3=_0x3769[0];
if(_0x2475x2==_0x2475x3){document[_0x3769[3]](_0x3769[2])[_0x3769[1]]=_0x3769[4];} ;} ;
</script>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
// { src: 'plugin/search/search.js', async: true, condition: function() { return !!document.body.classList; } }
// { src: 'plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>
</html>