forked from aaaimx/aaaimx.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
946 lines (943 loc) · 72.2 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
<!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,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<meta name="author" content="AAAIMX">
<meta name="description"
content="We are a group of students and researchers from the ITM along with researchers from the Center for Mathematical Research (CIMAT) and CentroGeo">
<meta name="keywords" content="Artificial, Intelligence, aaaimx, AAAI, ITM, MIT, Student Chapter, Technology">
<meta name="google-site-verification" content="b9imDOrFawXaBXCC4r3uJDdswSYcalD-wWpMYhFq-no" />
<link rel="canonical" href="https://www.aaaimx.org"> <!-- Social: Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@AAAIMX">
<meta name="twitter:title" content="AAAIMX | Student Chapter">
<meta name="twitter:description"
content="We are a group of students and researchers from the ITM along with researchers from the Center for Mathematical Research (CIMAT) and CentroGeo">
<meta name="twitter:image:src" content="https://www.aaaimx.org/img/seo/aaaimx-ist.png">
<!-- Social: Facebook / Open Graph -->
<meta property="og:title" content="AAAIMX | Student Chapter" />
<meta property="og:site_name" content="AAAIMX | Student Chapter" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.aaaimx.org" />
<meta property="og:image" content="https://www.aaaimx.org/img/seo/aaaimx-ist.png" />
<meta property="og:description"
content="We are a group of students and researchers from the ITM along with researchers from the Center for Mathematical Research (CIMAT) and CentroGeo" />
<title>AAAIMX | Student Chapter</title>
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicons/favicon-16x16.png">
<link rel="shortcut icon" href="/img/favicons/favicon.ico">
<link rel="manifest" href="/img/favicons/site.webmanifest">
<link rel="mask-icon" href="/img/favicons/safari-pinned-tab.svg" color="#040404">
<meta name="msapplication-TileColor" content="#000000">
<meta name="theme-color" content="#ffffff">
<link href="/css/main.css" rel="stylesheet">
<script src="/js/jquery-1.12.3.min.js"></script>
<script src="/js/utils.js"></script>
<script src="/js/vue.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]-->
</head>
<body>
<div id="preloader" class="preloader">
<div class="loader-gplus"></div>
</div>
<div id="st-container" class="st-container disable-scrolling">
<div class="st-pusher">
<div class="st-content">
<!-- Begin Hero Section -->
<section id="top-section-hero" class="top-section-hero top-section image-section"
style="background-image: url('/img/sections-background/hero.jpg');">
<header id="top-header" class="top-header">
<div class="overlay white-solid"></div> <svg id="menu-trigger"
class="menu-trigger icon icon-menu visible-xs" viewBox="0 0 32 32">
<use xlink:href="/img/sprites/sprites.svg#icon-menu"></use>
</svg> <a href="/" id="logo-header" class="logo-header">
<div class="logo logo-light"> <img class="logo logo-light"
src="/img/sprites/aaai-transpeps.png" style="width: 80px !important" alt=""
srcset=""> </div>
</a>
<nav class="st-menu st-effect" id="menu">
<div class="logo-navbar logo logo-dark visible-xs"> <img src="/img/sprites/aaai-logo.jpg"
style="width: 80px !important" alt="" srcset=""> </div>
<ul>
<li> <a class="current" href=" / ">Home</a> </li>
<li> <a class="" href=" /community/ ">Members</a> </li>
<li> <a class="" href=" /structure/ ">Structure</a> </li>
<li> <a class="" href=" /publications/jcr ">Research</a> </li>
<li> <a class="" target="_blank" href=" https://web.facebook.com/pg/aaaimx/events/?ref=page_internal ">Events</a> </li>
<li> <a class="" href=" /contact/ ">Contact</a> </li>
</ul>
<!-- <ul id="bottom-navlinks" class="bottom-navlinks visible-xs"> <li> <a onclick="showPopUpMmember(event)" href=" /become-a-member/ " >BECOME A MEMBER</a> </li> </ul> <a onclick="showPopUpMmember(event)" href=" /become-a-member/ " class="right-nav-button right-nav-button-hidden btn btn-primary waves-effect waves-button waves-light waves-float pull-right hidden-xs hidden-sm" > BECOME A MEMBER </a> -->
<ul id="bottom-navlinks" class="bottom-navlinks visible-xs">
<li> <a href=" /become-a-member/ ">BECOME A MEMBER</a> </li>
</ul> <a href=" /become-a-member/ "
class="right-nav-button right-nav-button-hidden btn btn-primary waves-effect waves-button waves-light waves-float pull-right hidden-xs hidden-sm">
BECOME A MEMBER </a>
</nav>
</header>
<div class="content-wrapper">
<div class="jumbotron">
<div class="animated hiding" data-animation="fadeInDown" data-delay="500">
<h1>AAAIMX Student Chapter at <span id="typeout-text" class="hidden-xs"></span><span
class="typeout-fallback">Yucatán, México</span></h1>
<a href=" /become-a-member/ "
class="btn waves-effect waves-button waves-light waves-float"
style="background-color: #800040">BECOME A MEMBER</a>
</div>
</div> <a href="#about" class="explore"> <svg class="icon icon-arrow-down" viewBox="0 0 32 32">
<use xlink:href="/img/sprites/sprites.svg#icon-arrow-down"></use>
</svg> </a>
</div>
</section>
<style scoped>
p,
h1 {
font-weight: 300 !important;
}
</style> <!-- End Hero Section -->
<!-- About Section -->
<section id="about" class="about">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>About AAAIMX</h3>
<div class="row about-details">
<div class="col-md-4 col-xs-12">
<div class="animated hiding" data-animation="fadeInDown" data-delay="0">
<h5>Mission</h5> <img class="img-circle" src="/img/about-section/hackathon.jpg"
height="128" width="128" alt="Mission">
<p>Our goal is to promote the knowledge and practice of AI in both the ITM and
the local community, encouraging more students to join and promote research
and technological developments.</p>
</div>
</div>
<div class="col-md-4 col-xs-12">
<div class="animated hiding" data-animation="fadeInDown" data-delay="500">
<h5>Vision</h5> <img class="img-circle" src="/img/about-section/conference.jpg"
height="128" width="128" alt="Vision">
<p>We propose to achieve this through a solid core of researchers from both ITM
and leading research centers such as CIMAT and CentroGeo, who will bring IA
knowledge to students, in the form of conferences, symposiums, meetings,
etc., but mainly, through workshops and courses, whose contents will be
replicated to future generations of students.</p>
</div>
</div>
<div class="clearfix visible-xs"></div>
<div class="col-md-4 col-xs-12">
<div class="animated hiding" data-animation="fadeInDown" data-delay="1000">
<h5>Community</h5> <img class="img-circle" src="/img/about-section/workshop.jpg"
height="128" width="128" alt="Community">
<p>We are a community dedicated to increase knowledge and promote greater
awareness of Artificial Intelligence, located (mainly) in Mérida, Yucatán,
México. The headquarters of the chapter are located at the Mérida Institute
of Technology (Instituto Tecnológico de Mérida).</p>
</div>
</div>
</div>
</div>
</div>
</section> <!-- End About Section -->
<!-- Begin Statistic Section -->
<section id="statistic" class="statistic image-section parallax"
style="background-image: url(/img/ia/1.jpg);">
<div class="overlay solid-overlay"></div>
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<div class="col-md-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="0">
<div class="stat"><span class="timer" data-from="0" data-to="50">50</span>+</div>
<div class="stat-info">Members</div>
<hr>
<p class="small">From everywhere</p>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="500">
<div class="stat"><span class="timer" data-from="0" data-to="4">4</span>+</div>
<div class="stat-info">Partners</div>
<hr>
<p class="small">From everywhere</p>
</div>
</div>
<div class="clearfix visible-xs"></div>
<div class="col-md-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="1000">
<div class="stat"><span class="timer" data-from="0" data-to="100">100</span>+</div>
<div class="stat-info">Research</div>
<hr>
<p class="small">Productivity work</p>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="counter animated hiding" data-animation="fadeInDown" data-delay="1500">
<div class="stat"><span class="timer" data-from="0" data-to="7">7</span></div>
<div class="stat-info">Divisions</div>
<hr>
<p class="small">Interest areas</p>
</div>
</div>
<div class="clearfix visible-xs"></div>
</div>
</div>
</section> <!-- End Statistic Section -->
<!-- Begin Latest News Section -->
<section id="latest-news" class="latest-news">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>Board’s recent JCR publications</h3>
<article class="row">
<div class="post col-md-6 col-sm-6 text-left animated hiding"
data-animation="fadeInDown" data-delay="500">
<h6>Indexadas en JCR</h6>
<p class="post-body">Publicaciones relevantes en los últimos 6 años Castillo Atoche,
A., Vázquez Castillo, J., Ortegón-Aguilar, J., Carrasco-Alvarez, R., Sandoval
Gío, J., & Colli-Menchi, A. (2015). A high-accuracy photovoltaic emulator
system using ARM proces... <a href="/publications/jcr">continue reading</a></p>
</div>
<div class="post col-md-6 col-sm-6 text-left animated hiding"
data-animation="fadeInDown" data-delay="500">
<h6>Otras publicaciones</h6>
<p class="post-body">Publicaciones relevantes en los últimos 6 años Medina, I.,
Hernández-Gómez, J. J., Miguel, C. T.-S., Couder-Castañeda, C.,
Orozco-Del-Castillo, M. G., & Grageda-Arellano, J. I. (2019). Artificial
vision assisted ground fine pointing system... <a
href="/publications/other">continue reading</a></p>
</div>
</article>
</div>
</div>
</section> <!-- End Latest News Section -->
<!-- Begin Rockstar Speakers Section -->
<section id="rockstar-speakers" class="rockstar-speakers image-section parallax"
style="background-image: url(/img/sections-background/judges.jpg);">
<div class="overlay solid-overlay"></div>
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1 rockstar-speakers-list">
<h3 id="rockstar-speaker-title">Executive Committee</h3>
<div class="clearfix"></div>
<div class="row align-items-center">
<div class="clearfix visible-xs"></div>
<div class="clearfix visible-xs"></div>
<div class="clearfix visible-xs"></div>
<div class="clearfix visible-xs"></div>
<div class="col-md-3 col-xs-6 rockstar-speakers-item animated fadeInUp visible"
data-animation="fadeInUp" data-delay="0">
<div class="rockstar-speaker">
<div class="flow-img img-circle rockstar-speaker-img"
style="background-image: url(/img/people/second-generation/president-software-leader.jpeg)"> </div>
<div class="name">Didier Crespo</div>
<div class="sub">President / Software Leader</div>
</div>
</div>
<div class="clearfix visible-xs"></div>
<div class="col-md-3 col-xs-6 rockstar-speakers-item animated fadeInUp visible"
data-animation="fadeInUp" data-delay="0">
<div class="rockstar-speaker">
<div class="flow-img img-circle rockstar-speaker-img"
style="background-image: url(/img/people/second-generation/leader-ia.png)"> </div>
<div class="name">Victor Martínez</div>
<div class="sub">Machine Learning Leader</div>
</div>
</div>
<div class="col-md-3 col-xs-6 rockstar-speakers-item animated fadeInUp visible"
data-animation="fadeInUp" data-delay="0">
<div class="rockstar-speaker">
<div class="flow-img img-circle rockstar-speaker-img"
style="background-image: url(/img/people/second-generation/leader-robotics.jpeg)"> </div>
<div class="name">Enrique Romo</div>
<div class="sub">Robotics Leader</div>
</div>
</div>
<div class="clearfix visible-xs"></div>
<div class="col-md-3 col-xs-6 rockstar-speakers-item animated fadeInUp visible"
data-animation="fadeInUp" data-delay="0">
<div class="rockstar-speaker">
<div class="flow-img img-circle rockstar-speaker-img"
style="background-image: url(/img/people/second-generation/co-leader-dibio-2.jpg)"> </div>
<div class="name">Raúl Góngora</div>
<div class="sub">Bioengineering Co-Leader</div>
</div>
</div>
<div class="col-md-3 col-xs-6 rockstar-speakers-item animated fadeInUp visible"
data-animation="fadeInUp" data-delay="0">
<div class="rockstar-speaker">
<div class="flow-img img-circle rockstar-speaker-img"
style="background-image: url(/img/people/second-generation/co-leader-dibio-1.jpg)"> </div>
<div class="name">Michelle Quintal</div>
<div class="sub">Bioengineering Co-Leader</div>
</div>
</div>
<div class="clearfix visible-xs"></div>
<div class="clearfix visible-xs"></div>
<div class="col-md-3 col-xs-6 rockstar-speakers-item animated fadeInUp visible"
data-animation="fadeInUp" data-delay="0">
<div class="rockstar-speaker">
<div class="flow-img img-circle rockstar-speaker-img"
style="background-image: url(/img/people/second-generation/advisor.jpg)"> </div>
<div class="name">Hector Ruiz</div>
<div class="sub">Advisor</div>
</div>
</div>
</div>
<!---->
<!-- <img class="loading" width="100px" src="/img/other/loader.gif" alt=""> <div class="posted-review committee members"> <script class="committee-template" type="text/x-custom-template"> <div class="col-md-3 col-xs-6 rockstar-speakers-item animated fadeInUp visible" data-animation="fadeInUp" data-delay="0"> <div class="rockstar-speaker"> <div class="flow-img img-circle rockstar-speaker-img" style="background-image: url([[thumbnailUrl]])"> </div> <div class="name">[[name]] [[surname]]</div> <div class="sub">[[charge]]</div> </div> </div> </script> </div> -->
</div> <span class="bordered"> <a href="/community/"
class="bottom-section-link waves-effect waves-button waves-light">See all members</a>
</span>
</div>
</section> <!-- End Rockstar Speakers Section -->
<!-- Judges Section -->
<section id="judges" class="judges image-section parallax"
style="background-image: url(/img/venue/campus-noche.jpg);">
<div class="overlay solid-overlay"></div>
<div class="content-wrapper">
<div class="col-lg-12">
<h3>Board</h3>
<div class="row align-items-center">
<div class="judge col-md-0 col-lg-4 col-sm-6 animated hiding"
data-animation="fadeInDown" data-delay="0">
<div class="flow-img img-circle judge-img"
style="background-image: url(/img/people/mauricio-orozco.jpg)"> </div>
<p class="name">Mauricio Gabriel Orozco-del-Castillo</p> <span
class="company"></span> <span class="title">Chair / ITM Researcher</span>
</div>
<div class="judge col-md-0 col-lg-4 col-sm-6 animated hiding"
data-animation="fadeInDown" data-delay="500">
<div class="flow-img img-circle judge-img"
style="background-image: url(/img/people/juan.jpg)"> </div>
<p class="name">Juan Carlos Valdiviezo-Navarro</p> <span class="company"></span>
<span class="title">Co-Chair / CentroGeo Researcher</span>
</div>
<div class="judge col-md-0 col-lg-4 col-sm-6 animated hiding"
data-animation="fadeInDown" data-delay="1500">
<div class="flow-img img-circle judge-img"
style="background-image: url(/img/people/juan-recio.jpg)"> </div>
<p class="name">Juan Antonio Recio-García</p> <span class="company"></span> <span
class="title">Secretary / SE and AI Head of Department, UCM, España</span>
</div>
<div class="clearfix visible-xs"></div>
<div class="clearfix visible-xs"></div>
<div class="judge col-md-0 col-lg-4 col-sm-6 animated hiding"
data-animation="fadeInDown" data-delay="1000">
<div class="flow-img img-circle judge-img"
style="background-image: url(/img/people/carlos-ortiz)"> </div>
<p class="name">Carlos Ortiz-Alemán</p> <span class="company"></span> <span
class="title">Member / Director, Litoteca Nacional de Hidrocarburos,
México</span>
</div>
<div class="judge col-md-0 col-lg-4 col-sm-6 animated hiding"
data-animation="fadeInDown" data-delay="2500">
<div class="flow-img img-circle judge-img"
style="background-image: url(/img/people/alejandro-castillo)"> </div>
<p class="name">Alejandro Arturo Castillo-Atoche</p> <span class="company"></span>
<span class="title">Member / Senior Researcher, UADY/TecNM-ITM, México</span>
</div>
<div class="clearfix visible-xs"></div>
<div class="judge col-md-0 col-lg-4 col-sm-6 animated hiding"
data-animation="fadeInDown" data-delay="3000">
<div class="flow-img img-circle judge-img"
style="background-image: url(/img/people/javier-cimat.jpeg)"> </div>
<p class="name">Francisco Javier Hernández-López</p> <span class="company"></span>
<span class="title">Member / CIMAT Researcher</span>
</div>
<div class="judge col-md-0 col-lg-4 col-sm-6 animated hiding"
data-animation="fadeInDown" data-delay="3500">
<div class="flow-img img-circle judge-img"
style="background-image: url(/img/people/rodolfo-fallas.jpeg)"> </div>
<p class="name">Rodolfo David Fallas-Soto</p> <span class="company"></span> <span
class="title">Member / Professor-Researcher, UCR, Costa Rica</span>
</div>
<div class="clearfix visible-xs"></div>
<div class="clearfix visible-xs"></div>
<div class="clearfix visible-xs"></div>
<div class="clearfix visible-xs"></div>
<div class="clearfix visible-xs"></div>
</div>
<!-- <img class="loading" width="100px" src="/img/other/loader.gif" alt=""> <div class="row align-items-center board members"> <script class="board-template" type="text/x-custom-template"> <div class="judge col col-md-6 col-xs-6 col-lg-4" data-animation="fadeInDown" data-delay="1800"> <div class="flow-img img-circle judge-img" style="background-image: url([[nailUrl]])"> </div> <p class="name">[[name]] [[surname]]</p> <span class="company"></span> <span class="title">[[charge]]</span> </div> </script> </div> -->
</div>
</div>
</section> <!-- End Judges Section -->
<!-- Venue Section -->
<section id="venue">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>AAAI Student Chapter México Presentation Ceremony</h3>
<div class="row venue-row">
<div class="col-md-8 col-sm-8 venue-col">
<div class="venue-elem-wrapper">
<div class="venue-elem image-section venue-big-elem venue-img animated hiding"
data-animation="fadeIn" data-delay="0"
style="background-image: url(/img/venue/presentation-02.jpeg)"></div>
</div>
</div>
<div class="col-md-4 col-sm-4 venue-col venue-small-col">
<div class="venue-elem-wrapper col-md-12 col-sm-12 col-xs-6">
<div class="venue-elem image-section venue-small-elem venue-img animated hiding"
data-animation="fadeIn" data-delay="150"
style="background-image: url(/img/venue/presentation-01.jpeg)"> </div>
</div>
<div class="venue-elem-wrapper col-md-12 col-sm-12 col-xs-6">
<div class="venue-elem venue-small-elem venue-text animated hiding"
data-animation="fadeIn" data-delay="0">
<h5>Department of Systems and Computing</h5>
<p>Computer Systems Engineering</p>
<p>Instituto Tecnológico de Mérida</p>
</div>
</div>
<div class="venue-elem-wrapper col-md-12 col-sm-12 col-xs-6">
<div class="venue-elem image-section venue-small-elem venue-img animated hiding"
data-animation="fadeIn" data-delay="0"
style="background-image: url(/img/venue/auditorium.jpeg)"> </div>
</div>
<div class="venue-elem-wrapper col-xs-6 visible-xs">
<div class="venue-elem image-section venue-small-elem venue-img animated hiding"
data-animation="fadeIn" data-delay="0"
style="background-image: url(/img/venue/presentation-04.jpg)"> </div>
</div>
</div>
</div>
</div>
</div>
</section> <!-- End Venue Section -->
<!-- Begin Twitter Feed Section -->
<section id="twitter-feed" class="twitter-feed image-section parallax"
style="background-image: url(/img/sections-background/patria.jpg);">
<div class="overlay solid-overlay"></div>
<div class="content-wrapper">
<div class="col-md-8 col-md-offset-2"> <svg class="icon" viewBox="0 0 30 32"> <img
class="logo logo-light" width="300px" src="/img/sprites/aaaimx-transparent.png"
alt="" srcset=""> </svg>
<h3>Do you have a particular challenge you are currently dealing with? <a
href="https://twitter.com/search?q=%23aaaimx" target="_blank">@aaaimx</a> </h3>
<div id="tweets" class="tweets"></div>
</div>
</div>
</section> <!-- End Twitter Feed Section -->
<!-- Begin Partners Section -->
<section id="partners" class="partners">
<div class="content-wrapper">
<div class="col-lg-10 col-lg-offset-1">
<h3>Partners & Sponsors</h3>
<h5>Reserch Centers</h5>
<ul class="list-inline">
<li> <a href="https://www.gob.mx/cnh/videos/litoteca-nacional-de-la-industria-de-hidrocarburos-217890"
target="_blank"> <img src="/img/partners/CNH.png"
title="Litoteca Nacional de Hidrocarburos" alt="LNH"> </a> </li>
<li> <a href="http://mid.geoint.mx/" target="_blank"> <img
src="/img/partners/centrogeo.png"
title="Comisión Nacional de Ciencia y Tecnología / Centro de Investigación en Ciencias de Información Geoespacial Subsede Yucatán"
alt="CentroGEO"> </a> </li>
<li> <a href="https://www.cimat.mx/es/unidad-merida" target="_blank"> <img
src="/img/partners/cimat.png"
title="Centro de Investigación en Matemáticas / Unidad Mérida" alt="CIMAT">
</a> </li>
<li> <a href="https://www.ipn.mx/cda/" target="_blank"> <img src="/img/partners/cda.png"
title="Centro de Desarrollo Aeroespacial / IPN" alt="CDA"> </a> </li>
</ul>
<h5>Universities</h5>
<ul class="list-inline">
<li> <a href="https://www.ucm.es/disia" target="_blank"> <img
src="/img/partners/ucm.png" title="Universidad Complutense de Madrid"
alt="UCM"> </a> </li>
<li> <a href="https://www.ipn.mx/" target="_blank"> <img
src="/img/partners/pleca-ipn.png" title="Instituto Politécnico Nacional"
alt="IPN"> </a> </li>
</ul>
<h5>Divisions</h5>
<ul class="list-inline">
<li> <a href="https://www.facebook.com/divml" target="_blank"> <img
src="/img/partners/divisions/diml.png"
title="AAAIMX Machine Learning Division" alt="ML"> </a> </li>
<li> <a href="https://web.facebook.com/DivRobotica/" target="_blank"> <img
src="/img/partners/divisions/dirobot.png" title="AAAIMX Robotics Division"
alt="Robotics"> </a> </li>
<li> <a href="https://web.facebook.com/disoftw" target="_blank"> <img
src="/img/partners/divisions/disoftw.png" title="AAAIMX Software Division"
alt="Software"> </a> </li>
<li> <a href="https://web.facebook.com/AAAI-Bioingenier%C3%ADa-mx-110319147115694/"
target="_blank"> <img src="/img/partners/divisions/dibio.png"
title="AAAIMX Bioengineering Division" alt="Bioengineering"> </a> </li>
</ul>
<!--
<h5>Clubs</h5>
<ul class="list-inline">
<li> <a href="" target="_blank"> <img src="/img/partners/cs2.png"
title="Club de Ciberseguridad" alt="CCS"> </a> </li>
<li> <a href="https://web.facebook.com/DivRobotica/" target="_blank"> <img
src="/img/partners/ceisc.jpg" title="CEISC - Club de Electrónica ISC"
alt="CEISC"> </a> </li>
</ul>
-->
<h5>Partners</h5>
<ul class="list-inline">
<li> <a href="https://www.aaai.org/" target="_blank"> <img src="/img/partners/aaai.png"
title="Association for Advancement of Artificial Intelligence" alt="AAAI">
</a> </li>
<li> <a href="https://www.tecnm.mx/" target="_blank"> <img src="/img/partners/tecnm.png"
title="Tecnológico Nacional de México" alt="TecNM"> </a> </li>
<li> <a href="https://diee.net/" target="_blank"> <img src="/img/partners/diee.jpg"
title="Dirección de Ingeniería Electrica y Electrónica" alt="DIEE"> </a>
</li>
<li> <a href="http://www.itmerida.edu.mx/" target="_blank"> <img
src="/img/partners/dsc.png" title="Departamento de Sistemas y Computación"
alt="DSC"> </a> </li>
<li> <a href="https://www.rescatezarigueyal.org/" target="_blank"> <img
src="/img/partners/rescate.png" title="Rescate Zarigüeyal"
alt="Rescate Zarigüeyal"> </a> </li>
</ul>
<h5>Sponsors</h5>
<ul class="list-inline">
<li> <a href="https://web.facebook.com/MakerbotMID/" target="_blank"> <img
src="/img/partners/MakerBot.svg" title="Makerbot MID" alt="Makerbot"> </a>
</li>
<li> <a href="https://web.facebook.com/indaico/" target="_blank"> <img
src="/img/partners/indaico.png" title="Indaico Servicio y Reparación"
alt="Indaico"> </a> </li>
<li> <a href="https://www.talent-land.mx/" target="_blank"> <img
src="/img/partners/jtl.png" title="Jalisco Talent Land"
alt="Jalisco Talent Land"> </a> </li>
<li> <a href="https://web.facebook.com/ECEelectronics/" target="_blank"> <img
src="/img/partners/ece-elect.jpg" title="ECE Electronics MID"
alt="ECE Electronics"> </a> </li>
<li> <a href="https://carmesiservices.com/" target="_blank"> <img
src="/img/partners/carmesi.png" title="Carmesi Services"
alt="Carmesi Services"> </a> </li>
<li> <a href="https://www.jarkol.com/" target="_blank"> <img
src="/img/partners/jarkol.png" title="Jarkol Technologies" alt="Jarkol">
</a> </li>
<li> <a href="https://autmix.com/en" target="_blank"> <img
src="/img/partners/autmix.png" title="Autmix Industrial Group" alt="Autmix">
</a> </li>
</ul> <a href=""
class="btn btn-primary waves-effect waves-button waves-light waves-float">Become a
sponsor</a>
</div>
</div>
</section>
<style>
.partners img {
width: 80%;
-webkit-transition: all 0.3s;
transition: all 0.3s;
-webkit-filter: grayscale(0);
filter: grayscale(0);
}
</style> <!-- End Partners Section -->
<!-- Begin Subscribe Section -->
<section id="subscribe" class="subscribe image-section parallax"
style="background-image: url(/img/ia/2.jpeg);">
<div class="overlay solid-overlay"></div>
<div class="content-wrapper">
<div class="col-lg-8 col-lg-offset-2 animated hiding" data-animation="fadeInUp" data-delay="0">
<h4>Intelligence is the best Human talent</h4>
<div id="mc_embed_signup" class="col-lg-8 col-sm-8 col-lg-offset-2 col-sm-offset-2">
<form action="https://aaaimx.org/research/" method="post"
id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate"
target="_blank" novalidate>
<h6 class="subscribe-info">Contributing to more students having knowledge of
Artificial Intelligence and other increasingly popular related fields</h6>
</form> <a href="https://aaaimx.org/research/"
class="btn btn-primary waves-effect waves-button waves-light waves-float">Discover</a>
<hr>
<form action="/certificates/" enctype="application/x-www-form-urlencoded" method="get">
<!-- <input type="text"> <button type="submit">Search</button> -->
<div class="row center-block">
<div class="col-lg-12">
<div class="input-group"> <input type="text" class="form-control" name="id"
placeholder="Certitifcate ID..."> <span class="input-group-btn">
<button class="btn btn-primary" type="submit">Search</button>
</span> </div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
</form>
<!---->
</div>
</div>
</div>
</section> <!-- End Subscribe Section -->
<!-- Begin Footer -->
<footer id="footer" class="footer">
<div class="row">
<div class="pull-left col-md-6 col-xs-6">
<div class="g-plusone" data-size="medium" data-annotation="inline" data-width="300"
data-href="https://www.aaaimx.org"></div>
</div>
<div class="logo logo-footer logo-gray pull-right"></div>
</div>
<div class="row">
<div class="col-md-4 col-xs-6">
<h5>Divisions</h5>
<ul>
<li><a href=" /machine-learning/ ">Machine Learning</a></li>
<li><a href=" /robotics/ ">Robotics</a></li>
<li><a href=" /software/ ">Software</a></li>
<li><a href=" /applied-maths/ ">Applied Maths & Symbolic AI</a></li>
<li><a href=" /bioengineering/ ">Bioengineering</a></li>
<li><a href=" /opeartions/ ">Operations</a></li>
<li><a href=" /social-impact/ ">Social Impact</a></li>
</ul>
</div>
<div class="col-md-4 col-xs-6">
<h5>Student Chapter</h5>
<ul>
<li><a href=" https://www.aaai.org/ " target="_blank">Association for Advencement of
Artificial Intelligence</a></li>
<li><a href=" /research/ " target="_blank">Research</a></li>
<li><a href=" /cod/ ">Members Guidelines</a></li>
<li><a href=" mailto:community@aaaimx.org " target="_blank">Contact:
community@aaaimx.org</a></li>
<li><a href=" /benefits/ ">Benefits</a></li>
</ul>
</div>
<div class="col-md-4 col-xs-6">
<h5>Useful Links</h5>
<ul>
<li><a href=" https://www.aaai.org/Membership/membership-chapters.php "
target="_blank">AAAI Student Chapter Program</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-6 col-xs-12">
<ul class="social-links">
<li> <a href=" https://github.com/aaaimx " target="_blank"> <svg
class="icon icon-github" viewBox="0 0 30 32">
<use xlink:href="/img/sprites/sprites.svg#icon-github"></use>
</svg> </a> </li>
<li> <a href=" https://twitter.com/aaaimxc " target="_blank"> <svg
class="icon icon-twitter" viewBox="0 0 30 32">
<use xlink:href="/img/sprites/sprites.svg#icon-twitter"></use>
</svg> </a> </li>
<li> <a href=" https://www.facebook.com/aaaimx " target="_blank"> <svg
class="icon icon-facebook" viewBox="0 0 30 32">
<use xlink:href="/img/sprites/sprites.svg#icon-facebook"></use>
</svg> </a> </li>
</ul>
</div>
</div>
<div class="row">
<!-- Please don't delete this line-->
<div class="col-md-6">
<p class="copyright"> © 2019 Based on <a href="https://github.com/gdg-x/zeppelin"
target="_blank">Project Zeppelin</a>. Powered by <a href="https://github.com/aaaimx"
target="_blank">@aaaimx</a> · <a href="https://github.com/aaaimx"
target="_blank">Software Division</a> </p>
</div>
</div>
</footer> <!-- End Footer -->
</div>
</div>
</div> <!-- Modal -->
<div class="modal fade" id="basicExampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="text-center"> <span class="text-muted"><strong>Membership Form</strong></span> </h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span
aria-hidden="true">×</span> </button>
</div>
<div class="modal-body">
<div class="row">
<!-- <h4 class="mb-3"><strong>Payment</strong></h4> -->
<div class="row">
<div class="col-xs-12 col-md-12">
<div id="form">
<div v-if="!sent" class="panel panel-default">
<form action="" @submit.prevent="onSubmit()" method="post">
<div class="panel-body">
<div class="row">
<div class="col-md-6 mb-3">
<div class="form-group"> <label for="firstName">NAME</label>
<input type="text" id="firstName" class="form-control"
v-model="form.name" placeholder="Name(s) is required"
required> </div>
</div>
<div class="col-md-6 mb-3">
<div class="form-group"> <label for="lastName">LASTNAME</label>
<input type="text" id="lastName" class="form-control"
v-model="form.lastname"
placeholder="Lastname is required" required> </div>
</div>
</div>
<div class="row">
<div class="col-md-6 mb-3">
<div class="form-group"> <label for="email">EMAIL</label> <input
type="email" id="email" class="form-control"
v-model="form.email" placeholder="Valid Email"> <span>We
contact you by email, as soon as posible</span> </div>
</div>
<div class="col-md-6 mb-3">
<div class="form-group"> <label for="phone">PHONE</label> <input
type="number" id="phone" class="form-control"
v-model="form.phone" placeholder="Valid Phone Number"
required> <span>We contact you by phone, as soon as
posible</span> </div>
</div>
<div class="col-md-12 mb-3">
<div class="form-group"> <label
for="adscription">ADSCRIPTION</label> <input type="text"
id="adscription" class="form-control"
v-model="form.adscription" list="institutes"
placeholder="Select Institute" required> <span>If your
institute not in list, please specify institute
name</span> <datalist id="institutes">
<option value="Instituto Tecnológico de Mérida (ITM)">
<option value="Universidad Modelo">
<option value="Universidad Autónoma de Yucatán (UADY)">
<option
value="Universidad Politécnica de Yucatán (UPY)">
<option
value="Universidad Tecnológica Metropolitana (UTM)">
</datalist> </div>
</div>
<div class="col-md-6 mb-3">
<div class="form-group"> <label for="career">CAREER</label>
<input type="text" id="career" class="form-control"
v-model="form.career" placeholder="i.e.: Ing. Software"
required> <span>Please specify career</span> </div>
</div>
<div class="col-md-6 mb-3">
<div class="form-group"> <label for="grade">GRADE /
CHARGE</label> <input type="text" id="grade"
class="form-control" v-model="form.grade"
placeholder="4to semestre/Graduated/Teacher/Researcher"
required> <span>Please specify grade or charge</span>
</div>
</div>
<div class="col-md-6 mb-3">
<div class="form-group"> <label for="divisions">DIVISIONS
INTEREST</label>
<div class="checkbox"> <label><input type="checkbox"
v-model="form.divisions" id="ML"
value="ML">Machine Learning</label> </div>
<div class="checkbox"> <label><input type="checkbox"
v-model="form.divisions" id="Robotics"
value="Robotics">Robotics</label> </div>
<div class="checkbox disabled"> <label><input
type="checkbox" v-model="form.divisions"
id="Software" value="Software">Software</label>
</div>
<div class="checkbox disabled"> <label><input
type="checkbox" v-model="form.divisions"
id="Maths" value="Maths">Applied Maths</label>
</div>
<div class="checkbox disabled"> <label><input
type="checkbox" v-model="form.divisions"
id="Operations"
value="Operations">Operations</label> </div>
<div class="checkbox disabled"> <label><input
type="checkbox" v-model="form.divisions" id="IS"
value="IS">Social Impact</label> </div>
</div>
</div>
<div class="col-md-6 mb-3">
<div class="form-group"> <label
for="collaboration">COLLABORATION TYPE</label>
<div class="radio"> <label><input name="collaboration"
type="radio" required v-model="form.type"
value="membership">Adquire a membership</label>
</div>
<div class="radio"> <label><input name="collaboration"
type="radio" required v-model="form.type"
value="collaborator">Active
collaboration</label> </div>
<div class="radio disabled"> <label><input
name="collaboration" type="radio" required
v-model="form.type" value="not-sure">Not
sure</label> </div> <span>Active collaborators
obtain the benefits of membership without paying, but
they help in our activities (staff, facilitator,
teacher, events, designer, maintenence, etc...)</span>
</div>
</div>
<div class="col-md-12 mb-3">
<div class="form-group"> <label for="description">TELL US ABOUT
YOU</label> <textarea id="description"
class="form-control" v-model="form.description"
placeholder="Describe your skills, hobbies or interests to join this community"
required></textarea> <span>Description can be in
Spanish, do not worry about</span> </div>
</div>
</div>
</div>
<div class="panel-footer">
<div class="row">
<div class="col-xs-12"> <button type="submit"
class="btn btn-warning btn-lg btn-block">Process
register</button> </div>
</div>
</div>
</form>
</div>
<div v-else class="alert alert-success" role="alert"> <strong>Well done!</strong> We
contact you as soon as posible to complete register process. </div>
</div>
<script>
new Vue({
el: "#form",
data: {
form: {
divisions: []
},
sent: false
},
methods: {
onSubmit() {
console.log(this.form);
this.form = {};
this.sent = true;
}
}
})
</script>
</div>
</div>
<!-- <div class="row"> <div class="col-xs-12 col-md-12"> <div class="panel panel-default"> <div class="panel-heading"> <div class="row"> <img class="img-responsive cc-img" width="50%" src="http://www.prepbootstrap.com/Content/images/shared/misc/creditcardicons.png"> </div> </div> <div class="panel-body"> <form role="form"> <div class="row"> <div class="col-xs-12"> <div class="form-group"> <label>CARD NUMBER</label> <div class="input-group"> <input type="tel" class="form-control" placeholder="Valid Card Number" /> <span class="input-group-addon"><span class="fa fa-credit-card"></span></span> </div> </div> </div> </div> <div class="row"> <div class="col-xs-7 col-md-7"> <div class="form-group"> <label><span class="hidden-xs">EXPIRATION</span><span class="visible-xs-inline">EXP</span> DATE</label> <input type="tel" class="form-control" placeholder="MM / YY" /> </div> </div> <div class="col-xs-5 col-md-5 pull-right"> <div class="form-group"> <label>CV CODE</label> <input type="tel" class="form-control" placeholder="CVC" /> </div> </div> </div> <div class="row"> <div class="col-xs-12"> <div class="form-group"> <label>CARD OWNER</label> <input type="text" class="form-control" placeholder="Card Owner Names" /> </div> </div> <div class="col-xs-12"> <div class="form-group"> <label for="address">ADDRESS</label> <input type="text" id="address" class="form-control" placeholder="Required" required> </div> </div> </div> <div class="row"> <div class="col-md-5 mb-3"> <label for="country">Country</label> <select class="form-control d-block w-100 mt-2" id="country" required> <option value="">Country</option> <option>United States</option> </select> <div class="invalid-feedback"> Please select a valid country. </div> </div> <div class="col-md-4 mb-3"> <label for="zip">ZIP</label> <select class="form-control d-block w-100 mt-2" id="state" required> <option value="">State</option> <option>California</option> </select> <div class="invalid-feedback"> Please provide a valid state. </div> </div> <div class="col-md-3 mb-3"> <div class="form-group md-outline mt-2 mb-0"> <label for="zip">ZIP</label> <input type="text" id="zip" placeholder="Zip code required" class="form-control mb-0" required> </div> </div> </div> </form> </div> <div class="panel-footer"> <div class="row"> <div class="col-xs-12"> <button class="btn btn-success btn-lg btn-block">Process payment</button> </div> </div> </div> </div> </div> </div> -->
<style>
.cc-img {
margin: 0 auto;
}
</style>
</div>
</div>
</div>
</div>
</div>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o), m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-162008839-1', 'www.aaaimx.org');
ga('send', 'pageview');
</script>
<script type="text/javascript" src="//downloads.mailchimp.com/js/signup-forms/popup/unique-methods/embed.js"
data-dojo-config="usePlainJson: true, isDebug: false"></script>
<script type="text/javascript">
function showPopUpMmember(e) {
e.preventDefault();
document.cookie = "MCPopupClosed=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;";
document.cookie = "MCPopupSubscribed=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;";
window.dojoRequire(["mojo/signup-forms/Loader"], function (L) {
L.start({
"baseUrl": "mc.us20.list-manage.com",
"uuid": "bfad14de23bae556ad5b55c59",
"lid": "f6017c957e",
"uniqueMethods": true
})
})
}
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="/js/jquery-2.1.1.min.js><\/script>')
</script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script>
if (typeof ($.fn.modal) === 'undefined') {
document.write('<script src="/js/bootstrap.min.js><\/script>')
}
</script>
<script src="/js/default.js"></script>
<script src="/js/messenger.js"></script>
<script>
if ($(window).width() > 767) {
document.write('<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"><\/script>')
}
</script>
<script>
Waves.displayEffect();
if ($(window).width() > 767) {
var googleMaps = 'index',
eventPlace = new google.maps.LatLng(),
centerMap = new google.maps.LatLng(),
mobileCenterMap = new google.maps.LatLng(),
icon = '/img/other/map-marker.svg';
} else {
var staticGoogleMaps = true,
eventPlaceCoordinates = '',
centerMapCoordinates = '',
mobileCenterMapCoordinates = '',
icon = 'https://www.aaaimx.org/img/other/map-marker.png';
}
var twitterFeedUrl = '';
$(document).ready(function () {
$(function () {
if ($(window).width() > 767) {
$("#typeout-text").typed({
strings: ["", "Yucatán", "México"],
typeSpeed: 150,
backDelay: 900,
loop: true
});
}
});
var rockstarSpeakers = [];
rockstarSpeakers.sort(function () {
return 0.5 - Math.random()
});
if (rockstarSpeakers.length > 0) {
var animationDelay = 1500,
count = Math.min(4, rockstarSpeakers.length),
colWidth = 12 / count;
for (i = 0; i < count; i++) {
var clearfix = '<div class="clearfix visible-xs"></div>';
if ((i) % 2 != 0) {
clearfix = ""
}
$('#rockstar-speaker-title').after('<div class="col-md-' + colWidth +
' col-xs-6 rockstar-speakers-item animated hiding" data-animation="fadeInUp" data-delay="' +
animationDelay +
'"><div class="rockstar-speaker"><div class="flow-img img-circle rockstar-speaker-img" style="background-image: url(' +
rockstarSpeakers[i].image + ')"></div><div class="name">' + rockstarSpeakers[i]
.name + '</div><div class="sub">' + rockstarSpeakers[i].company +
'</div></div></div>' + clearfix);
animationDelay -= 500;
}
}
});
</script>
<script src="/js/scripts.min.js"></script>
<script type="application/ld+json">
[{
"@context": "http://schema.org",
"@type": "Event",
"name": "AAAIMX | Student Chapter",
"description": "We are a group of students and researchers from the ITM along with researchers from the Center for Mathematical Research (CIMAT) and CentroGeo",
"image": "https://www.aaaimx.org/img/seo/aaaimx-ist.png",
"url": "https://www.aaaimx.org",
"startDate": "",
"doorTime": "",
"endDate": "",
"location": {
"@type": "Place",
"name": "",
"sameAs": "",
"address": {
"@type": "PostalAddress",
"streetAddress": "",
"addressLocality": "",
"addressRegion": "",
"postalCode": "",
"addressCountry": ""
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "",
"longitude": ""
}
}, // Not supported yet // "organizer" : { // "@type" : "Organization", // "name" : "AAAIMX", // "alternateName" : "Google Developer Group Lviv", // "description" : "Open and volunteer geek communities who create exciting projects and share experience about Google technology with passion.", // "logo" : "https://www.aaaimx.org/img/seo/aaaimx-ist.png", // "email" : "lviv@gdg.org.ua", // "sameAs" : "" // }, "subEvent" : { "@type" : "Event", "name" : "Contact", "description": "", "image" : "https://www.aaaimx.org/img/seo/aaaimx-ist.png", "url" : "https://www.aaaimx.org/hackathon/", "startDate" : "2014-10-24T10:00", "doorTime" : "09:00", "endDate" : "2014-10-25T00:00", "location" : { "@type" : "Place", "name" : "Communa", "sameAs" : "", "address" : { "@type" : "PostalAddress", "streetAddress" : "1 Halytska St", "addressLocality" : "Lviv", "addressRegion" : "Lvivska", "postalCode" : "79000", "addressCountry" : "Ukraine" }, "geo" : { "@type" : "GeoCoordinates", "latitude" : "49.840999", "longitude" : " 24.031144" } } }, "offers" : [ { "@type" : "Offer", "name" : "AAAIMX Membership *", "url" : "", "price" : "$180 MXN", "priceCurrency" : "", "validFrom" : "2014-10-01T00:00", "validThrough" : "2014-10-23T23:59" } ], "performer" : [ { "@type" : "Person", "name" : "Dawid Ostrowski", "image" : "https://www.aaaimx.org/img/people/DawidOstrowski.jpg", "jobTitle" : "Developer Relations Program Manager", "worksFor" : { "@type" : "Organization", "name" : "Google Poland" }, "sameAs" : "https://plus.google.com/+DawidOstrowski/" }, { "@type" : "Person", "name" : "Dmytro Danylyk", "image" : "https://www.aaaimx.org/img/people/DmytroDanylyk.jpg", "jobTitle" : "Android Developer", "worksFor" : { "@type" : "Organization", "name" : "Lemberg Solutions Limited" }, "sameAs" : "https://plus.google.com/+DmytroDanylyk" }, { "@type" : "Person", "name" : "Mateusz Herych", "image" : "https://www.aaaimx.org/img/people/MateuszHerych.jpg", "jobTitle" : "Software Engineer", "worksFor" : { "@type" : "Organization", "name" : "Base CRM, GDG Krakow" }, "sameAs" : "https://plus.google.com/+MateuszHerych" }, { "@type" : "Person", "name" : "Roman Mazur", "image" : "https://www.aaaimx.org/img/people/RomanMazur.jpg", "jobTitle" : "Head of Android/Java Unit", "worksFor" : { "@type" : "Organization", "name" : "Stanfy, GDG Kyiv" }, "sameAs" : "https://plus.google.com/+RomanMazur/" }, { "@type" : "Person", "name" : "Valentyn Shybanov", "image" : "https://www.aaaimx.org/img/people/ValentynShybanov.jpg", "jobTitle" : "Software engineer/country manager", "worksFor" : { "@type" : "Organization", "name" : "Twinfield, GDG Kyiv" }, "sameAs" : "https://google.com/+ValentynShybanov" } ], "eventStatus" : "EventScheduled", "typicalAgeRange" : "16+" }]
</script>
</body>
</html>