-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
executable file
·1244 lines (1214 loc) · 70.7 KB
/
index2.html
File metadata and controls
executable file
·1244 lines (1214 loc) · 70.7 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>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<meta name="og:type" content="website" />
<meta name="og:image" content="http://summit.devcon.ph/img/logo.png"/>
<meta name="og:title" content="DevCon Summit 2014 #DevelopersUnitePH" />
<meta name="og:description" content="Be part of the Biggest Developer Conference in the Philippines! DevCon Summit 2014 #DevelopersUnitePH happening on November 29, 2014!" />
<meta name="og:url" content="http://summit.devcon.ph/"/>
<title>DevCon Summit 2014</title>
<!-- Bootstrap Core CSS -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="bootstrap/js/html5shiv.js"></script>
<script src="bootstrap/js/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" href="#page-top">LOGO</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right navtop">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#whyattend">Why Attend</a>
</li>
<li>
<a class="page-scroll" href="#speakerspanel">Speakers & Panel</a>
</li>
<li>
<a class="page-scroll" href="#agenda">Agenda</a>
</li>
<li>
<a class="page-scroll" href="#venue">Venue</a>
</li>
<li>
<a class="page-scroll" href="#register">Register</a>
</li>
<li>
<a class="page-scroll" href="#sponsor">Sponsor</a>
</li>
<li>
<a data-toggle="modal" data-target="#myModal">About</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text">
<img src="img/logo.png" class="img-responsive">
<div class="intro-lead-in">Devcon Summit 2014</div>
<div class="intro-heading">Developers Unite Philippines</div>
<hr class="hrl">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<p class="intro-sub">Be part of the Biggest Developer Conference in the Philippines! In an unprecedented collaboration with major developer groups in the country, let’s explore the development trends, practices & tools in becoming one of the best developers in the industry!</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-6 col-xs-12 text-right date">
<p>November 29, 2014</p>
<p>The Tents at Alphaland Southgate</p>
</div>
<div class="hex1w"><div class="hex1"></div></div>
<div class="col-md-6 col-xs-12">
<div class="reg">
<a class="page-scroll btn btn-xl" href="http://devconsummit2014.eventbrite.com/">Register</a>
</div>
</div>
</div>
<div class="row text-center lead-bot">
<div class="col-md-12 col-xs-12">
<p><a class="page-scroll" href="#whyattend">Why Attend</a></p>
<p><a class="page-scroll" href="#whyattend"><i class="fa fa-heart"></i></a></p>
</div>
</div>
</div>
</div>
</header>
<!-- Why Attend Section -->
<section id="whyattend">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Why Attend</h2>
<hr class="hrl">
<h4 class="section-subheading text-muted">This year's theme, "Developers Unite Philippines" (#DevelopersUnitePH) engages the participants to be part of the growing developer ecosystem in the Philippines. In an unprecedented collaboration with the different developer groups in the Philippines, the summit adds value to participants by exploring invaluable development practices, tools and tricks for Android, iOS and Web (non-platform specific). And more importantly, this year provides an opportunity for participants to network with their fellow developers and even join the develop groups they're interested in!</h4>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<img src="img/w-img1.png" class="img-responsive">
<hr>
<h4 class="service-heading">Lightning Talks & Panel Discussion</h4>
<p class="text-muted">Learn the latest trends, best practices and opportunities from our industry guest speakers & panelists.</p>
</div>
<div class="col-md-4">
<img src="img/w-img2.png" class="img-responsive">
<hr>
<h4 class="service-heading">Engage with Philippine Developer Groups</h4>
<p class="text-muted">The Philippine developer groups in one roof! Engage and be part of the the growing communities!</p>
</div>
<div class="col-md-4">
<img src="img/w-img3.png" class="img-responsive">
<hr>
<h4 class="service-heading">Connect with Fellow Geeks</h4>
<p class="text-muted">Meet new geeks, share experiences & win friends!</p>
</div>
</div>
</div>
</section>
<!-- Speakers & Panel Section -->
<section id="speakerspanel">
<div class="container text-center">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Speakers & Panelists</h2>
<hr class="hrl">
<h4 class="section-subheading text-muted">Our speakers and panelists this year are composed of successful developers and experts with years of experience in the industry.</h4>
</div>
</div>
<div class="row sp-wrapper">
<div class="col-md-3 col-md-offset-2">
<a data-toggle="modal" data-target="#spkModal"><img src="img/calen-legaspi.png" class="img-responsive">
<div class ="wrap">
<h3>Calen Legaspi</h3>
<hr class="hrl">
<p>CEO at Orange and Bronze Software Labs, Inc.</p>
<p class="bot">@calenlegaspi</p>
</div></a>
</div>
<div class="col-md-3">
<a data-toggle="modal" data-target="#spkModal2"><img src="img/jv-cuevas.png" class="img-responsive">
<div class ="wrap">
<h3>JV Cuevas</h3>
<hr class="hrl">
<p>Manager at Deltek Systems (Philippines) Ltd.</p>
<p class="bot">@jancuevasdeltek</p>
</div></a>
</div>
<div class="col-md-3">
<a data-toggle="modal" data-target="#spkModal3"><img src="img/sim-domingo.png" class="img-responsive">
<div class ="wrap">
<h3>Sim Domingo</h3>
<hr class="hrl">
<p>Enterprise Support Team at GitHub, Inc.</p>
<p class="bot">@meatcoder</p>
</div></a>
</div>
</div>
<div class="row sp-wrapper row2">
<div class="col-md-3">
<a data-toggle="modal" data-target="#spkModal4"><img src="img/jason-torres.png" class="img-responsive">
<div class ="wrap">
<h3>Jason Torres</h3>
<hr class="hrl">
<p>Chief Technology Officer at Proudcloud</p>
<p class="bot">@jasontorres</p>
</div></a>
</div>
<div class="col-md-3">
<a data-toggle="modal" data-target="#spkModal5"><img src="img/allen-tan.png" class="img-responsive">
<div class ="wrap">
<h3>Allen Tan</h3>
<hr class="hrl">
<p>Managing Director at White Widget</p>
<p class="bot">@abgtan</p>
</div></a>
</div>
<div class="col-md-3">
<a data-toggle="modal" data-target="#spkModal6"><img src="img/matias-cascallares.png" class="img-responsive">
<div class ="wrap">
<h3>Matias Cascallares</h3>
<hr class="hrl">
<p>Solutions Architect at MongoDB</p>
<p class="bot">@mcascallares</p>
</div></a>
</div>
<div class="col-md-3">
<a data-toggle="modal" data-target="#spkModal7"><img src="img/joben-rara.png" class="img-responsive">
<div class ="wrap">
<h3>Joben Rara</h3>
<hr class="hrl">
<p>echnical Evangelist of Microsoft’s Developer Experience Evangelism</p>
<p class="bot">@joben</p>
</div></a>
</div>
</div>
<div class="row row3-1 sp-wrapper">
<div class="col-md-3 col-md-offset-2">
<a data-toggle="modal" data-target="#spkModal8"><img src="img/ron-cirujano.png" class="img-responsive">
<div class ="wrap">
<h3>Ron Cirujano</h3>
<hr class="hrl">
<p>Country Manager at Elance-Odesk Philippines</p>
</div></a>
</div>
<div class="col-md-3">
<a data-toggle="modal" data-target="#spkModal9"><img src="img/alexis-pantola.png" class="img-responsive">
<div class ="wrap">
<h3>Alexis Pantola</h3>
<hr class="hrl">
<p>Technical Manager of the Software Group at the IBM Innovation Center</p>
</div></a>
</div>
<div class="col-md-3 sp-wrapper2" style="display:none;">
<a data-toggle="modal" data-target="#spkModal000"><img src="img/avatar-.png" class="img-responsive">
<div class ="wrap">
<h3>Alexis Pantola</h3>
<hr class="hrl">
<p>Technical Manager of the Software Group at the IBM Innovation Center</p>
</div></a>
</div>
</div>
<div class="row sp-wrapper row2" style="display:none;">
<div class="col-md-3">
<a data-toggle="modal" data-target="#spkModal000"><img src="img/jason-torres.png" class="img-responsive">
<div class ="wrap">
<h3>Jason Torres</h3>
<hr class="hrl">
<p>Chief Technology Officer at Proudcloud</p>
<p class="bot">@jasontorres</p>
</div></a>
</div>
<div class="col-md-3">
<a data-toggle="modal" data-target="#spkModal000"><img src="img/allen-tan.png" class="img-responsive">
<div class ="wrap">
<h3>Allen Tan</h3>
<hr class="hrl">
<p>Managing Director at White Widget</p>
<p class="bot">@abgtan</p>
</div></a>
</div>
<div class="col-md-3">
<a data-toggle="modal" data-target="#spkModal000"><img src="img/matias-cascallares.png" class="img-responsive">
<div class ="wrap">
<h3>Matias Cascallares</h3>
<hr class="hrl">
<p>Solutions Architect at MongoDB</p>
<p class="bot">@mcascallares</p>
</div></a>
</div>
<div class="col-md-3 sp-wrapper2">
<a data-toggle="modal" data-target="#spkModal000"><img src="img/roben-rara.png" class="img-responsive">
<div class ="wrap">
<h3>Joben Rara</h3>
<hr class="hrl">
<p>echnical Evangelist of Microsoft’s Developer Experience Evangelism</p>
<p class="bot">@joben</p>
</div></a>
</div>
</div>
<div class="row row4 sp-wrapper g-row">
<div class="col-md-2 col-md-offset-1">
<a data-toggle="modal" data-target="#spkModal10"><img src="img/leonel.png" class="img-responsive">
<div class ="wrap3">
<h4>Leonel Fred Ador</h4>
<hr class="hrl">
<p>Drupal Pilipinas</p>
</div></a>
</div>
<div class="col-md-2">
<a data-toggle="modal" data-target="#spkModal11"><img src="img/jon.png" class="img-responsive">
<div class ="wrap3">
<h4>Jon Limjap</h4>
<hr class="hrl">
<p>Philippine .Net Users Group</p>
</div></a>
</div>
<div class="col-md-2">
<a data-toggle="modal" data-target="#spkModal12"><img src="img/evan.png" class="img-responsive">
<div class ="wrap3">
<h4>Evan Dale Aromin</h4>
<hr class="hrl">
<p>Philippine Android Developers Community</p>
</div></a>
</div>
<div class="col-md-2 sp-wrapper2">
<a data-toggle="modal" data-target="#spkModal13"><img src="img/avatar2.png" class="img-responsive">
<div class ="wrap3">
<h4 style="color:#000">Jomar Tigcal</h4>
<hr class="hrl">
<p>Google Developers Group - Philippines</p>
</div></a>
</div>
<div class="col-md-2">
<a data-toggle="modal" data-target="#spkModal14"><img src="img/bob.png" class="img-responsive">
<div class ="wrap3">
<h4>Bob Reyes</h4>
<hr class="hrl">
<p>Mozilla Philippines Community</p>
</div></a>
</div>
</div>
<div class="row row5 sp-wrapper">
<div class="col-md-2 col-md-offset-2 sp-wrapper2">
<a data-toggle="modal" data-target="#spkModal15"><img src="img/avatar2.png" class="img-responsive">
<div class ="wrap3">
<h4 style="color:#000">Tristan Angeles</h4>
<hr class="hrl">
<p>IGDA-Manila</p>
</div></a>
</div>
<div class="col-md-2 sp-wrapper2">
<a data-toggle="modal" data-target="#spkModal16"><img src="img/avatar2.png" class="img-responsive">
<div class ="wrap3">
<h4 style="color:#000">Cherrie Ann B. Domingo</h4>
<hr class="hrl">
<p>PHPUG Philippines</p>
</div></a>
</div>
<div class="col-md-2 sp-wrapper2" style="display:none;">
<a data-toggle="modal" data-target="#spkModal000"><img src="img/avatar2.png" class="img-responsive">
<div class ="wrap3">
<h4 style="color:#000">Tristan Angeles</h4>
<hr class="hrl">
<p>IGDA-Manila</p>
</div></a>
</div>
<div class="col-md-2 sp-wrapper2" style="display:none;">
<a data-toggle="modal" data-target="#spkModal000"><img src="img/avatar2.png" class="img-responsive">
<div class ="wrap3">
<h4 style="color:#000">Cherrie Ann B. Domingo</h4>
<hr class="hrl">
<p>PHPUG Philippines</p>
</div></a>
</div>
<div class="col-md-2 sp-wrapper2" style="display:none;">
<a data-toggle="modal" data-target="#spkModal000"><img src="img/avatar2.png" class="img-responsive">
<div class ="wrap3">
<h4 style="color:#000">Cherrie Ann B. Domingo</h4>
<hr class="hrl">
<p>PHPUG Philippines</p>
</div></a>
</div>
</div>
</div>
</section>
<!-- Agenda Grid Section -->
<section id="agenda" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Agenda</h2>
<hr class="hrl">
<h4 class="section-subheading text-muted">DevCon Summit 2014 #DevelopersUnitePH highlights development trends, practices and tools to become more successful in the industry!</h4>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>7:00 AM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5><a class="page-scroll" href="#register">Registration Start</a></h5>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>7:30 AM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>Developer Community Quiz Bees and Booth Activities</h5>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>09:00 AM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>Welcome Message by DevCon</h5>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>09:10 AM</h5>
</div>
<div class="col-md-4 col-sm-6 a-left col-md-offset-1">
<h5>Sponsor Talks</h5>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>09:30 AM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>Developer Communities Talks (PHRUG, Drupal Pilipinas, PHPUGPH, PythonPH, PHINUG, IGDA, PWDO,PADC, GDG, MozillaPH)</h5>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>10:50 AM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>PANEL: Rediscovering Developer Opportunities in the Philippines (Freelancing, Mobile, Web, Enterprise)</h5>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>11:30 AM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>How Technical Debt Can Ruin A Business</h5>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>11:55 AM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>LUNCH BREAK + NETWORKING</h5>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>01:00 PM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>Lightning Talks on Mobile Development</h5>
<ul>
<li>Android</li>
<li>iOS</li>
<li>Windows Phone</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>02:15 PM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>Lightning Talks on Web Development</h5>
<ul>
<li>High Performance JavaScript</li>
<li>The "What" and "Why" of NoSQL</li>
<li>Front-end Development Frameworks</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>03:30 PM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>SNACK BREAK + RAFFLES</h5>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>03:40 PM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>PANEL: Web Development Best Practices</h5>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>04:20 PM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>Lightning Talks on Developer Tools</h5>
<ul>
<li>Automated Testing</li>
<li>Git & GitHub Tips for Beginners</li>
<li>Facebook Graph API</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-6 col-md-offset-2 text-right">
<h5>05:30 PM</h5>
</div>
<div class="col-md-4 col-sm-6 col-md-offset-1 a-left">
<h5>SNACK BREAK + RAFFLES</h5>
</div>
</div>
</div>
</section>
<!-- Venue Section -->
<section id="venue" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Venue</h2>
<hr class="hrl">
<h4 class="section-subheading text-muted">DevCon Summit 2014 is a whole day conference. Check it out our complete agenda for this year. Be Awesome and more..</h4>
</div>
</div>
<div class="row">
<div class="v-wrap2">
<div class="col-sm-6">
<div class="tab-content-wrap">
<h3>How to Commute</h3>
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li class="active"><a href="#home" role="tab" data-toggle="tab">For Private Vehicles</a></li>
<li><a href="#profile" role="tab" data-toggle="tab">For Commuters</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane fade in active" id="home">
<p>If you are coming from EDSA southbound, you have to drive towards Pasong Tamo. This means not using both of the Magallanes flyovers (going to Alabang and Baclaran) and just staying at the right lane. You will be driving for a few meters and then will be forced to take a u-turn directly under the flyovers. Take that and it will bring you to the northbound side of EDSA where the mall is located.</p>
<p>If you are coming from EDSA northbound, NEVER take the flyover to cross SLEX and reach the other side of EDSA since that will make you miss Alphaland Southgate Mall. What you need to do is take the route that will bring you to SLEX Manila-bound. Take Don Bosco street - this is the first street crossing the PNR railways from Magallanes. Then turn right at Pasong Tamo and go straight, you'll see the mall in the horizon, just follow the flow of traffic until you reach it.</p>
</div>
<div class="tab-pane fade" id="profile">
<p>From NORTH:</p>
<p>Option 1. From EDSA, ride a bus southbound to Baclaran/Alabang and get down at Magallanes. Cross EDSA via the MRT footbridge.</p>
<p>Option 2. From EDSA, ride the MRT bound for Taft and get down at Magallanes MRT Station.</p>
<br>
<p>From SOUTH:</p>
<p>From the South (of Makati - Pasay, Alabang Area):</p>
<p>Option 1. From Pasay/Baclaran EDSA, ride a bus northbound to Monumento/Fairview and get down at Magallanes. Alphaland Southgate Tower Mall is just a few steps away.</p>
<p>Option 2. From EDSA-Taft, ride the MRT bound for Magallanes MRT Station.</p>
<p>Source: <a href="http://www.metromaniladirections.com/2010/07/how-to-get-to-alphaland-southgate-mall.html">http://www.metromaniladirections.com/2010/07/how-to-get-to-alphaland-southgate-mall.html</a>
</div>
</div>
</div>
</div>
</div>
<div class="v-mid text-center">
<img src="img/v-img1.png" class="img-responsive">
</div>
<div class="v-wrap2">
<div class="col-sm-6 text-center">
<iframe width="600" height="350" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?key=AIzaSyAe7nLATE211JCkvrfiSB_GqF5B2MW2Kt4&q=The+Tents+at+the+Alphaland+Southgate+Mall">
</iframe>
</div>
</div>
</div>
</div>
</section>
<!-- Register Section -->
<section id="register">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Register</h2>
<hr class="hrl">
<h4 class="section-subheading text-muted">Be part of this exciting event! Limited slots available, REGISTER NOW!</h4>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<!--<img src="img/r-img1.png" class="img-responsive">-->
<div style="width:100%; text-align:left;" >
<iframe src="http://eventbrite.com/tickets-external?eid=13376674995&ref=etckt" frameborder="0" height="417" width="100%" vspace="0" hspace="0" marginheight="5" marginwidth="5" scrolling="auto" allowtransparency="true"></iframe>
<div style="font-family:Helvetica, Arial; font-size:10px; padding:5px 0 5px; margin:2px; width:100%; text-align:left;" >
<a style="color:#ddd; text-decoration:none;" target="_blank" href="http://www.eventbrite.com/r/etckt">Online Ticketing</a>
<span style="color:#ddd;"> for </span>
<a style="color:#ddd; text-decoration:none;" target="_blank" href="https://devconsummit2014.eventbrite.com/?ref=etckt">DevCon Summit 2014 #DevelopersUnitePH</a> <span style="color:#ddd;">powered by</span>
<a style="color:#ddd; text-decoration:none;" target="_blank" href="http://www.eventbrite.com?ref=etckt">Eventbrite</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Sponsor Section -->
<section id="sponsor">
<div class="container text-center">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Sponsor</h2>
<hr class="hrl">
<h4 class="section-subheading text-muted">Thanks to our awesome sponsors and partners who help make DevCon Summit 2014 possible.</h4>
</div>
</div>
<h3>Co-Presentors</h3>
<hr>
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4">
<a href="http://www.deltek.com/" target="_blank"><img src="img/deltek.png" class="img-responsive" alt="Deltek, Co-Presentor"></a>
</div>
<div class="col-md-4">
<a href="http://www.accenture.com/ph-en/Pages/index.aspx" target="_blank"><img src="img/accenture.png" class="img-responsive" alt="Accenture, Co-Presentor"></a>
</div>
<div class="col-md-4">
<a href="http://www1.smart.com.ph/corporate" target="_blank"><img src="img/smart.png" class="img-responsive" alt="Smart, Co-Presentor"></a>
</div>
</div>
</div>
</div>
<hr>
<div class="row text-center">
<div class="col-md-8 col-md-offset-3">
<div class="row">
<div class="col-md-4">
<a href="http://cyscorpions.com/" target="_blank"><img src="img/klab.png" class="img-responsive" alt="KLab, Co-Presentor"></a>
</div>
<div class="col-md-4">
<a href="http://www.ibm.com/ph/en/" target="_blank"><img src="img/ibm.png" class="img-responsive" alt="IBM, Co-Presentor"></a>
</div>
</div>
</div>
</div>
<hr><hr>
<h3>Gold Sponsors</h3>
<hr>
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4">
<a href="http://www.microsoft.com/en-ph/default.aspx" target="_blank"><img src="img/microsoft.png" class="img-responsive" alt="Microsoft, Gold Sponsor"></a>
</div>
<div class="col-md-4">
<a href="https://www.canva.com/" target="_blank"><img src="img/canva.png" class="img-responsive" alt="Canva, Gold Sponsor"></a>
</div>
<div class="col-md-4">
<a href="http://www.microsourcing.com/" target="_blank"><img src="img/microsourcing.png" class="img-responsive" alt="MicroSourcing, Gold Sponsor"></a>
</div>
</div>
</div>
</div>
<hr><hr>
<h3>Silver Sponsors</h3>
<hr>
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4">
<a href="http://www.mozillaphilippines.org/" target="_blank"><img src="img/firefox.png" class="img-responsive" allt="Firefox, Silver Sponsor"></a>
</div>
<div class="col-md-4">
<a href="http://colab.ph/#/home" target="_blank"><img src="img/colab.png" class="img-responsive" atl="Colab, Silver Sponsor"></a>
</div>
<div class="col-md-4">
<a href="http://www.novare.com.hk/" target="_blank"><img src="img/novare.png" class="img-responsive" alt="Novare, Silver Sponsor"></a>
</div>
</div>
</div>
</div>
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<a href="http://www.chikka.com/" target="_blank"><img src="img/chikka.png" class="img-responsive" alt="Chikka, Silver Sponsor"></a>
</div>
</div>
</div>
</div>
<hr><hr>
<h3>Contributing Partners</h3>
<hr>
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-3">
<a href="https://github.com/" target="_blank"><img src="img/github.png" class="img-responsive" alt="Github, Contributing Partner"></a>
</div>
<div class="col-md-3">
<a href="http://stackoverflow.com/" target="_blank"><img src="img/stackoverflow.png" class="img-responsive" alt="Stackoverflow, Contributing Partner"></a>
</div>
<div class="col-md-3">
<a href="https://www.uber.com/cities/manila" target="_blank"><img src="img/uber.png" class="img-responsive" alt="Uber, Contributing Partner"></a>
</div>
<div class="col-md-3">
<a href="http://www.globelabs.com.ph/blog" target="_blank"><img src="img/globelabs.png" class="img-responsive" alt="GlobeLabs, Contributing Partner"></a>
</div>
</div>
</div>
</div>
<hr><hr>
<h3>Community Partners</h3>
<hr>
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4">
<a href="http://www.drupalpilipinas.org/"><img src="img/drupal.png" class="img-responsive" alt="Drupal Pilipinas, Community Partner"></a>
</div>
<div class="col-md-4">
<a href="http://gdgph.org/"><img src="img/gdg.png" class="img-responsive" alt="GDG, Community Partner"></a>
</div>
<div class="col-md-4">
<a href="http://igdamanila.org"><img src="img/igda.png" class="img-responsive" alt="IGDA, Community Partner"></a>
</div>
</div>
</div>
</div>
<hr>
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4">
<a href="https://www.facebook.com/groups/339892436056451/" target="_blank"><img src="img/padc.png" class="img-responsive" alt="PADC, Community Partner"></a>
</div>
<div class="col-md-4">
<a href="http://python.ph" target="_blank"><img src="img/pythonph.png" class="img-responsive" alt="PythonPh, Community Partner"></a>
</div>
<div class="col-md-4">
<a href="https://www.facebook.com/groups/phinug/" target="_blank"><img src="img/phinug.png" class="img-responsive" alt="Phinug, Community Partner"></a>
</div>
</div>
</div>
</div>
<hr>
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4">
<a href="http://www.mozillaphilippines.org/" target="_blank"><img src="img/firefox.png" class="img-responsive" alt="Firefox, Community Partner"></a>
</div>
<div class="col-md-4">
<a href="http://www.phpugph.com/" target="_blank"><img src="img/phpugph.png" class="img-responsive" alt="phpUgPh, Community Partner"></a>
</div>
<div class="col-md-4">
<a href="http://www.pwdo.org" target="_blank"><img src="img/pwdo.png" class="img-responsive" alt="PWDO, Community Partner"></a>
</div>
</div>
</div>
</div>
<hr>
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<a href="http://www.pinoyrb.org/" target="_blank"><img src="img/phrug.png" class="img-responsive" alt="PHRUG, Community Partner"></a>
</div>
</div>
</div>
</div>
<hr><hr>
<h3>Media Partners</h3>
<hr>
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4">
<a href="http://www.speed-mag.com"><img src="img/speed.png" class="img-responsive" alt="Speed Mag, Media Partner"></a>
</div>
<div class="col-md-4">
<a href="http://wheninmanila.com"><img src="img/wheninmanila.png" class="img-responsive" alt="When In Manila, Media Partner"></a>
</div>
<div class="col-md-4">
<a href="http://www.bworldonline.com/"><img src="img/businessworld.png" class="img-responsive" alt="Business World, Media Partner"></a>
</div>
</div>
</div>
</div>
<hr>
<div class="row text-center">
<div class="col-md-8 col-md-offset-2">
<div class="row">
<div class="col-md-6">
<a href="http://techtalks.ph/" target="_blank"><img src="img/techtalks.png" class="img-responsive" alt="TechTalks, Media Partner"></a>
</div>
<div class="col-md-6">
<a href="http://webeek.ph" target="_blank"><img src="img/webgeek.png" class="img-responsive" alt="WebGeek, Media Partner"></a>
</div>
</div>
</div>
</div>
<hr>
<hr>
<h3 class="bot">Want to be Part of Sponsors this 2014</h3>
<p>Contact us at <a href="mailto:haifa@devcon.ph">haifa@devcon.ph</a></p>
<hr>
</div>
</section>
<!-- About Section -->
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header modal-header2">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h3 class="modal-title" id="myModalLabel2">About Developers Connect</h3>
</div>
<div class="modal-body">
<p>Developers Connect Philippines (DevCon) is a BIR and SEC registered non-profit, non-government organization which aims to empower Filipino developers and promote the "IT Pinoy Talent" by providing unique venues for IT students, educators, professionals and enthusiasts to Sync, Support and Succeed.</p>
<hr>
<h3>History</h3>
<p>DevCon was founded in June 26, 2009.</p>
<p>DevCon is a pioneering project of the Philippine Software Industry Association (PSIA). Its pilot event, DevCon Visayas, was held at the TechBar in Cebu City. DevCon also spanned a ten-city nationwide tour as part of the Next Wave Cities roadshow run by the then Commission on Information and Communications Technology (CICT) and Business Processing Association of the Philippines (BPA/P) in 2009.</p>
<p>To increase its reach, DevCon has signed a partnership with the Philippine Society of IT Educators (PSITE) to make DevCon accessible to IT students nationwide. Furthermore, to ensure that DevCon's presence will continue to grow, DevCon registered under the Securities and Exchange Commission as a non-profit organization.</p>
<h5>Twitter: @DevConPH</h5>
<h5>Facebook Page: DevCon Philippines</h5>
<h5>Facebook Group: DevCon Philippines</h5>
<h5>Eventbrite: DevConPH</h5>
<h5>Youtube: DevConPH</h5>
</div>
</div>
</div>
</div>
<!-- Speaker Section -->
<!-- Modal -->
<div class="modal fade" id="spkModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<img src="img/calen-legaspi-.png" class="img-responsive sp-img">
</div>
<div class="modal-body">
<h3>Calen Legaspi</h3>
<h3 class="modal-title" id="myModalLabel">CEO of Orange and Bronze Software Labs, Inc.</h3>
<hr class="hrl">
<h5>Twitter: @calenlegaspi</h5>
<h5>Website: <a href="http://orangeandbronze.com">http://orangeandbronze.com</a></h5>
<h5>Blog: <a href="http://calenlegaspi.blogspot.com">http://calenlegaspi.blogspot.com</a></h5>
<hr>
<p>Calen co-founded O&B to provide a venue where the Filipino engineer’s true skills are showcased. He is currently on his 7th term as a board member of the Philippine Software Industry Association. </p>
<p>He has initiated programs that support the Philippine academe: by providing training to teachers through the Philippine Society of Information Technology Educators, authoring technology modules for TESDA, developing responsive IT education curricula for the Commission on Higher Education, and contributing to programs aimed at enhancing the skills of IT educators.</p>
<p>Calen is a Sun Certified Enterprise Architect, Certified Web Component Developer, and a Certified Java Programmer. He co-founded the Association of Philippine Java Developers and served as the organization's president for six years</p>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="spkModal2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<img src="img/jv-cuevas-.png" class="img-responsive sp-img">
</div>
<div class="modal-body">
<h3 class="text-center">JV Cuevas</h3>
<h3 class="modal-title" id="myModalLabel">Manager at Deltek Systems (Philippines) Ltd.</h3>
<hr class="hrl">
<h5>Twitter: @jancuevasdeltek</h5>
<hr>
<p>JV Cuevas is currently the manager for Automation Operation Services at Deltek Systems (Philippines), Ltd. He oversees the development of the test automation solutions for desktop, browser, mobile and cloud.</p>
<p>He has been with Deltek for 12 years and prior to Deltek has worked in universities, printing and pharmaceutical companies. A certified MCSD (Microsoft Certified Solutions Developer), MBA, Cobol II certified, MOS (Microsoft Office Specialist) Master Certification Track, a UX advocate and has conducted various IT seminars including the IT Trail Blazing Experience event at UST. Commerce graduate of University of Santo Tomas with Best Thesis Awardee in the Systems Category for his batch year and a Dean’s Lister.</p>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="spkModal3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<img src="img/sim-domingo-.png" class="img-responsive sp-img">
</div>
<div class="modal-body">
<h3>Sim Domingo</h3>
<h3 class="modal-title" id="myModalLabel">Engineer, Enterprise Support Team at GitHub, Inc.</h3>
<hr class="hrl">
<h5>Twitter: @meatcoder</h5>
<h5>Website: <a href="http://github.com/meatcoder">http://github.com/meatcoder</a></h5>
<hr>
<p>Sim currently works at GitHub, as an engineer in the Enterprise support team. A former physicist, he sometimes dabbles in iOS development and has previously worked on system software for SMS services. He enjoys bad movies, baking, and cats.</p>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="spkModal4" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<img src="img/jason-torres-.png" class="img-responsive sp-img">
</div>
<div class="modal-body">
<h3>Jason Torres</h3>
<h3 class="modal-title" id="myModalLabel">Chief Technology Officer at Proudcloud</h3>
<hr class="hrl">
<h5>Twitter: @jasontorres</h5>
<hr>
<p>A code junkie. A veteran Rubyist. Jason is a co-founder and CTO of Proudcloud, a Ruby on Rails and Javascript Software Consultancy shop in Manila. He currently leads technology, development operations and making sure that culture is awesome as always.</p>
<p>Besides software consultancy, he likes partnering and working with startups, and has proven it by building startups and apps like Artisteconnect.com, Guestlist.ph, Heygarch.com, Nowshowing.ph and more.</p>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="spkModal5" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<img src="img/allen-tan-.png" class="img-responsive sp-img">
</div>
<div class="modal-body">
<h3>Allen Tan</h3>
<h3 class="modal-title" id="myModalLabel">Managing Director at White Widget</h3>
<hr class="hrl">
<h5>Twitter: @abgtan</h5>
<h5>Website: <a href="http://whitewidget.com">http://whitewidget.com</a></h5>
<hr>
<p>Allen Tan is the Managing Director of White Widget, a startup software development company based in the Philippines. He graduated with a Computer Science degree in 2008, and has been working on software projects ever since. Allen specialises in iOS development and has helped create various interactive apps and games. He writes tutorials and e-books on his spare time and is also a regular contributor at the popular iOS tutorial website, RayWenderlich.com.</p>
<p>He co-founded White Widget together with Andrea Levinge, and officially started operations last January 2013. Since then, the company has been growing steadily as they work on their soon-to-be-released first game title, Face Mountain.</p>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="spkModal6" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<img src="img/matias-cascallares-.png" class="img-responsive sp-img">
</div>
<div class="modal-body">
<h3>Matias Cascallares</h3>
<h3 class="modal-title" id="myModalLabel">Solutions Architect at MongoDB</h3>
<hr class="hrl">
<h5>Twitter: @mcascallares</h5>
<h5>Website: <a href="https://github.com/mcascallares">https://github.com/mcascallares</a></h5>
<hr>
<p>Matias is Solutions Architect at MongoDB Inc. He has more than 10 years of experience in software development across America, Europe and Asia-Pacific. He has heavy experience in .com companies like e-commerce sites and social networks with millions of users. Based in Singapore, he helps customers from different industries to be successful using MongoDB database dealing with big and heterogenous data where flexibility and time to market are key factors for success. He is also a reference in MongoDB open source community in Asia.</p>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="spkModal7" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<img src="img/joben-rara-.png" class="img-responsive sp-img">
</div>
<div class="modal-body">
<h3>Joben Rara</h3>
<h3 class="modal-title" id="myModalLabel">Technical Evangelist of Microsoft’s Developer Experience Evangelism</h3>
<hr class="hrl">
<h5>Twitter: @joben</h5>
<hr>
<p>Joben is a Technical Evangelist from Microsoft’s Developer Experience Evangelism (DX) team. He is an avid fan of Open Web technologies and is passionate about building mobile apps on HTML5, CSS3 and JavaScript. Prior to joining Microsoft, he was in various developer roles working on enterprise software products. As a father of 3 kids he spends a lot of time debugging the KidOS since it always crashes the “Listen to Dad” program. Someday he hopes he gets enough practice to beat his sons in Halo.</p>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="spkModal8" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<img src="img/avatar-.png" class="img-responsive sp-img">
</div>
<div class="modal-body">
<h3>Ron Cirujano</h3>
<h3 class="modal-title" id="myModalLabel">Country Manager at Elance-Odesk Philippines</h3>
<hr class="hrl">
<h5>Website: <a href="http://www.elance.com">http://www.elance.com</a></h5>
<h5>Website: <a href="http://www.odesk.com">http://www.odesk.com/a></h5>
<hr>
<p>Ron Cirujano joined Elance-oDesk as Country Manager for the Philippines in March 2013 and he is responsible for Elance-oDesk’s activities within the country.
He possesses more than ten years of experience in marketing, both online and offline and prior to joining Elance-oDesk, Ron Cirujano was the Marketing Head of an international company that operates in the Philippines. He handled the global online campaign with key executions in Digital and Social Media, Pay per Click and Search Engine Optimization. </p>
<p>He holds BSc in Business Management and Entrepreneurship, at San Beda College, in Manila. </p>
</div>
</div>