-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
311 lines (226 loc) · 7.86 KB
/
index.html
File metadata and controls
311 lines (226 loc) · 7.86 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Software Evangelism, Wat? by @dlitvakb</title>
<meta name="description" content="Software Evangelism, Wat? by @dlitvakb">
<meta name="author" content="David Litvak Bruno">
<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, minimal-ui">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/contentful.css" id="theme">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h1>Software Evangelism, wat?</h1>
<br />
<br />
<br />
<br />
<h3>David Litvak Bruno (<a href='http://twitter.com/dlitvakb'>@dlitvakb</a>)</h3>
<h4>
<a href='http://contentful.com'>
<img data-src="contentful/logo_white_340x90.png" alt="Contentful Logo" />
</a>
</h4>
</section>
<section data-background='/images/evangelista.jpg'>
</section>
<section data-background='/images/troll.png'>
<h2 style='color: black;'>Not that</h2>
</section>
<section data-background='/images/jobs.jpg'>
</section>
<section data-markdown>
Somos un referente de la empresa
Estamos entre el producto y los desarrolladores externos
</section>
<section data-markdown>
Compartimos responsabilidades con varias áreas de la empresa
</section>
<section data-markdown>
### Qué hacemos?
* Software
* Publicidad
* Comunidad
</section>
<section>
<h2>Software</h2>
<img src='/images/software.jpg' />
</section>
<section data-markdown>
Desarrollamos un *Ecosistema*
* SDKs
* Tooling
* Integraciones
* Ejemplos
</section>
<section data-markdown>
Nuestro rol es acercar desarrolladores a las herramientas que promovemos
Estamos para ayudarlos a utilizar nuestro producto
</section>
<section data-markdown>
Nuestro código es Open Source
Tenemos que mantener Standards de Calidad
</section>
<section data-markdown>
### Minimum Viable Snippet
```ruby
require 'contentful'
client = Contentful::Client.new(
space: 'cfexampleapi',
access_token: 'b4c0n73n7fu1',
dynamic_entries: :auto
)
entry_id = 'nyancat'
cat = client.entry(entry_id)
puts cat.name # => "Nyan Cat"
puts "I like #{cat.likes.join(' and ')}" # => "I like rainbows and fish"
puts "I have #{cat.lives} lives" # => "I have 1337 lives"
```
</section>
<section>
<h3>Documentación Útil</h3>
<img src='/images/docs.png' />
</section>
<section>
<h3>Convenciones de Código</h3>
<img style='background: white;' src='/images/rubocop.png' />
</section>
<section>
<h3>Suites de Tests</h3>
<img src='/images/specs.png'>
</section>
<section>
<h3>Changelogs</h3>
<p><a href='http://keepachangelog.com'>http://keepachangelog.com</a></p>
<img src='/images/changelog.png' />
</section>
<section>
<h3>Guidelines de Contribución</h3>
<img src='/images/contributing.png'>
</section>
<section>
<h3>Licencias</h3>
<img src='/images/license.png'>
</section>
<section>
<img src='/images/publicidad.jpg' />
</section>
<section>
<h3>Blogs</h3>
<img src='/images/blog.png' />
</section>
<section>
<h3>Tutoriales</h3>
<img src='/images/tutorial.png' />
</section>
<section>
<h3>Twitter</h3>
<img src='/images/twitter.png' />
</section>
<section data-markdown>
... y otros medios de comunicación ...
</section>
<section data-markdown>
Damos visibilidad al producto
Los desarrolladores confían más en la opinión de otro desarrollador
</section>
<section data-markdown>
Entonces, nosotros ayudamos a que otros desarrolladores prueben nuestros
productos, busquen nuevos casos de uso y resolvamos mejor sus problemas
Este es nuestro objetivo, que nuestro producto sea el *Standard de facto* para el caso de uso que promocionamos
</section>
<section>
<h2>Comunidad</h2>
<img style='background: white;' height='500px' src='/images/comunidad.png' />
</section>
<section>
<p><b>Los escuchamos! ❤</b></p>
<p>El Software Evangelist participa de todo Meetup y Conferencia que puede!<p>
<p>Y a veces son afuera! <img width='32px' src='/images/airplane.png' /></p>
</section>
<section data-markdown>
Buscamos ofrecer nuestro producto a la mayor cantidad posible de desarrolladores
al poder brindarles soluciones en sus tecnologías preferidas
Queremos que puedas utilizar nuestro producto desde todos ellos
</section>
<section data-markdown>
Debemos conocer a la competencia
Entender nuestras ventajas y nuestras debilidades
Comprender en qué nos diferenciamos
</section>
<section data-markdown>
Nuestro rol dentro de la comunidad, también es el de generador de ideas
Queremos que a través de nuestras charlas, te sientas inspirado para realizar
algún nuevo proyecto
</section>
<section data-markdown>
Por eso, les propongo que al salir de acá, busquen un proyecto para hacer:
* Pueden ayudar en algún proyecto Open Source
* Pueden crear algo nuevo
* Pueden crear algo nuevo usando **contentful**!!
</section>
<section>
<h2>¿ Preguntas ?</h2>
<img src='/images/wat.jpg' />
<p>Pueden leer más acá: <br /><a href='http://developer-evangelism.com/'>http://developer-evangelism.com/</a></p>
</section>
<section>
<h2>Gracias!</h2>
<img height='200px;' src='/images/yatusabe.gif' />
<p>We're Hiring!</p>
<p>
David Litvak Bruno (<a href='http://twitter.com/dlitvakb'>@dlitvakb</a>)
<a href='mailto:david.litvak@contentful.com'>david.litvak@contentful.com</a>
</p>
<h4>
<a href='http://contentful.com'>
<img data-src="contentful/logo_white_340x90.png" alt="Contentful Logo" />
</a>
</h4>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
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 },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>