-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2330 lines (2200 loc) · 90.4 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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="keywords"
content="startup, startups, startup grind, entrepreneurship, entrepreneurs, google, tech, developers, technology, saas, product, ux, vc"
/>
<title>Home page | Startup Grind Tech Conference</title>
<!-- icons -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="images/favicons/apple_touch_icon.png"
/>
<link
rel="icon"
type="image/png"
href="images/favicons/favicon_32x32.png"
sizes="32x32"
/>
<link
rel="icon"
type="image/png"
href="images/favicons/favicon_16x16.png"
sizes="16x16"
/>
<link
rel="mask-icon"
href="images/favicons/safari_pinned_tab.svg"
color="#212121"
/>
<link rel="shortcut icon" href="images/favicons/favicon.ico" />
<meta name="msapplication-TileColor" content="#212121" />
<meta
name="msapplication-TileImage"
content="images/favicons/mstile_150x150.png"
/>
<!-- og -->
<meta property="og:site_name" content="Startup Grind" />
<meta property="og:url" content="https://www.startupgrind.cat" />
<meta
property="og:title"
content="Startup Grind Tech 2020 Conference - Barcelona, 13th May"
/>
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Startup Grind is the most valuable startup community in the world, delivering education, connections, and opportunities to help startups and scaleups grow."
/>
<meta
property="og:image"
content="https://startupgrind.cat/images/logo.png"
/>
<meta property="og:image:width" content="192" />
<meta property="og:image:height" content="192" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@StartupGrindBCN" />
<meta
name="twitter:title"
content="Startup Grind Tech 2020 Conference - Barcelona, 13th May"
/>
<meta
name="twitter:description"
content="Startup Grind is the most valuable startup community in the world, delivering education, connections, and opportunities to help startups and scaleups grow."
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="css/index.css" />
<script src="js/index.js" type="module"></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-49208647-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-49208647-1");
</script>
</head>
<body class="">
<header class="s-header" data-controller="menu">
<div class="s-header__main">
<a
class="s-header__logo"
href="/"
title="startup grind - bcn conference"
>
<div class="badge-logo">2021</div>
<img src="images/startup-grind.png" />
</a>
<button
class="s-header__hamburger"
aria-label="Toggle navigation"
data-menu-target="button"
data-action="menu#toggle"
>
<span class="icon-hamburger"></span>
</button>
<nav class="s-header__nav" data-menu-target="content">
<a id="chp-1" href="/#speakers">Speakers</a>
<a id="chp-2" href="/#partners">Partners</a>
<a id="chp-3" href="/faq">FAQ</a>
</nav>
</div>
<nav class="s-header__buttons" role="navigation">
<a
class="btn-red"
href="http://www.startupgrind.com/barcelona"
target="_blank"
>Past editions</a
>
<a
class="btn-green"
href="https://www.youtube.com/results?search_query=%22Startup+Grind+tech+conference%22"
target="_blank"
>Watch Our Videos</a
>
</nav>
</header>
<main>
<section class="s-hero on-screen" id="hero">
<div class="s-hero__container">
<h1>Important announcement</h1>
<h2>Our 2021 Conference has been cancelled</h2>
<a
target="_blank"
href="https://twitter.com/lexrodba/status/1324405517805146116"
title="Startup Grind Tech 2021 Conference"
>Read why</a
>
</div>
<div
class="s-hero__image initial"
style="background-image: url('images/hero.jpeg')"
></div>
</section>
<section class="s-info" data-onscreen="" id="what-to-expect">
<div class="s-info__container">
<div class="s-info__content">
<h1>We'll be back stronger!</h1>
<p>
The<b> fourth edition</b> of the
<b>Startup Grind Tech conference</b> was supposed to bring
the biggest Startup Grind Tech conference so far.
</p>
<p><br /></p>
<p>
We will keep working to ensure a huge comeback when things are
back to normal. Barcelona needs this conference, and we can't
stress how important it is for us to celebrate it in the heart of
the Catalan capital.
</p>
<p><br /></p>
<p>
We will be back stronger with a bigger conference and all the
learnings accumulated from the previous editions.
</p>
</div>
<div class="s-info__video">
<a
class="s-info__video-link"
href="https://www.youtube.com/watch?v=4U49mEGpSeA"
target="_blank"
>
<p class="s-info__video-description">
Conference 2019, Highlights
</p>
<img
class="s-info__video-icon initial loaded"
height="100"
width="100"
src="images/top_vide_play.png"
/>
<div class="s-info__image">
<img
alt="frame video"
class="initial loaded"
src="images/top_video.jpeg"
data-was-processed="true"
/>
</div>
</a>
</div>
</div>
</section>
<section class="s-speakers" data-onscreen="" id="speakers">
<div class="s-speakers__container">
<h2 class="h1 underline-heading">Speakers</h2>
<button
class="s-speakers__item"
data-bs-toggle="modal"
data-bs-target="#derekAndersenModal"
data-slide="0"
>
<div class="s-speakers__caption">
<div class="s-speakers__name">Derek Andersen</div>
<div class="s-speakers__position">CEO</div>
<div class="s-speakers__company">Startup Grind / Bevy</div>
</div>
<div class="s-speakers__image">
<img
src="images/speakers/derekandersen.jpeg"
alt="Derek Andersen"
/>
</div>
</button>
<div class="modal modal-speakers fade" id="derekAndersenModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="close" data-bs-dismiss="modal">
×
</button>
<div class="modal-speakers__item">
<div class="modal-speakers__image">
<img
src="images/speakers/derekandersen.jpeg"
alt="Derek Andersen"
/>
</div>
<div class="modal-speakers__content">
<div class="modal-speakers__name">Derek Andersen</div>
<div class="modal-speakers__position">
CEO - <strong>Startup Grind / Bevy</strong>
</div>
<div class="modal-speakers__hr"></div>
<div class="modal-speakers__description">
<p>
Derek Andersen is the founder and CEO of Startup Grind,
a community of over 500 Chapters in 135 countries
designed to educate, inspire, and connect entrepreneurs.
Startup Grind's values of giving, helping others, and
making friends have spread across the world. Since 2012
Startup Grind has hosted thousands of events for more
than 2,000,000 entrepreneurs. In 2009 Derek founded
Vaporware Labs, incubating many products including
Startup Grind and professional social network Commonred,
which was acquired by Income.com in 2012. Now, he's spun
off a separate company to manage online communities
called Bevy.<br />
</p>
</div>
<div class="modal-speakers__footer">
<a
class="modal-speakers__twitter"
href="https://twitter.com/DerekjAndersen"
target="_blank"
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="s-speakers__item"
data-bs-toggle="modal"
data-bs-target="#malinHolmbergModal"
data-slide="1"
>
<div class="s-speakers__caption">
<div class="s-speakers__name">Malin Holmberg</div>
<div class="s-speakers__position">Partner</div>
<div class="s-speakers__company">Target Global</div>
</div>
<div class="s-speakers__image">
<img
src="images/speakers/malinholmberg.jpeg"
alt="Malin Holmberg"
/>
</div>
</button>
<div class="modal modal-speakers fade" id="malinHolmbergModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="close" data-bs-dismiss="modal">
×
</button>
<div class="modal-speakers__item">
<div class="modal-speakers__image">
<img
src="images/speakers/malinholmberg.jpeg"
alt="Malin Holmberg"
/>
</div>
<div class="modal-speakers__content">
<div class="modal-speakers__name">Malin Holmberg</div>
<div class="modal-speakers__position">
Partner - <strong>Target Global</strong>
</div>
<div class="modal-speakers__hr"></div>
<div class="modal-speakers__description">
<p></p>
<p>
Prior to joining Target Team, Malin was the CEO of Tele2
Netherlands. For more than 15 years she has been working
in the Technology/Telecommunications industry across
Europe. At Tele2, Malin drove significant profitability
increase via digitalization, customer experience and
operational efficiency in Croatia, Central Europe and
the Netherlands.
</p>
<p>
Before that, Malin worked with technology innovation at
Tele2 in Stockholm and Vodafone in London, driving
innovation through developing new products such as voice
solutions, mobile money and IoT, and acquiring tech
startups. Previous experience includes over ten years
Strategy M&A/ Due Diligence in Technology at Marakon
Associates, ATKearney and Morgan Stanley – mainly based
in London. Malin holds an MBA from INSEAD in
France/Singapore and a Master of Science in Economics
from Stockholm School of Economics in Sweden.
</p>
<p></p>
</div>
<div class="modal-speakers__footer">
<a
class="modal-speakers__twitter"
href="targetglobalvc"
target="_blank"
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="s-speakers__item"
data-bs-toggle="modal"
data-bs-target="#miguelAndresModal"
data-slide="2"
>
<div class="s-speakers__caption">
<div class="s-speakers__name">Miguel Andrés</div>
<div class="s-speakers__position">CTO</div>
<div class="s-speakers__company">Badi</div>
</div>
<div class="s-speakers__image">
<img
src="images/speakers/miguelandres.jpeg"
alt="Miguel Andrés"
/>
</div>
</button>
<div class="modal modal-speakers fade" id="miguelAndresModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="close" data-bs-dismiss="modal">
×
</button>
<div class="modal-speakers__item">
<div class="modal-speakers__image">
<img
src="images/speakers/miguelandres.jpeg"
alt="Miguel Andrés"
/>
</div>
<div class="modal-speakers__content">
<div class="modal-speakers__name">Miguel Andrés</div>
<div class="modal-speakers__position">
CTO - <strong>Badi</strong>
</div>
<div class="modal-speakers__hr"></div>
<div class="modal-speakers__description">
<p></p>
<p>
Highly passionate engineering leader with 15+ years of
industry and research experience, focused on improving
people's lives through technology
</p>
<p>
Led the creation of several successful products with MM+
users from zero to one, including: identifying
first-of-kind opportunities, defining sound and scalable
technical architectures, gaining buy-in from senior
leadership and external key partners, and ultimately
building strong engineering teams to design, build,
launch and drive growth
</p>
<p>
Deeply and proudly involved in people growth initiatives
including hiring, promoting and mentoring top
engineering talent as well as building strong
engineering teams
</p>
<p>CORE SKILLS</p>
<p>
• Leadership: Built multiple strategic business
relationships. Own prioritization, road map and vision
for multiple multi-million user products. Consistent
record in driving products from idea to successful
commercial launch. Recruited and led high performing
teams.
</p>
<p>
• Project Management: Led multiple projects involving
50+ people working across geographies, Orgs and
functions.
</p>
<p>
• People Growth: Manager and mentor to engineers and
teams. Interviewer, member of hiring committee and core
contributor at recruiting events to acquire top talent
</p>
<p>
• Research: Distinguished Computer Science researcher
with extensive experience in Computer Security and
System Verification
</p>
<p>
• Technical: Extensive experience designing, building
and maintaining highly scalable and reliable systems --
have built systems serving 50K+ queries per second at
99.9+% availability. 15+ years of programming experience
</p>
<p>
Resume available at:
<a href="http://www.visualcv.com/gueles"
>www.visualcv.com/gueles</a
>
</p>
<br />
<p></p>
</div>
<div class="modal-speakers__footer">
<a
class="modal-speakers__twitter"
href="badi"
target="_blank"
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="s-speakers__item"
data-bs-toggle="modal"
data-bs-target="#linaChongModal"
data-slide="3"
>
<div class="s-speakers__caption">
<div class="s-speakers__name">Lina Chong</div>
<div class="s-speakers__position">Investment Director</div>
<div class="s-speakers__company">Target Global</div>
</div>
<div class="s-speakers__image">
<img src="images/speakers/linachong.png" alt="Lina Chong" />
</div>
</button>
<div class="modal modal-speakers fade" id="linaChongModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="close" data-bs-dismiss="modal">
×
</button>
<div class="modal-speakers__item">
<div class="modal-speakers__image">
<img src="images/speakers/linachong.png" alt="Lina Chong" />
</div>
<div class="modal-speakers__content">
<div class="modal-speakers__name">Lina Chong</div>
<div class="modal-speakers__position">
Investment Director - <strong>Target Global</strong>
</div>
<div class="modal-speakers__hr"></div>
<div class="modal-speakers__description">
<p></p>
<p>
Lina joined Target Global in 2018 after having worked in
product and monetization at ResearchGate, a company
aiming to connect the world of science. Prior to
ResearchGate, she was an investor at Hasso Plattner
Ventures, a fund backed by the Chairman of SAP. Lina
began her career as an entrepreneur operating two
startups, one of which was acquired by Living Social.
</p>
<p>
Lina received her Masters in Law and Business from
Bucerius Law School and WHU School of Management in
Germany, and a B.A. in Philosophy/ Law and Society from
the University of California, Riverside.
</p>
<p></p>
</div>
<div class="modal-speakers__footer">
<a
class="modal-speakers__twitter"
href="targetglobalvc"
target="_blank"
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="s-speakers__item"
data-bs-toggle="modal"
data-bs-target="#martinDavisModal"
data-slide="4"
>
<div class="s-speakers__caption">
<div class="s-speakers__name">Martin Davis</div>
<div class="s-speakers__position">CEO</div>
<div class="s-speakers__company">Draper Esprit</div>
</div>
<div class="s-speakers__image">
<img src="images/speakers/martindavis.jpeg" alt="Martin Davis" />
</div>
</button>
<div class="modal modal-speakers fade" id="martinDavisModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="close" data-bs-dismiss="modal">
×
</button>
<div class="modal-speakers__item">
<div class="modal-speakers__image">
<img
src="images/speakers/martindavis.jpeg"
alt="Martin Davis"
/>
</div>
<div class="modal-speakers__content">
<div class="modal-speakers__name">Martin Davis</div>
<div class="modal-speakers__position">
CEO - <strong>Draper Esprit</strong>
</div>
<div class="modal-speakers__hr"></div>
<div class="modal-speakers__description">
<p>CEO @ Draper Esprit</p>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="s-speakers__item"
data-bs-toggle="modal"
data-bs-target="#danielaGoicoecheaModal"
data-slide="5"
>
<div class="s-speakers__caption">
<div class="s-speakers__name">Daniela Goicoechea</div>
<div class="s-speakers__position">CMO & Founder</div>
<div class="s-speakers__company">Goiko Grill</div>
</div>
<div class="s-speakers__image">
<img
src="images/speakers/danielagoicoechea.jpeg"
alt="Daniela Goicoechea"
/>
</div>
</button>
<div class="modal modal-speakers fade" id="danielaGoicoecheaModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="close" data-bs-dismiss="modal">
×
</button>
<div class="modal-speakers__item">
<div class="modal-speakers__image">
<img
src="https://images.locomotive.works/steam/dynamic/W1siZnUiLCJodHRwczovL2Nkbi5sb2NvbW90aXZlLndvcmtzL3NpdGVzLzVjMmRkYTg1MjQ2ODY4MDAyNGUzMDFkNC9jb250ZW50X2VudHJ5NWMzY2I2NmQ0ZWM0YzMwMDFjNDkzNTNhLzVlMzlmNWIxNWM0MDM4MDBhODQ0YzA2Yi9maWxlcy9nb2ljb2VjaGVhLmpwZz8xNTgwODU2NzUzIl0sWyJwIiwidGh1bWIiLCI0MDB4NTAwIyJdXQ/739046ddd6e28512/goicoechea.jpg"
alt="Daniela Goicoechea"
/>
</div>
<div class="modal-speakers__content">
<div class="modal-speakers__name">Daniela Goicoechea</div>
<div class="modal-speakers__position">
CMO & Founder - <strong>Goiko Grill</strong>
</div>
<div class="modal-speakers__hr"></div>
<div class="modal-speakers__description">
<p>
Venezuelan living in Madrid. Daniela holds a Bachelor of
Architecture from the Universidad Simón Bolívar in
Caracas-Venezuela and a Masters degree in Strategic
Design from IED Master in Madrid-Spain. She jumpstarted
Goiko Grill with her brother and parents in 2013. Since
then and until 2019 has served as its CMO, and has been
able to create along with her marketing team, a Spanish
Love Brand and a social media movement that catapulted
Goiko’s growth. She proudly earned a National Marketing
Award for the company -within other recognitions- and
became a keynote speaker that inspired on the matter
among entrepreneurs, mainly struggling with her same
challenges at first stages. Goiko currently owns 80
restaurants nationwide and employs more than 1300
people, while being a success case for the industry. in
2019 Daniela decided it was time to close the burger
chapter and recently started her own marketing
consultancy firm. She calls herself a Love-Storyteller,
and she strongly believes in the power of purpose. In
addition, Daniela is a mother of one, and loves country
music and peanut butter.<br />
</p>
</div>
<div class="modal-speakers__footer">
<a
class="modal-speakers__twitter"
href="goico"
target="_blank"
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="s-speakers__item"
data-bs-toggle="modal"
data-bs-target="#carolineChayotModal"
data-slide="6"
>
<div class="s-speakers__caption">
<div class="s-speakers__name">Caroline Chayot</div>
<div class="s-speakers__position">Partner</div>
<div class="s-speakers__company">Atomico</div>
</div>
<div class="s-speakers__image">
<img
src="images/speakers/carolinechayot.jpeg"
alt="Caroline Chayot"
/>
</div>
</button>
<div class="modal modal-speakers fade" id="carolineChayotModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="close" data-bs-dismiss="modal">
×
</button>
<div class="modal-speakers__item">
<div class="modal-speakers__image">
<img
src="images/speakers/carolinechayot.jpeg"
alt="Caroline Chayot"
/>
</div>
<div class="modal-speakers__content">
<div class="modal-speakers__name">Caroline Chayot</div>
<div class="modal-speakers__position">
Partner - <strong>Atomico</strong>
</div>
<div class="modal-speakers__hr"></div>
<div class="modal-speakers__description">
<p>
Caroline Chayot is a Partner at Atomico where she helps
companies hire, develop and retain the best talent in
Europe. Previously she led the EMEA HR team at Twitter,
where she supported the leadership team in scaling the
business from two to six markets and grew the team from
80 based in London to 500 across the region. Prior to
that she worked at Google in HR for 9 years.<br />
</p>
</div>
<div class="modal-speakers__footer">
<a
class="modal-speakers__twitter"
href="cchayot"
target="_blank"
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="s-speakers__item"
data-bs-toggle="modal"
data-bs-target="#dorionCarrollModal"
data-slide="7"
>
<div class="s-speakers__caption">
<div class="s-speakers__name">Dorion Carroll</div>
<div class="s-speakers__position">
VP of Customer Engagement Technologies
</div>
<div class="s-speakers__company">Amazon</div>
</div>
<div class="s-speakers__image">
<img
src="images/speakers/dorioncarroll.jpeg"
alt="Dorion Carroll"
/>
</div>
</button>
<div class="modal modal-speakers fade" id="dorionCarrollModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="close" data-bs-dismiss="modal">
×
</button>
<div class="modal-speakers__item">
<div class="modal-speakers__image">
<img
src="images/speakers/dorioncarroll.jpeg"
alt="Dorion Carroll"
/>
</div>
<div class="modal-speakers__content">
<div class="modal-speakers__name">Dorion Carroll</div>
<div class="modal-speakers__position">
VP of Customer Engagement Technologies -
<strong>Amazon</strong>
</div>
<div class="modal-speakers__hr"></div>
<div class="modal-speakers__description">
<p></p>
<p>
Dorion Carroll is a 20-year veteran engineer with deep
experience developing product and services in areas
including search, email processing, e-commerce,
personalization, ad targeting, CRM, data warehousing,
order management and financial services. Prior to
joining Technorati, Dorion was director of engineering
at Postini, Vice President of Engineering and General
Manager of Neomeo (which was acquired by Postini),
Technologist-in-Residence at Softbank Venture Capital,
and Senior Director of Engineering at Excite@Home, among
other roles. Dorion has a Bachelor of Arts from Pitzer
College, with four years Mathematics / Computer Science
at Harvey Mudd College, in Claremont, California.
</p>
<p>
He'd been working as CTO and CIO at Zynga, the mobile
gaming company responsible for titles like Farmville,
Clash of Titans, Words with Friends, Zynga Poker and
many others, before joining Amazon as VP of Customer
Engagement Technologies.
</p>
<br />
<p></p>
</div>
<div class="modal-speakers__footer">
<a
class="modal-speakers__twitter"
href="dorion"
target="_blank"
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="s-speakers__item"
data-bs-toggle="modal"
data-bs-target="#chadWestModal"
data-slide="8"
>
<div class="s-speakers__caption">
<div class="s-speakers__name">Chad West</div>
<div class="s-speakers__position">CMO</div>
<div class="s-speakers__company">Revolut</div>
</div>
<div class="s-speakers__image">
<img src="images/speakers/chadwest.jpeg" alt="Chad West" />
</div>
</button>
<div class="modal modal-speakers fade" id="chadWestModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="close" data-bs-dismiss="modal">
×
</button>
<div class="modal-speakers__item">
<div class="modal-speakers__image">
<img src="images/speakers/chadwest.jpeg" alt="Chad West" />
</div>
<div class="modal-speakers__content">
<div class="modal-speakers__name">Chad West</div>
<div class="modal-speakers__position">
CMO - <strong>Revolut</strong>
</div>
<div class="modal-speakers__hr"></div>
<div class="modal-speakers__description">
<p></p>
<p>
Chad is Director of Marketing & Comms at Revolut, a
UK financial technology company that offers banking
services.
</p>
<p>
He previously held the same position at Rocket Internet.
</p>
<p></p>
</div>
<div class="modal-speakers__footer">
<a
class="modal-speakers__twitter"
href="chadwesttweets"
target="_blank"
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="s-speakers__item"
data-bs-toggle="modal"
data-bs-target="#lizDunnModal"
data-slide="9"
>
<div class="s-speakers__caption">
<div class="s-speakers__name">Liz Dunn</div>
<div class="s-speakers__position">CEO</div>
<div class="s-speakers__company">LCDC</div>
</div>
<div class="s-speakers__image">
<img src="images/speakers/lizdunn.jpeg" alt="Liz Dunn" />
</div>
</button>
<div class="modal modal-speakers fade" id="lizDunnModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="close" data-bs-dismiss="modal">
×
</button>
<div class="modal-speakers__item">
<div class="modal-speakers__image">
<img src="images/speakers/lizdunn.jpeg" alt="Liz Dunn" />
</div>
<div class="modal-speakers__content">
<div class="modal-speakers__name">Liz Dunn</div>
<div class="modal-speakers__position">
CEO - <strong>LCDC</strong>
</div>
<div class="modal-speakers__hr"></div>
<div class="modal-speakers__description">
<p></p>
<p>
One can look at her career as a list of emerging
technologies that went mainstream: a handheld PDA, a
search engine, a streaming video platform, photo
sharing, blog search, the first celebrity/UGC comedy
video destination site, a streaming movie
Netflix-competitor, streaming radio, and now, looking
into the future to bring immersive video experiences to
mobile users. During the dot-com crash, she opened San
Francisco's first organic patisserie, Miette. Now, she's
investing in the next group of world-changers.
</p>
<p>
New technologies excite Liz, uncharted territory is her
favorite place to go. She excels at making technology
accessible and delightful to the end user. General
Magic's PDA could send wireless email in 1994. SpotLife
was a pre-YouTube broadcasting platform that let anyone
stream, cam, or post clips of their lives back in 2000.
Kodak/Ofoto pioneered online photo sharing. Funny or Die
broke the wall between professional and amateur
entertainment with hilarious videos starring A-list
celebrities. Pandora is the first, and best,
personalized radio station that plays only the music you
love. These are some of the places she's been privileged
to work and change the way the world uses technology and
entertains itself.
</p>
<br />
<p></p>
</div>
<div class="modal-speakers__footer">
<a
class="modal-speakers__twitter"
href="lizdunn"
target="_blank"
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<button
class="s-speakers__item"
data-bs-toggle="modal"
data-bs-target="#samuelFuentesModal"
data-slide="10"
>
<div class="s-speakers__caption">
<div class="s-speakers__name">Samuel Fuentes</div>
<div class="s-speakers__position">CTO & Co-founder</div>
<div class="s-speakers__company">OnTruck</div>
</div>
<div class="s-speakers__image">
<img
src="images/speakers/samuelfuentes.jpeg"
alt="Samuel Fuentes"
/>
</div>
</button>
<div class="modal modal-speakers fade" id="samuelFuentesModal">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<button type="button" class="close" data-bs-dismiss="modal">
×
</button>
<div class="modal-speakers__item">
<div class="modal-speakers__image">
<img
src="images/speakers/samuelfuentes.jpeg"
alt="Samuel Fuentes"
/>
</div>
<div class="modal-speakers__content">
<div class="modal-speakers__name">Samuel Fuentes</div>
<div class="modal-speakers__position">
CTO & Co-founder - <strong>OnTruck</strong>
</div>
<div class="modal-speakers__hr"></div>
<div class="modal-speakers__description">
<p></p>
<p>
Building web platforms and teams since 2002, with a
focus towards entrepreneurship, innovation and
start-ups. I work as (a mix of): entrepreneur, tech
lead, coach, system architect and software developer.
</p>
<p>
I like: technical challenges, growth, leadership, lean
approaches
</p>
<p>
Specialties: tech strategy, team building, e-commerce,
agile/lean, scaling teams and web platforms
</p>
<p>
Serious coding and system design done in: Python, Java,
C++, PHP, ASP and BASH+CGI. Lately focused on Python but
language-agnostic.
</p>