-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·3072 lines (3032 loc) · 202 KB
/
index.html
File metadata and controls
executable file
·3072 lines (3032 loc) · 202 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
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>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>DevCon Summit 2016 </title>
<meta name="description" content="Developer Future Forward! Be part of the Biggest Developer Conference in the Philippines! On its 6th year, let’s explore future forward development trends, practices & tools in becoming one of the best developers in the industry!">
<meta name="author" content="Developers Connect Philippines">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta content="Be part of the Biggest Developer Conference in the Philippines! Happening on November 5-6, 2016 @ SMX Convention Center." name="description">
<meta property="fb:app_id" content="485852624944592">
<meta property="og:title" content="#DevFutureForward | DevCon Summit 2016">
<meta property="og:type" content="website">
<meta property="og:image" content="http://summit.devcon.ph/assets/images/cover-image.jpg">
<meta property="og:url" content="http://summit.devcon.ph">
<meta property="og:site_name" content="Developers Connect">
<meta property="og:description" content="Be part of the Biggest Developer Conference in the Philippines! Happening on November 5-6, 2016 @ SMX Convention Center.">
<meta content="summary_large_image" name="twitter:card">
<meta content="http://summit.devcon.ph" name="twitter:url">
<meta content="@devconph" name="twitter:site">
<meta content="@devconph" name="twitter:creator">
<meta content="#DevFutureForward | DevCon Summit 2016 " name="twitter:title">
<meta content="Be part of the Biggest Developer Conference in the Philippines! Happening on November 5-6, 2016 @ SMX Convention Center." name="twitterr:description">
<meta content="http://summit.devcon.ph/assets/images/cover-image.jpg" name="twitter:image">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="assets/styles/jquery.modal.min.css">
<link rel="stylesheet" href="assets/styles/styles.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="assets/images/favicon.png" />
</head>
<head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<header class="header">
<div class="header-content">
<a href="#" class="menu-icon" id="header_icon">
<span></span>
<span></span>
<span></span>
</a>
<a href="#hero-video" class="header-logo"><img src="assets/images/mini-logo.png" alt="Developers Connect Summit 2016 Conference Logo"></a>
<nav class="menu">
<a href="#About"class="menu-list">About</a>
<a href="#WhyAttend"class="menu-list">Why Attend</a>
<a href="#Speakers"class="menu-list">Speakers</a>
<a href="#Agenda"class="menu-list">Agenda</a>
<a href="#Venue"class="menu-list">Venue</a>
<a href="#Sponsors"class="menu-list">Sponsors</a>
<a href="#Register"class="menu-list ticket">Buy Tickets</a>
</nav>
<nav class="mobile-menu">
<a href="#About"class="menu-list">About</a>
<a href="#WhyAttend"class="menu-list">Why Attend</a>
<a href="#Speakers"class="menu-list">Speakers</a>
<a href="#Agenda"class="menu-list">Agenda</a>
<a href="#Venue"class="menu-list">Venue</a>
<a href="#Sponsors"class="menu-list">Sponsors</a>
<a href="#Register"class="menu-list ticket">Buy Tickets</a>
</nav>
</div>
</header>
<div class="section-hero" id="hero-video" data-vide-bg="assets/videos/hero_video" data-vide-options="position: 0% 50%">
<div class="container">
<div class="row">
<div class="four offset-by-four columns">
<div class="logo">
<img src="assets/images/main-logo.png" alt="DevCon Summit 2016 Conference">
</div>
</div>
</div>
</div>
</div>
<div id="About" class="section-about">
<div class="container">
<div class="row">
<div class="eight columns caption">
<h3 class="name">DevCon Summit 2016</h3>
<h2 class="theme">Developer Future Forward</h2>
<p class="description">Be part of the Biggest Developer Conference in the Philippines! On its 6th year, let’s explore future forward development trends, practices & tools in becoming one of the best developers in the industry!</p>
</div>
</div>
<div class="row details">
<div class="four columns">
<h4 class="title">Where</h4>
<p class="info">
<span class="venue">SMX Convention Center - Manila</span>
<span class="address">Seashell Lane, Mall of Asia Complex<br>Pasay City</span>
</p>
</div>
<div class="three columns">
<h4 class="title">When</h4>
<p class="info">
<span class="day">November 5-6, 2016</span>
</p>
</div>
<div class="five columns register">
<a href="#Register" class="button button-register">Register Now</a>
</div>
</div>
</div>
</div>
<div id="WhyAttend" class="section-whyattend">
<div class="container">
<div class="row headings">
<div class="twelve columns">
<h2 class="title">Why Attend</h2>
</div>
</div>
<div class="row content">
<div class="one-third column attend-list">
<img class="images" src="assets/images/attend-image-1.png" alt="Resource Talks & Panel Discussions">
<h4 class="title">Resource Talks &<br> Panel Discussions</h4>
<p class="message">Advance our knowledge and skills with tips, best practices and recommended tools from renowned developers.</p>
</div>
<div class="one-third column attend-list">
<img class="images" src="assets/images/attend-image-2.png" alt="Experience Virtual Realities & Internet of things">
<h4 class="title">Experience Virtual Realities &<br> Internet of things</h4>
<p class="message">Experience never before entertainment and modern computing.</p>
</div>
<div class="one-third column attend-list">
<img class="images" src="assets/images/attend-image-3.png" alt="Proudly Pinoy Technologies">
<h4 class="title">Proudly Pinoy<br> Technologies </h4>
<p class="message">Get inspiration from our fellow Philippine developers who are making an impact.</p>
</div>
</div>
</div>
</div>
<div id="Speakers" class="section-speakers">
<div class="container">
<div class="row headings">
<div class="twelve columns">
<h2 class="title">Speakers</h2>
</div>
</div>
<div class="row content">
<div class="twelve columns speaker-list-one">
<h3 class="title">Featured Speakers</h3>
<div class="row speaker-list">
<div class="speakers three columns">
<a href="#speaker-winston" rel="modal:open">
<img src="assets/images/speakers/speaker-winston.jpg">
<div class="color-1"></div>
<h4>Winston Damarillo
<span>CEO of Talas</span></h4>
<p>@winston_agsx</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-winston" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Winston Damarillo</h2>
<h4>Founder of DevCon Philippines</h4>
<ul>
<li><a href="https://twitter.com/winston_agsx" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/winstondamarillo" target="_blank"><i class="icon-linkedin"></i></a></li>
<li><a href="http://amihan.net" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Winston Damarillo is the Chief Strategy Officer (CSO) of the PLDT Group and the CEO of Talas, the Group’s Big Data organization. He’s a Silicon Valley veteran with over 20 years of experience as a technology entrepreneur and venture capital professional.</p>
<p>He serves as the Executive Chairman of Amihan Global Strategies (AGSX), a strategic consulting firm serving large corporations in Southeast Asia; Exist Software Labs, an award-winning leader in enterprise software; and Acaleph, an infrastructure company pioneering software-defined storage.
<p>He holds a Bachelor of Science degree in Industrial Engineering from De La Salle University, and has completed executive programs at the Harvard Business School, Massachusetts Institute of Technology, and the University of Oxford.
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-tim" rel="modal:open">
<img src="assets/images/speakers/speaker-tim.jpg">
<div class="color-2"></div>
<h4>Tim Post
<span>Director of Stackoverflow Communities</span></h4>
<p>@tinkertim</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-tim" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Tim Post</h2>
<h4>Director of Stackoverflow Communities</h4>
<ul>
<li><a href="https://twitter.com/tinkertim" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://ph.linkedin.com/in/tim-post-28b4ba6" target="_blank"><i class="icon-linkedin"></i></a></li>
<li><a href="https://stackoverflow.com" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Tim is a semi-retired systems engineer that took a break from software engineering to explore the human aspects of software development. Now working as the Director Of Stack Overflow Communities, Tim focuses on making sure that Stack Overflow and Stack Exchange continue to grow with the communities that they serve, while finding new ways to serve them. When he's not working, Tim is a dad and husband, a world citizen and is very likely to try whatever it is that you're eating.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-tshidimba" rel="modal:open">
<img src="assets/images/speakers/speaker-tshidimba.jpg">
<div class="color-3"></div>
<h4>Tshidimba Frederic
<span>Chief Innovation Officer of ICTJob.ph</span></h4>
<p>@fredtshi</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-tshidimba" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Tshidimba Frederic</h2>
<h4>Chief Innovation Officer of ICTJob.ph</h4>
<ul>
<li><a href="https://www.facebook.com/frederic.tshidimba" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/fredtshi" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/fredtshidimba" target="_blank"><i class="icon-linkedin"></i></a></li>
<li><a href="https://www.ictjob.ph" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Frédéric Tshidimba has a 10 year marketing experience and has worked with companies such as Nestle and Coca-Cola.</p>
<p>Since his arrival in the Philippines in 2009, he has worked for two digital agencies and handled its large accounts. With this experience, he started a Manila- based software development and graphic design studio for European advertising agencies in 2011. Today, the company has over 300 employees working for clients based in Silicon Valley, London and Sydney.</p>
<p>Recently, he has launched the startup ICTjob.ph, a portal that aims to reinvent the IT profile recruitment and placement industry in the Philippines.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-chris" rel="modal:open">
<img src="assets/images/speakers/speaker-chris.jpg">
<div class="color-4"></div>
<h4>Chris Ruiz
<span>CEO of Xelzeta Studios</span></h4>
<p>@xelzeta</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-chris" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Chris Ruiz</h2>
<h4>CEO & Technical Creative Director of Xelzeta Studios</h4>
<ul>
<li><a href="https://www.facebook.com/xelzeta" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://www.linkedin.com/in/chris-ruiz-561b1589" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>One of the Legendary Creative Directors, Artist & Developers behind “RAGNAROK ONLINE”. Over 15 years of Game Development Experience, Tesda (TEP), & Creator of upcoming “XrossBeat”. Other works include: Blade & Soul, Luminary/Goonzu Online, Trickster, GunBound Online, Rock-Man Online & Many More.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
</div>
<div class="row speaker-list">
<div class="speakers three columns">
<a href="#speaker-alvin" rel="modal:open">
<img src="assets/images/speakers/speaker-alvin.jpg">
<div class="color-1"></div>
<h4>Alvin Gendrano
<span>Vice President of Data Science of PLDT Talas</span></h4>
<p>/n/alving1</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-alvin" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Alvin Gendrano</h2>
<h4>Vice President of Data Science and BigData Insights of PLDT Talas</h4>
<ul>
<li><a href="https://www.linkedin.com/pub/alvin-gendrano-mba-ms-in-c-s/0/680/515" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Alvin is the Vice President of Data Science and BigData Insights at PLDT/Smart's Talas Unit, the Philippines' largest Telco. Prior to PLDT, Alvin was Microsoft's Director of Developer Platforms while serving on the board of the Philippine Software Industry Association from 2011 to 2014. Before returning home, Alvin was in the US for 15 years working for Microsoft, where he launched the Xbox Games-on-Demand service, was Director of Business Management for Microsoft SQLServer & SQL Azure, grew an online games marketplace to $300M annually, and published papers on distributed databases.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-joeygurango" rel="modal:open">
<img src="assets/images/speakers/speaker-joeygurango.jpg">
<div class="color-2"></div>
<h4>Joey Gurango
<span>Managing Director of Gurango Software</span></h4>
<p>@JoeyGurango</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-joeygurango" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Joey Gurango</h2>
<h4>Managing Director of Gurango Software</h4>
<ul>
<li><a href="http://www.facebook.com/JoeyGurango" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="http://www.twitter.com/JoeyGurango" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/JoeyGurango" target="_blank"><i class="icon-linkedin"></i></a></li>
<li><a href="https://www.gurango.com" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Joey Gurango started his IT career way back in 1982, when he got a job with Apple Computer as a product support engineer for the Lisa computer, the predecessor to the Macintosh. Then in 1986, he worked as a programmer at Microsoft on version 1.0 of Excel for Windows. He moved back to the Philippines in 1991 to start his own software company called Match Data Systems, which he sold to Great Plains Software in 1999 and was acquired by Microsoft in 2003. He worked as a Microsoft executive between 1999 and 2003, first as the Managing Director for the business solutions software development team, then as the Asia-Pacific Regional Director for Products and Services.
<p>He is currently the CEO and CTO of Gurango Software, an award-winning global provider of Human Capital Management solutions, serving over 500 customers in 15 different countries. In addition to leading Gurango Software, Joey has co-founded or mentored several start-ups, co-founded the SPRING.ph LaunchPad program, and has been President of the Philippine Software Industry Association (2013-2014). He is currently an Independent Director of Xurpas Inc. and Managing Director of Kation Technologies.</p>
<p>Joey’s advocacy is to grow the Philippine software industry to become a major contributor to nation-building.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-monibrahim" rel="modal:open">
<img src="assets/images/speakers/speaker-monibrahim.jpg">
<div class="color-3"></div>
<h4>Monchito Ibrahim
<span>Program Director of DICT</span></h4>
<p>/in/monchitoibrahim</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-monibrahim" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Monchito Ibrahim</h2>
<h4>Program Director of Department of Information and Communications Technology</h4>
<ul>
<li><a href="https://www.facebook.com/monbibrahim" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://ph.linkedin.com/in/monchitoibrahim" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Currently with the DICT as Program Director for eInnovation, he has actively served in the public sector for ICT development as part of the Commission on ICT and the Department of Science and Technology - ICT Office since 2007.</p>
<p>He started his career in the IT industry in 1975 as a Systems Trainee at NCR Philippines. In the course of his extensive involvement in the industry, he has worked for multinational companies like Fujitsu, WeServ, Siemens-Nixdorf, Comparex Germany and Unisys Australia in various executive positions.</p>
<p>He joined the Philippine Computer Society in 1990 and served as President in 2004-2005 and was the President of the PCS Foundation in 2005-2006. He also served as a member of the Executive Committee of the Southeast Asia Regional Computer Confederation in 2004-2005.</p>
<p>Mr. Ibrahim served as Chair of the APEC Electronic Commerce Steering Group(ECSG) from 2011-2012 after having Chaired the Paperless Trading Subgroup of ECSG for 2 years. He also served as the ASEAN TELSOM Leader of the Philippines from 2009-11.</p>
<p>He was a member of the Board of Advisers of the De La Salle University College of Computer Studies and the University of the Philippines Information Technology Development Center (UPITDC). Currently, he is a Trustee and President of the University of the Philippines System Information Technology Foundation (UPSITF). He is also serving his 9th term as member of the Technical Panel for Information Technology Education (TPITE) of the Commission on Higher Education (CHED).</p>
<p>He did his B. S. Major in Chemistry at the Far Eastern University and Ateneo de Manila University Graduate School of Business for his post graduate studies. He completed a Public Sector Executive Program on Innovative Government at the Lee Kuan Yew School of Public Policy of the National University of Singapore.</p>
<p>During the 2012 International ICT Awards organized by the Canadian Chamber of Commerce of the Philippines, he was given the ICT Individual Contributor Award for his contributions to the growth of the Philippine IT-BPO Industry. He was also recently named as one of the Ten ICT Industry Movers and Shakers for the period 2002-2012 and recipient of the Boards’ Choice as Government Champion, both given by the Contact Center Association of the Philippines (CCAP).</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-andremarcelo-tanner" rel="modal:open">
<img src="assets/images/speakers/speaker-andremarcelo-tanner.jpg">
<div class="color-4"></div>
<h4>Andre Marcelo-Tanner
<span>Director of Technology, Examine.com</span></h4>
<p>@kzapkzap</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-andremarcelo-tanner" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Andre Marcelo-Tanner</h2>
<h4>Director of Technology, Examine.com</h4>
<ul>
<li><a href="https://www.facebook.com/andre.marcelotanner" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="http://twitter.com/kzapkzap" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://github.com/kzap" target="_blank"><i class="icon-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/andremarcelotanner" target="_blank"><i class="icon-linkedin"></i></a></li>
<li><a href="http://www.examine.com/" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Andre Marcelo-Tanner has been developing and tinkering with websites since 1997. Understanding how important it was to make information accessible, he has a deep understanding on how to present information to a user that is both easy to use but also brings a depth of data.a</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
</div>
<div class="row speaker-list">
<div class="speakers three columns">
<a href="#speaker-tiagoalves" rel="modal:open">
<img src="assets/images/speakers/speaker-tiagoalves.jpg">
<div class="color-1"></div>
<h4>Tiago Alves
<span>VP APAC of Aptoide</span></h4>
<p>@tcalves</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-tiagoalves" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Tiago Alves</h2>
<h4>VP APAC of Aptoide</h4>
<ul>
<li><a href="https://www.facebook.com/tcalves" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/tcalves" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://sg.linkedin.com/in/tiagoalves" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>After leading a successful Series A round, Tiago is now VP Asia Pacific at Aptoide (Top 3 Android App Store with 97 Million Active Users in 2015) leading the business in the region and preparing the future Series B round. Tiago is a regular attendee and speaker at tech events (Echelon, Tech in Asia, GMASA, GOAB, RISE, etc).</p>
<p>Before joining Aptoide, Tiago spent 12 years at Portugal Telecom where he had several technology-related roles, e.g. VoIP Engineer, Product & Marketing Manager, CEO's Team Consultant, Mobile VAS Team Leader.</p>
<p>He has a Software Engineering degree from the University of Macao, a Master Degree in Mandarin from the Beijing Language & Culture University and an MBA in Tech Management from the University of San Francisco (Fulbright Scholar and Dean's Medal Award).</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-lexbryanbangot" rel="modal:open">
<img src="assets/images/speakers/speaker-lexbryanbangot.jpg">
<div class="color-2"></div>
<h4>Lex Bryan Bangot
<span>Software Engineer of Foodgie</span></h4>
<p>@lexusbry</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-lexbryanbangot" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Lex Bryan Bangot</h2>
<h4>Software Engineer of Foodgie</h4>
<ul>
<li><a href="https://www.facebook.com/lex.bryan?ref=bookmarks" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/lexusbry" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://github.com/lexbryan" target="_blank"><i class="icon-github"></i></a></li>
<li><a href="https://ph.linkedin.com/in/lexbryan" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Lex studied Civil Engineering in College and studied programming on spare time. Currently he is working as a Software Engineer for a company that is developing a smart farm. He also loves mountain biking, rock climbing, and trekking.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-brianrowe" rel="modal:open">
<img src="assets/images/speakers/speaker-brianrowe.jpg">
<div class="color-3"></div>
<h4>Brian Rowe
<span>Founder and CEO of Pez.AI</span></h4>
<p>@cartesianfaith</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-brianrowe" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Brian Rowe </h2>
<h4>Founder and CEO of Pez.AI</h4>
<ul>
<li><a href="https://twitter.com/cartesianfaith" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://github.com/zatonovo" target="_blank"><i class="icon-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/brian-rowe-43aa2a4" target="_blank"><i class="icon-linkedin"></i></a></li>
<li><a href="http://pez.ai" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Brian is the founder and CEO of Pez.AI. He has been researching and making apps with AI and machine learning for nearly 20 years. Brian is also an Adjunct Professor at the CUNY MS program for Data Analytics, where he teaches mathematics and machine learning.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-michaeljohnpena" rel="modal:open">
<img src="assets/images/speakers/speaker-michaeljohnpena.jpg">
<div class="color-4"></div>
<h4>Michael John Peña
<span>CTO of Gluon, Inc.</span></h4>
<p>@twittername</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-michaeljohnpena" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Michael John Peña</h2>
<h4>CTO of Gluon, Inc.</h4>
<ul>
<li><a href="https://www.facebook.com/mjtpena" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/mjtpena" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://github.com/mjtpena" target="_blank"><i class="icon-github"></i></a></li>
<li><a href="https://ph.linkedin.com/in/michaeljohnpena" target="_blank"><i class="icon-linkedin"></i></a></li>
<li><a href="http://www.mjtpena.com/" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Michael John "Penny" Peña, is a Microsoft MVP. He is also a cofounder and CTO of Gluon Inc, a London Based Tech Consultant company specialising in Financial Technologies (FinTech) with delivery centres in Manila and Davao, Philippines.</p>
<p>He has been recently working on enterprise systems and applications for a UK Fintechs, large multi-national bank as well as doing innovation activities on top. He specializes on Mobile Development, Web Development, Cloud Computing, DevOps, Automated Testing and Agile-Scrum to name a few.</p>
<p>He has been a proactive contributor to the Microsoft space in the Philippines for the past 5 years. He graduated from University of Santo Tomas with a degree of Bachelor of Science in Information Technology.</p>
<p>In his spare time, he mentors students and enjoy a glass of wine.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
</div>
<div class="row speaker-list">
<div class="speakers three columns">
<a href="#speaker-edmandiesamonte" rel="modal:open">
<img src="assets/images/speakers/speaker-edmandiesamonte.jpg">
<div class="color-1"></div>
<h4>Edmandie Samonte
<span>CTO and Co-Founder of Circuitrocks</span></h4>
<p>@edmandie</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-edmandiesamonte" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Edmandie Samonte</h2>
<h4>CTO and Co-Founder of Circuitrocks</h4>
<ul>
<li><a href="https://www.facebook.com/edmandie.samonte" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/edmandie" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://github.com/edmandiesamonte" target="_blank"><i class="icon-github"></i></a></li>
<li><a href="https://ph.linkedin.com/in/edmandiesamonte" target="_blank"><i class="icon-linkedin"></i></a></li>
<li><a href="https://circuit.rocks/" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>CTO and one of the co-founders of Circuitrocks, an Internet of Things (IoT) startup. I'm a hobbyist maker. For the past year, our team developed several IoT projects ranging from sensor data gathering to automations. We advocate the importance of connected things in everyday lives. Our team will launch an IoT tool for the maker community.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-neilpatrickdelgallego" rel="modal:open">
<img src="assets/images/speakers/speaker-neilpatrickdelgallego.jpg">
<div class="color-2"></div>
<h4>Neil Patrick Del Gallego
<span>Game Developer of Anino Playlab, Inc.</span></h4>
<p> </p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-neilpatrickdelgallego" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Neil Patrick Del Gallego</h2>
<h4>Game Developer of Anino Playlab, Inc.</h4>
<ul>
<li><a href="https://www.facebook.com/neil.dg" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://github.com/NeilDG" target="_blank"><i class="icon-github"></i></a></li>
<li><a href="https://ph.linkedin.com/in/neildelgallego" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Neil has been in the game industry as a software engineer/game developer for 5 years under Anino Games Inc. and Anino Playlab Inc.</p>
<p>Also pursuing a Masters Degree in Computer Science, Neil is currently undergoing research in the field of computer vision and image processing.</p>
<p>He was also a speaker at the previous DevCon Summit (2015).</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-rexcelcariaga" rel="modal:open">
<img src="assets/images/speakers/speaker-rexcelcariaga.jpg">
<div class="color-3"></div>
<h4>Rexcel Cariaga
<span>Professor for Game Development of De La Salle - College of Saint Benilde</span>
</h4>
<p>@rexcelcariaga</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-rexcelcariaga" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Rexcel Cariaga</h2>
<h4>Professor for Game Development of De La Salle - College of Saint Benilde</h4>
<ul>
<li><a href="https://www.facebook.com/rcariaga" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/rexcelcariaga" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="http://www.linkedin.com/in/rexcelcariaga" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Rexcel has been teaching game design and development for 7 years. His students have landed a job in the game industry such as GameLoft, Casual Connect, and Aarki, Inc. Last January 2016, he conducted a talk about User Experience in Mobile Game Design at the Pocket Gamer Connects Conference in London, the biggest mobile games show in Europe held annually across the globe with over 1,400 international delegates.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-russearlmalangen" rel="modal:open">
<img src="assets/images/speakers/speaker-russearlmalangen.jpg">
<div class="color-4"></div>
<h4>Russ Earl Malangen
<span>Founder and CEO of LX Innovative Solutions</span></h4>
<p>@Russ_M24</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-russearlmalangen" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Russ Earl Malangen</h2>
<h4>Founder and CEO of LX Innovative Solutions</h4>
<ul>
<li><a href="https://www.facebook.com/russm24" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://www.twitter.com/Russ_M24" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/russm24" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>He is the Founder and CEO of a tech-based solutions startup called LX Innovative Solutions, Co-Founder and Chief Technology Officer of GRUB, a mobile application which allows you to order food from your seats inside cinemas and arenas, and currently serves as the Head Technology Strategist for the Verano Intelligence Group. Originally coming from a background of robotics and electronics, he has since then expanded his horizons working on Internet-Of-Things based solutions with his company and is currently taking up Manufacturing Engineering & Management with specializations in Mechatronics and Robotics at De La Salle University. Russ is also a student ambassador of Virtual Reality Philippines and an ambassador for external relations for Asian Development in Education through Work (ADEW).</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
</div>
<div class="row speaker-list">
<div class="speakers three columns">
<a href="#speaker-roancontreras" rel="modal:open">
<img src="assets/images/speakers/speaker-roancontreras.jpg">
<div class="color-1"></div>
<h4>Roan Contreras
<span>Indie Game Developer</span></h4>
<p>@ToadieTechnika</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-roancontreras" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Roan Contreras</h2>
<h4>Indie Game Developer</h4>
<ul>
<li><a href="https://www.facebook.com/ToadieTechnikaOfficial/" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/ToadieTechnika" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="http://roancontreras.tumblr.com/" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Roan Contreras is an Indie Game Developer for more than 5 years, with the power of Unity (and C# programming language) and Construct 2. He introduced himself to game development since High School (upon entering Grade 8) through self-study alongside with Game Maker. He, single handedly, made a lot of small games and most of them are hosted at Newgrounds. He also received various recognitions especially when he won 3 awards at the Philippine Game Development Festival (PGDF) Annual Awards 2011.</p>
<p>His devotion on developing games lead him to be an intern at Zeenoh, where he developed mobile games such as Translight and Aero Pets. He also became part of Yangyang Mobile as a Game Engineer, where he enhanced his programming abilities. He worked on Color Tap, Cake Tower, The Diary and Toy Bungee from the mentioned company. He was also included on programming an ambitious visual novel project entitled The Letter. Aside from being a Developer, Roan is also a degree holder of AB Multimedia Arts from De La Salle Lipa.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-clarkangelourzo" rel="modal:open">
<img src="assets/images/speakers/speaker-clarkangelourzo.jpg">
<div class="color-2"></div>
<h4>Clark Angelo Urzo
<span>VP of Engineering of Reality+</span></h4>
<p>/angelo.urzo</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-clarkangelourzo" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Clark Angelo Urzo</h2>
<h4>VP of Engineering of Reality+</h4>
<ul>
<li><a href="https://www.facebook.com/angelo.urzo" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://zrkrlc.wordpress.com/" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>I'm the former CTO of Veer Technologies with Cristopher David and currently the VP of Engineering of Reality+. I am also an active organizer in VR Philippines and was part of the first batch of people in the country to obtain the Oculus Rift DK1 back in 2012/2013.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-christianlabao" rel="modal:open">
<img src="assets/images/speakers/speaker-christianlabao.jpg">
<div class="color-3"></div>
<h4>Chistian Angelo Labao
<span>Web Developer</span></h4>
<p> </p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-christianlabao" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Chistian Angelo Labao</h2>
<h4>Web Developer</h4>
<ul>
<li><a href="https://www.facebook.com/ian.webwiz14" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://ph.linkedin.com/in/ianwebwiz14" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Hi, I'm Ian Labao, a Web Developer, Geek and Enthusiast! I currently work as a software engineer who loves to play and work around with web and mobile applications. I'm also into spreading the Good News about the Info Tech industry by conducting different seminars and workshop across the country!</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-toniurrutia" rel="modal:open">
<img src="assets/images/speakers/speaker-toniurrutia.jpg">
<div class="color-4"></div>
<h4>Toni Urrutia
<span>Founder of Frontier Solutions</span></h4>
<p>/toni.urrutia</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-toniurrutia" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Toni Urrutia</h2>
<h4>Founder of Frontier Solutions</h4>
<ul>
<li><a href="https://www.facebook.com/toni.urrutia" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://www.linkedin.com/in/toni-urrutia-37764296" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Toni Urrutia is an editor and technologist covering the latest in design engineering and business in Asia. She's also the founder of Frontier Solutions, a virtual reality content firm that aims to pioneer VR applications and software across industries and sectors.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
</div>
<div class="row speaker-list">
<div class="speakers three columns">
<a href="#speaker-christianjohnfelix" rel="modal:open">
<img src="assets/images/speakers/speaker-christianjohnfelix.jpg">
<div class="color-1"></div>
<h4>Christian John Felix
<span>IT Manager of Forever Rich Philippines</span></h4>
<p>/XianKaylle</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-christianjohnfelix" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Christian John Felix</h2>
<h4>IT Manager of Forever Rich Philippines</h4>
<ul>
<li><a href="https://www.facebook.com/XianKaylle" target="_blank"><i class="icon-facebook"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>I am just a simple software developer who loves to help and share my experience to other developers, I love to Motivate people, help to improve their work ethics and share some best practices that I've been using in Angularjs and .Net Technologies.I am also a youth leader who teaches musical instruments and leading the younger generation into the right path of life.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-marvinarcilla" rel="modal:open">
<img src="assets/images/speakers/speaker-marvinarcilla.jpg">
<div class="color-2"></div>
<h4>Marvin Arcilla
<span>Software Development Specialist of Nokia</span></h4>
<p>/marbeeeen</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-marvinarcilla" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Marvin Arcilla</h2>
<h4>Software Development Specialist of Nokia</h4>
<ul>
<li><a href="https://www.facebook.com/marbeeeen" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://github.com/bumblebeen/" target="_blank"><i class="icon-github"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Full-time Software Development Specialist in Nokia. Part-time MS Computer Science Student in UP Diliman. Full Stack Developer specializing in MEAN Stack and Android. Former C++ Developer. Fond of hackathons, won all hackathons joined so far. Plays football and skateboard. Devcon 2015 Participant.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-millicentconvento" rel="modal:open">
<img src="assets/images/speakers/speaker-millicentconvento.jpg">
<div class="color-3"></div>
<h4>Millicent Convento
<span>Software Engineer Of Engage Outsourcing</span></h4>
<p>@MillicentConven</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-millicentconvento" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Millicent Convento</h2>
<h4>Software Engineer Of Engage Outsourcing</h4>
<ul>
<li><a href="https://www.facebook.com/millicent.convento" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/MillicentConven" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://github.com/mjmconvento" target="_blank"><i class="icon-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/millicent-convento-00418083" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Millicent Convento is a Software Engineer and Technology Enthusiast. One of the developers of one of the top accounting software in UK, Boox. Developed ERP modules and CRM in the past. Knows multiple programming languages and started developing websites when he was 14 years old. Lives in Quezon City.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-joshualat" rel="modal:open">
<img src="assets/images/speakers/speaker-joshualat.jpg">
<div class="color-4"></div>
<h4>Joshua Arvin Lat
<span>Director for Sofware Development and Engineering of Deal Grocer</span></h4>
<p>@mrjoshualat</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-joshualat" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Joshua Arvin Lat</h2>
<h4>Director for Sofware Development and Engineering of Deal Grocer</h4>
<ul>
<li><a href="https://www.facebook.com/josh.lat" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/mrjoshualat" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://github.com/joshualat" target="_blank"><i class="icon-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/joshualat" target="_blank"><i class="icon-linkedin"></i></a></li>
<li><a href="http://joshualat.com/" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Joshua Lat serves as the Director for Software Development & Engineering of Deal Grocer. For the past couple of years, he has been sharing his knowledge in several conferences and meetups around the country to discuss working solutions to common problems in startups and web development.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
</div>
<div class="row speaker-list">
<div class="speakers three columns">
<a href="#speaker-gabenriquez" rel="modal:open">
<img src="assets/images/speakers/speaker-gabenriquez.jpg">
<div class="color-1"></div>
<h4>Gab Enriquez
<span>Virtual Reality Developer</span></h4>
<p>/gabriel.enriquez.52090</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-gabenriquez" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Gab Enriquez</h2>
<h4>Virtual Reality Developer</h4>
<ul>
<li><a href="https://www.facebook.com/gabriel.enriquez.52090" target="_blank"><i class="icon-facebook"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Studied civil engineering for 5 years. Ended up in the virtual reality industry. Spends most of his time jacked into the Matrix.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-gilbertoreyes" rel="modal:open">
<img src="assets/images/speakers/speaker-gilbertoreyes.jpg">
<div class="color-2"></div>
<h4>Gilberto Reyes
<span>Software Engineer</span></h4>
<p>/in/jr-reyes</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-gilbertoreyes" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Gilberto Reyes</h2>
<h4>Software Engineer</h4>
<ul>
<li><a href="https://www.facebook.com/jr.shipBoss" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://github.com/evilboss" target="_blank"><i class="icon-github"></i></a></li>
<li><a href="https://ph.linkedin.com/in/jr-reyes-58194b9b" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Full stack Software Engineer that specialize in Javascript and node js. Loves to attend hackathons and all round nice guy</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-neilhermosilla" rel="modal:open">
<img src="assets/images/speakers/speaker-neilhermosilla.jpg">
<div class="color-3"></div>
<h4>Neil Hermosilla
<span>Devops Engineer of Juwai.com</span></h4>
<p>@NeilUpbeta01</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-neilhermosilla" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Neil Hermosilla</h2>
<h4>Devops Engineer of Juwai.com</h4>
<ul>
<li><a href="https://www.facebook.com/bulwin01" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/NeilUpbeta01" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://github.com/upbeta01" target="_blank"><i class="icon-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/bulwin01" target="_blank"><i class="icon-linkedin"></i></a></li>
<li><a href="https://cebuserver.com" target="_blank"><i class="icon-link"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>I am a devops engineer and I embrace devops culture in real life.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-paulolozano" rel="modal:open">
<img src="assets/images/speakers/speaker-paulolozano.jpg">
<div class="color-4"></div>
<h4>Paulo Luis Lozano
<span>Mathematics and Business Senior High School Teacher of iACADEMY</span></h4>
<p>/Lluisz</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-paulolozano" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Paulo Luis Lozano</h2>
<h4>Mathematics and Business Senior High School Teacher of iACADEMY</h4>
<ul>
<li><a href="https://www.facebook.com/Lluisz" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="https://www.linkedin.com/in/paulozano" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>MR. PAULO LUIS T. LOZANO, MRIEEE is currently a Mathematics and Business Senior High School Teacher at iACADEMY and simultaneously, a freelance Researcher for Engineering. Prior to that, he is a Broadcast Engineering Professional. He worked in the broadcast industry for more than two (2) years and specialized technical report writing, product presentation, and technical training.</p>
<p>He has degree in Electronics and Communications Engineering Management Technology in Polytechnic University of the Philippines and on-going of the degree in Business Administration major Business Management in De La Salle-College of Saint Benilde as a scholar.</p>
<p>He already received one (1) top performing employee recognition, a two (2) teaching excellence awards, (1) nomination as member of Royal Institute at Singapore, and his research has been presented in six (6) local and international research conferences.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
</div>
<div class="row speaker-list">
<div class="speakers three columns">
<a href="#speaker-juanpaoloespiritu" rel="modal:open">
<img src="assets/images/speakers/speaker-juanpaoloespiritu.jpg">
<div class="color-1"></div>
<h4>Juan Paolo Espiritu
<span>Founder and CEO of Narra 3D Printing</span></h4>
<p>@boybutingting</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-juanpaoloespiritu" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">
<h2>Juan Paolo Espiritu</h2>
<h4>Founder and CEO of Narra 3D Printing</h4>
<ul>
<li><a href="http://www.facebook.com/jpespiritu92" target="_blank"><i class="icon-facebook"></i></a></li>
<li><a href="http://www.twitter.com/boybutingting" target="_blank"><i class="icon-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/paoloespiritu" target="_blank"><i class="icon-linkedin"></i></a></li>
</ul>
</div>
<div class="modal-body">
<p>Paolo Espiritu is the Founder & CEO of Narra 3D Printing, and also the Founder & CEO of Haraya Virtual Reality. Previously, he worked as one of the aerospace engineers on the Philippines' first microsatellite, DIWATA-1.</p>
</div>
</div>
</div>
<!-- /Modal -->
</div>
<div class="speakers three columns">
<a href="#speaker-christopherdavid" rel="modal:open">
<img src="assets/images/speakers/speaker-christopherdavid.jpg">
<div class="color-2"></div>
<h4>Christopher David
<span>Cofounder and CTO of Veer</span></h4>
<p>/in/davidcristopher</p>
</a>
<!-- Modal -->
<div class="modal" id="speaker-christopherdavid" aria-hidden="true" style="display:none;">
<div class="modal-dialog">
<div class="modal-header">