-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
2123 lines (1992 loc) · 88.7 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 id="top" lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>freeCodeCampBA Conf 2020</title>
<meta name="title" content="freeCodeCampBA Conf 2020" />
<meta
name="description"
content="freeCodeCampBA Conf es una conferencia online, 100% gratuita, con charlas sobre desarrollo, tecnología y soft skills, enfocada a personas que estén dando sus primeros pasos en la industria o buscando insertarse."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://freecodecampba.org/conf2020/" />
<meta property="og:title" content="freeCodeCampBA Conf 2020" />
<meta
property="og:description"
content="freeCodeCampBA Conf es una conferencia online, 100% gratuita, con charlas sobre desarrollo, tecnología y soft skills, enfocada a personas que estén dando sus primeros pasos en la industria o buscando insertarse."
/>
<meta
property="og:image"
content="https://ik.imagekit.io/di61zq8lsy/og-fccba-conf-2020_LLHtp3I_F.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://freecodecampba.org/conf2020/" />
<meta property="twitter:title" content="freeCodeCampBA Conf 2020" />
<meta
property="twitter:description"
content="freeCodeCampBA Conf es una conferencia online, 100% gratuita, con charlas sobre desarrollo, tecnología y soft skills, enfocada a personas que estén dando sus primeros pasos en la industria o buscando insertarse."
/>
<meta
property="twitter:image"
content="https://ik.imagekit.io/di61zq8lsy/og-fccba-conf-2020_LLHtp3I_F.png"
/>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="dist/styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap"
rel="stylesheet"
/>
<script src="https://kit.fontawesome.com/7a1eabd748.js" crossorigin="anonymous"></script>
<script
async
defer
data-domain="freecodecampba.org/conf2020"
src="https://plausible.io/js/plausible.js"
></script>
</head>
<body class="overflow-x-hidden">
<header class="fixed z-10 bg-fafafa w-full top-0 shadow-sm">
<div class="hint shadow-inner"></div>
<nav class="py-1">
<div class="flex justify-between text-sm">
<div class="ml-4">
<a href="#top">
<img class="object-scale-down w-6" src="assets/home.svg" alt="" />
</a>
</div>
<div>
<a
href="#speakers"
class="hidden sm:inline transition text-gray-600 hover:text-gray-900 font-normal mr-4"
>
Speakers
</a>
<a
href="#schedule"
class="transition text-gray-600 hover:text-gray-900 font-normal mr-4"
>
Programa
</a>
<a href="#faq" class="transition text-gray-600 hover:text-gray-900 font-normal mr-4">
FAQ
</a>
<!-- <a
href="https://www.eventbrite.com.ar/e/freecodecampba-conf-2020-tickets-107331066108#tickets"
target="_blank"
rel="noopener noreferrer"
class="transition animated-gradient hover:animated-gradient font-semibold mr-4"
>
Registrate
</a> -->
<a
href="https://www.youtube.com/playlist?list=PLjZXF5o2uS-GhP9wjrcH-yKD7dNx5B3J4"
target="_blank"
rel="noopener noreferrer"
class="transition animated-gradient hover:animated-gradient font-semibold mr-4"
>
Ver Conf 2020
</a>
</div>
</div>
</nav>
</header>
<main class="container mx-auto mt-16" style="padding: 18px;">
<a href="./">
<h1
class="leading-none animated-gradient font-bold mb-8 sm:mb-12"
style="font-family: 'Roboto', sans-serif;"
>
<span class="text-22r sm:text-6xl">FREECODECAMPBA</span> <br /><span
class="sm:text-6xl text-5xl"
>CONF 2020</span
>
</h1>
</a>
<section class="flex">
<div class="max-w-3xl mr-6">
<section class="mb-12">
<h2 class="nav-text-gradient text-2xl sm:text-3xl">
<span class="font-semibold">13 de Junio, 2020</span>
<span class="font-light">|</span> <span class="font-normal">Online</span>
</h2>
</section>
<div class="font-light">
<p class="text-gray-900 sm:text-2xl text-lg leading-normal">
<em>freeCodeCampBA Conf</em> es una
<strong class="transition hover:text-teal-500 font-medium">conferencia online</strong
>, <strong class="transition hover:text-teal-500 font-medium">100% gratuita</strong>,
con charlas sobre
<strong class="transition hover:text-teal-500 font-medium">desarrollo</strong>,
<strong class="transition hover:text-teal-500 font-medium">tecnología</strong> y
<strong class="transition hover:text-teal-500 font-medium">soft skills</strong>,
enfocada a personas que estén dando sus primeros pasos en la industria o buscando
insertarse.
</p>
<div class="mt-12">
<!-- <div class="inline-block mr-3 mb-4">
<a
href="https://www.eventbrite.com.ar/e/freecodecampba-conf-2020-tickets-107331066108#tickets"
target="_blank"
rel="noopener noreferrer"
><button
type="button"
class="transition max-w-xs border-solid border-2 border-teal-600 bg-fafafa hover:bg-teal-500 text-teal-600 hover:text-white py-2 px-3 rounded shadow-inner"
>
<span class="text-base sm:text-lg"
><i class="fas fa-ticket-alt fa-lg mr-2"></i>
<span class="font-medium">Registrate</span></span
>
</button></a
>
</div> -->
<div class="inline-block">
<a href="https://www.youtube.com/playlist?list=PLjZXF5o2uS-GhP9wjrcH-yKD7dNx5B3J4">
<button
type="button"
class="transition max-w-xs border-solid border-2 border-red-800 bg-red-800 hover:bg-red-600 text-white py-2 px-3 rounded shadow-inner"
>
<i class="fab fa-youtube fa-lg mr-2"></i>
<span class="text-base font-light sm:text-lg">
Ver <span class="font-medium">Conf 2020</span></span
>
</button></a
>
</div>
</div>
</div>
</div>
<div class="hidden lg:block">
<img
class="object-scale-down max-w-sm"
src="https://ik.imagekit.io/di61zq8lsy/fcc_primary_hero_bIHyolhhR.svg"
alt=""
/>
</div>
</section>
</main>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 1440 320"
style="z-index: -1; margin-top: -30px;"
>
<path
class="shadow-inner"
fill="#319795"
fill-opacity="1"
d="M0,128L60,154.7C120,181,240,235,360,240C480,245,600,203,720,176C840,149,960,139,1080,122.7C1200,107,1320,85,1380,74.7L1440,64L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"
></path>
</svg>
<div class="-mt-1 h-40" style="background-color: #319795;"></div>
<svg
class="-mt-1 shadow-inner"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 1440 320"
style="z-index: -1;"
>
<path
fill="#319795"
fill-opacity="1"
d="M0,288L80,293.3C160,299,320,309,480,298.7C640,288,800,256,960,240C1120,224,1280,224,1360,224L1440,224L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z"
></path>
</svg>
<section id="speakers" class="mt-16 mb-8" style="background-color: #fafafa;">
<section class="-mt-1 overflow-hidden items-center" style="padding: 18px;">
<section class="my-20">
<h2 class="text-gray-700 font-bold text-3xl text-center">Speakers</h2>
</section>
<section class="container mx-auto flex flex-wrap justify-start max-w-4xl text-center">
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#joel-villareal">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/joel-villareal-big_-qpRfEVe1.jpeg"
alt="Joel A. Villarreal Bertoldi"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Joel A. Villarreal Bertoldi
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#javier-lujan">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/javier-lujan-big_PVasWmSbo.jpg"
alt="Javier Lujan"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Javier Lujan
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#mara-schmitman">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/mara-schmitman-big_1fJdJARVh.png"
alt="Mara Schmitman"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Mara Schmitman
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#aldo-rojas">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/aldo-rojas-big_WnE6AOzo4.jpg"
alt="Aldo Rojas"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Aldo Rojas
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#martin-gonzalez">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/martin-gonzalez-big_EA5GRlvQR.jpeg"
alt="Martín Gonzalez"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Martín Gonzalez
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#magali-dominguez">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/magali-dominguez-big_DpxAdJaF9.jpg"
alt="Magalí Dominguez Lalli"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Magalí Dominguez Lalli
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#luciano-alzugaray">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/luciano-azulgaray-big_7yhko4qeg.jpeg"
alt="Luciano Alzugaray"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Luciano Alzugaray
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#andres-galante">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/andres-galante-big_lV6SiCr3b.jpg"
alt="Andrés Galante"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Andrés Galante
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#camila-cepeda">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/GkBd_EY2_pqhIN4fDM.jpg"
alt="Camila Cepeda"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Camila Cepeda
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#martiniano-olivera">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/martiniano-olivera-big_Xh5-vpwzS.jpg"
alt="Martiniano Olivera"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Martiniano Olivera
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#dario-kondratiuk">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/dario-kondratiuk-big_AjmZYcxKX.png"
alt="Darío Kondratiuk"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Darío Kondratiuk
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#ignacio-anaya">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/ignacio-anaya-big_KHj3jJ6b1.jpg"
alt="Ignacio Anaya"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Ignacio Anaya
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#gabriel-chertok">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/gabriel-chertok-big_Bk57bhNSS.jpeg"
alt="Gabriel Chertok"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Gabriel Chertok
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#silvio-messina">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/silvio-messina-big_XUofCayRR.jpeg"
alt="Silvio Messina"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Silvio Messina
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#pillippa-perez">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/pilippa-perez_mFqS68R6m.jpg"
alt="Pillippa Pérez"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Pillippa Pérez
</p>
</a>
</div>
<div class="sm:mx-0 mx-auto mb-12 px-2 overflow-hidden w-full sm:w-1/3 lg:w-1/4">
<a href="#karen-serfaty">
<div class="mb-4">
<img
loading="lazy"
class="inline-block w-32 h-32 rounded-full shadow"
src="https://ik.imagekit.io/di61zq8lsy/karen-serfaty-big_baf3we-Jb.jpeg"
alt="Karen Serfaty"
/>
</div>
<p class="text-lg text-gray-700 font-light leading-none mb-2">
Karen Serfaty
</p>
</a>
</div>
</section>
</section>
</section>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 1440 320"
style="z-index: -1; margin-top: -30px;"
>
<path
class="shadow-inner"
fill="#319795"
fill-opacity="1"
d="M0,128L60,154.7C120,181,240,235,360,240C480,245,600,203,720,176C840,149,960,139,1080,122.7C1200,107,1320,85,1380,74.7L1440,64L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"
></path>
</svg>
<section id="schedule" style="background-color: #319795;">
<section class="-mt-1 flex flex-col items-center" style="padding: 18px;">
<section class="mt-16 mb-8">
<h2 class="text-gray-100 font-bold text-3xl text-center">Programa</h2>
</section>
<section class="max-w-4xl">
<div class="mb-24 mx-auto container text-center">
<p class="text-gray-300 text-sm font-light">
(UTC/GMT -03:00) Argentina/Buenos Aires
</p>
</div>
<div
class="flex border-t border-r border-b border-l border-gray-400 bg-white rounded p-6 shadow mb-12 leading-normal"
>
<div class="mr-8 hidden sm:block sm:w-1/6">
<div class="inline-block text-center opacity-75">
<span class="text-gray-600 text-3xl font-thin">14:00</span>
<br />
<span class="rounded px-2 py-1 text-blue-800 bg-blue-300 text-xs font-semibold"
><i class="fas fa-rocket"></i> INTRO
</span>
</div>
</div>
<div class="w-full sm:w-5/6">
<div class="flex-col leading-normal">
<div class="mb-8">
<div
class="mb-6 inline-block sm:hidden rounded px-2 py-1 text-blue-800 bg-blue-300 opacity-75"
>
<span class="text-lg font-bold">14:00</span>
<span class="text-lg font-light">|</span>
<span class="text-sm font-medium"><i class="fas fa-rocket"></i> INTRO</span>
</div>
<h3 class="text-gray-900 font-bold text-xl mb-4">
Bienvenida
</h3>
<p class="text-gray-700 text-sm">
Les damos la bienvenida a la primera conferencia que organizamos
<img
loading="lazy"
class="object-scale-down w-4 inline"
src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/twitter/248/raising-hands_1f64c.png"
alt="raised hands emoji"
/>
de parte del equipo de
<strong
><a
class="transition hover:text-gray-900 font-medium"
href="https://www.freecodecampba.org"
target="_blank"
rel="noopener noreferrer"
>freeCodeCampBA</a
></strong
>.
</p>
</div>
<div class="flex sm:flex-row flex-col justify-between">
<div class="flex items-center sm:mb-0 mb-4">
<img
loading="lazy"
class="w-16 h-16 rounded-full mr-4 shadow"
src="https://ik.imagekit.io/di61zq8lsy/ari-small_ysthXDCwAZ.jpg"
alt="Ariel Gerstein"
/>
<div class="text-base">
<p class="text-sm text-gray-700 font-light leading-none mb-2">
Ariel Gerstein
</p>
<p class="text-gray-600">
<a
aria-label="Twitter profile"
class="mr-2 transition hover:text-teal-500"
href="https://twitter.com/arielger"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-twitter"></i
></a>
<a
aria-label="Personal website"
class="transition hover:text-teal-500"
href="https://www.arielgerstein.com/"
target="_blank"
rel="noopener noreferrer"
><i class="fas fa-link"></i
></a>
</p>
</div>
</div>
<div class="flex items-center sm:mb-0 mb-4">
<img
loading="lazy"
class="w-16 h-16 rounded-full mr-4 shadow"
src="https://ik.imagekit.io/di61zq8lsy/agus-small_Zvl4fJcf0.png"
alt="Agustín Mulet"
/>
<div class="text-base">
<p class="text-sm text-gray-700 font-light leading-none mb-2">
Agustín Mulet
</p>
<p class="text-gray-600">
<a
aria-label="Twitter profile"
class="mr-2 transition hover:text-teal-500"
href="https://twitter.com/AgustinDMulet"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-twitter"></i
></a>
<a
aria-label="Personal website"
class="transition hover:text-teal-500"
href="https://agustinmulet.dev/"
target="_blank"
rel="noopener noreferrer"
><i class="fas fa-link"></i
></a>
</p>
</div>
</div>
<div class="flex items-center sm:mb-0 mb-4">
<img
loading="lazy"
class="w-16 h-16 rounded-full mr-4 shadow"
src="https://ik.imagekit.io/di61zq8lsy/lupe-small_0FCNa1XLq.jpg"
alt="Guadalupe Lazzo"
/>
<div class="text-base">
<p class="text-sm text-gray-700 font-light leading-none mb-2">
Guadalupe Lazzo
</p>
<p class="text-gray-600">
<a
aria-label="Twitter profile"
class="mr-2 transition hover:text-teal-500"
href="https://twitter.com/luppelazzo"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-twitter"></i
></a>
<a
aria-label="Personal website"
class="transition hover:text-teal-500"
href="https://guadalazzo.github.io/"
target="_blank"
rel="noopener noreferrer"
><i class="fas fa-link"></i
></a>
</p>
</div>
</div>
<div class="flex items-center sm:mb-0">
<img
loading="lazy"
class="w-16 h-16 rounded-full mr-4 shadow"
src="https://ik.imagekit.io/di61zq8lsy/nico-small_8-C-CyIP9.jpg"
alt="Nicolás Quiroz"
/>
<div class="text-base">
<p class="text-sm text-gray-700 font-light leading-none mb-2">
Nicolás Quiroz
</p>
<p class="text-gray-600">
<a
aria-label="Twitter profile"
class="mr-2 transition hover:text-teal-500"
href="https://twitter.com/_nhsz"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-twitter"></i
></a>
<a
aria-label="Personal website"
class="transition hover:text-teal-500"
href="https://nicolasquiroz.com/"
target="_blank"
rel="noopener noreferrer"
><i class="fas fa-link"></i
></a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="my-16 text-center text-gray-300 text-2xl font-light rounded shadow"
style="background-image: -webkit-linear-gradient(92deg, #30cfd0, #330867);"
>
<h3>Inicio de la conferencia</h3>
</div>
<div
id="andres-galante"
class="flex items-start border-t border-r border-b border-l border-gray-400 bg-white rounded p-6 shadow mb-12 leading-normal"
>
<div class="mr-8 hidden sm:block sm:w-1/6">
<div class="inline-block text-center opacity-75">
<span class="text-gray-600 text-3xl font-thin">14.10</span>
<br />
<span class="rounded px-2 py-1 text-green-700 bg-green-300 text-xs font-semibold"
><i class="fas fa-comment"></i> CHARLA
</span>
</div>
</div>
<div class="w-full sm:w-5/6">
<div class="flex-col leading-normal">
<div class="mb-8">
<div
class="mb-6 inline-block sm:hidden rounded px-2 py-1 text-green-700 bg-green-300 opacity-75"
>
<span class="text-lg font-bold">14.10</span>
<span class="text-lg font-light">|</span>
<span class="text-sm font-medium"><i class="fas fa-comment"></i> CHARLA</span>
</div>
<h3 class="text-gray-900 font-bold text-xl mb-4">
¿Cómo participar en Open Source?
</h3>
<p class="text-gray-700 text-sm">
Seguramente en algún momento trabajaste con alguna librería o framework Open
Source. ¿Te preguntaste alguna vez cómo podrías participar?
</p>
<br />
<p class="text-gray-700 text-sm">
Durante esta presentación veremos cómo podemos comenzar una carrera en el mundo
del Open Source, empezando desde cero hasta convertirnos en core comitters de
algunos de los proyectos más grandes del mundo.
</p>
</div>
<div class="flex items-center">
<img
loading="lazy"
class="w-20 h-20 rounded-full mr-4 shadow"
src="https://ik.imagekit.io/di61zq8lsy/andres-galante-small_rChIcCBbT.jpg"
alt="Andrés Galante"
/>
<div class="text-base">
<p class="text-sm text-gray-700 font-light leading-none mb-2">
Andrés Galante
</p>
<p class="text-gray-600">
<a
aria-label="Twitter profile"
class="mr-2 transition hover:text-teal-500"
href="https://twitter.com/andresgalante"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-twitter"></i
></a>
<a
aria-label="Personal website"
class="transition hover:text-teal-500"
href="http://andresgalante.com/"
target="_blank"
rel="noopener noreferrer"
><i class="fas fa-link"></i
></a>
</p>
</div>
</div>
</div>
</div>
</div>
<div
id="camila-cepeda"
class="flex items-start border-t border-r border-b border-l border-gray-400 bg-white rounded p-6 shadow mb-12 leading-normal"
>
<div class="mr-8 hidden sm:block sm:w-1/6">
<div class="inline-block text-center opacity-75">
<span class="text-gray-600 text-3xl font-thin">14.45</span>
<br />
<span class="rounded px-2 py-1 text-green-700 bg-green-300 text-xs font-semibold"
><i class="fas fa-comment"></i> CHARLA
</span>
</div>
</div>
<div class="w-full sm:w-5/6">
<div class="flex-col leading-normal">
<div class="mb-8">
<div
class="mb-6 inline-block sm:hidden rounded px-2 py-1 text-green-700 bg-green-300 opacity-75"
>
<span class="text-lg font-bold">14.45</span>
<span class="text-lg font-light">|</span>
<span class="text-sm font-medium"><i class="fas fa-comment"></i> CHARLA</span>
</div>
<h3 class="text-gray-900 font-bold text-xl mb-4">
Cómo las comunidades te pueden ayudar a conseguir trabajo
</h3>
<p class="text-gray-700 text-sm">
Conseguir trabajo en IT puede ser complicado al principio, pero las comunidades
y el networking facilitan esta tarea.
</p>
<br />
<p class="text-gray-700 text-sm">
En esta charla veremos otros métodos (aparte de tener un buen CV) que pueden
ayudarnos en la búsqueda.
</p>
</div>
<div class="flex items-center">
<img
loading="lazy"
class="w-20 h-20 rounded-full mr-4 shadow"
src="https://ik.imagekit.io/di61zq8lsy/rsz_gkbd_ey2-small_wgWFiC_y9.jpg"
alt="Camila Cepeda"
/>
<div class="text-base">
<p class="text-sm text-gray-700 font-light leading-none mb-2">
Camila Cepeda
</p>
<p class="text-gray-600">
<a
aria-label="Twitter profile"
class="mr-2 transition hover:text-teal-500"
href="https://twitter.com/camilunghi"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-twitter"></i
></a>
<a
aria-label="Blog"
class="transition hover:text-teal-500"
href="https://medium.com/@camilunghi"
target="_blank"
rel="noopener noreferrer"
><i class="fas fa-link"></i
></a>
</p>
</div>
</div>
</div>
</div>
</div>
<div
id="aldo-rojas"
class="flex items-start border-t border-r border-b border-l border-gray-400 bg-white rounded p-6 shadow mb-12 leading-normal"
>
<div class="mr-8 hidden sm:block sm:w-1/6">
<div class="inline-block text-center opacity-75">
<span class="text-gray-600 text-3xl font-thin">15.20</span>
<br />
<span class="rounded px-2 py-1 text-green-700 bg-green-300 text-xs font-semibold"
><i class="fas fa-comment"></i> CHARLA
</span>
</div>
</div>
<div class="w-full sm:w-5/6">
<div class="flex-col leading-normal">
<div class="mb-8">
<div
class="mb-6 inline-block sm:hidden rounded px-2 py-1 text-green-700 bg-green-300 opacity-75"
>
<span class="text-lg font-bold">15.20</span>
<span class="text-lg font-light">|</span>
<span class="text-sm font-medium"><i class="fas fa-comment"></i> CHARLA</span>
</div>
<h3 class="text-gray-900 font-bold text-xl mb-4">
Mi primer trabajo como dev a los 38
</h3>
<p class="text-gray-700 text-sm">
Casado, con dos hijos, sin experiencia y con un trabajo demandante, después de
10 años ejerciendo como médico un día se me ocurrió cambiar de carrera y
dedicarme al desarrollo de software.
</p>
<br />
<p class="text-gray-700 text-sm">
En esta charla vamos a hablar entre otras cosas, sobre cómo mantenerse motivado
siendo autodidacta y conseguir el primer trabajo.
</p>
</div>
<div class="flex items-center">
<img
loading="lazy"
class="w-20 h-20 rounded-full mr-4 shadow"
src="https://ik.imagekit.io/di61zq8lsy/aldo-rojas-small_35h7tEtsG.jpg"
alt="Aldo Rojas"
/>
<div class="text-base">
<p class="text-sm text-gray-700 font-light leading-none mb-2">Aldo Rojas</p>
<p class="text-gray-600">
<a
aria-label="LinkedIn profile"
class="transition hover:text-teal-500"
href="https://www.linkedin.com/in/aldogrojas/"
target="_blank"
rel="noopener noreferrer"
><i class="fas fa-link"></i
></a>
</p>
</div>
</div>
</div>
</div>
</div>
<div
id="martin-gonzalez"
class="flex items-start border-t border-r border-b border-l border-gray-400 bg-white rounded p-6 shadow mb-12 leading-normal"
>
<div class="mr-8 hidden sm:block sm:w-1/6">
<div class="inline-block text-center opacity-75">
<span class="text-gray-600 text-3xl font-thin">15.45</span>
<br />
<span class="rounded px-2 py-1 text-green-700 bg-green-300 text-xs font-semibold"
><i class="fas fa-comment"></i> CHARLA
</span>
</div>
</div>
<div class="w-full sm:w-5/6">
<div class="flex-col leading-normal">
<div class="mb-8">
<div
class="mb-6 inline-block sm:hidden rounded px-2 py-1 text-green-700 bg-green-300 opacity-75"
>
<span class="text-lg font-bold">15.45</span>
<span class="text-lg font-light">|</span>
<span class="text-sm font-medium"><i class="fas fa-comment"></i> CHARLA</span>
</div>
<h3 class="text-gray-900 font-bold text-xl mb-4">
Cómo aprender CSS
</h3>
<p class="text-gray-700 text-sm">
Haremos un repaso sobre qué implica empezar a aprender CSS: qué necesitamos
saber, cómo es el ecosistema actual y en qué conviene enfocarse.
</p>
</div>
<div class="flex items-center">
<img
loading="lazy"
class="w-20 h-20 rounded-full mr-4 shadow"
src="https://ik.imagekit.io/di61zq8lsy/martin-gonzalez-small_LciWPaxSzx.jpg"
alt="Martín Gonzalez"
/>
<div class="text-base">
<p class="text-sm text-gray-700 font-light leading-none mb-2">
Martín Gonzalez
</p>
<p class="text-gray-600">
<a
aria-label="Twitter profile"
class="mr-2 transition hover:text-teal-500"
href="https://twitter.com/martin2786"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-twitter"></i
></a>
<a
aria-label="GitHub profile"
class="transition hover:text-teal-500"
href="https://github.com/martin2786"
target="_blank"
rel="noopener noreferrer"
><i class="fas fa-link"></i
></a>
</p>
</div>
</div>
</div>
</div>
</div>
<div
id="magali-dominguez"
class="flex items-start border-t border-r border-b border-l border-gray-400 bg-white rounded p-6 shadow mb-12 leading-normal"
>
<div class="mr-8 hidden sm:block sm:w-1/6">
<div class="inline-block text-center opacity-75">
<span class="text-gray-600 text-3xl font-thin">16.10</span>
<br />
<span class="rounded px-2 py-1 text-yellow-700 bg-yellow-300 text-xs font-semibold"
><i class="fas fa-bolt"></i> LIGHTNING TALK
</span>
</div>
</div>
<div class="w-full sm:w-5/6">
<div class="flex-col leading-normal">
<div class="mb-8">
<div
class="mb-6 inline-block sm:hidden rounded px-2 py-1 text-yellow-700 bg-yellow-300 opacity-75"
>
<span class="text-lg font-bold">16.10</span>
<span class="text-lg font-light">|</span>
<span class="text-sm font-medium"
><i class="fas fa-bolt"></i> LIGHTNING TALK</span
>
</div>
<h3 class="text-gray-900 font-bold text-xl mb-4">
Tu primera entrevista técnica como trainee