-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathspeakers.html
1167 lines (1083 loc) · 71.9 KB
/
speakers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Speakers</title>
<!-- Stylesheets -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<link rel="icon" href="images/favicon.png" type="image/x-icon">
<!-- Meta Tags -->
<meta name="keywords"
content="unStack, developers, software engineers, conferences, meetups, twitter, facebook, engineers" />
<meta name="description"
content="unStack is a community of passionate developers, designers, and other technical talents, unStack is mostly focused on hands-on technical workshops and Conferences so as to enhance individual tech skills" />
<meta name="author" content="Shodipo Ayomide, Kingdom, Ademola" />
<meta property="og:site_name" content="Speakers | Open-Source Community Event for developers">
<meta property="og:title" content="Speakers | Open-Source Community Event for developers">
<meta property="og:description"
content="unStack is a community of passionate developers, designers, and other technical talents, unStcak is mostly focused on hands-on technical workshops and Conferences so as to enhance individual tech skills">
<meta property="og:image"
content="https://raw.githubusercontent.com/unStackOfficial/unStack-logo-assets/master/fbcover.png">
<meta property="og:url" content="http://unstack.dev">
<meta name="twitter:title" content="Speakers | Open-Source Community Event for developers">
<meta name="twitter:description"
content="unStack is a community of passionate developers, designers, and other technical talents, unStcak is mostly focused on hands-on technical workshops and Conferences so as to enhance individual tech skills">
<meta name="twitter:image"
content="https://raw.githubusercontent.com/unStackOfficial/unStack-logo-assets/master/fbcover.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@unstack_">
<!-- End Meta Tags -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-140811559-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-140811559-1');
</script>
<!-- Responsive -->
<meta name="theme-color" content="#12114A">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script><![endif]-->
<!--[if lt IE 9]><script src="js/respond.js"></script><![endif]-->
</head>
<body>
<div class="page-wrapper">
<!-- Main Header-->
<header class="main-header">
<!--Header-Upper-->
<div class="header-upper">
<div class="outer-container">
<div class="clearfix">
<div class="pull-left logo-box">
<div class="logo">
<a href="index.html"><img src="images/logo.png" alt="" title=""></a>
</div>
</div>
<div class="nav-outer clearfix">
<!-- Main Menu -->
<nav class="main-menu navbar-expand-md">
<div class="navbar-header">
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse scroll-nav clearfix" id="navbarSupportedContent">
<ul class="navigation clearfix">
<li class=""><a href="index.html">Home</a></li>
<li class="dropdown"><a href="#">About</a>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="organizers.html">Organizers 🔥</a></li>
<li><a href="past-events.html">Past Events</a></li>
</ul>
</li>
<li class="current"><a href="speakers.html">Speakers 🔥</a></li>
<li><a href="schedule.html">Schedule</a></li>
<!-- <li><a href="#">Blog</a></li> -->
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- btn box -->
<div class="btn-box">
<a href="https://eventprime.co/e/github-universe-watch-party?fbclid=IwAR3nUyHqASTrEsNb7FSYxw5Af2QpeCaVCbK2jEhZ2w77-hK_0N033R6RXzA"
target="_blank" class="theme-btn btn-style-one">Save a seat</a>
</div>
<!--Outer Box-->
<div class="outer-box">
<!-- Nav Toggler -->
<!-- <div class="nav-toggler">
<button class="nav-btn"><span class="icon flaticon-arrows"></span></button>
</div> -->
</div>
</div>
</div>
</div>
<!--End Header Upper-->
</header>
<!--End Main Header -->
<!--Form Back Drop
<div class="form-back-drop"></div>
<section class="hidden-bar">
<div class="inner-box">
<div class="cross-icon"><span class="fa fa-times"></span></div>
<div class="title">
<h2>Register Here</h2>
</div>
<iframe src="https://eventprime.co/e/react-present-and-future-a-hands-on-approach" style="border:0px #ffffff none;" name="unstack-ayo" scrolling="yes" frameborder="1" marginheight="0px" marginwidth="0px" height="460px" width="400px" allowfullscreen></iframe>
</div>
</section>
End Hidden Bar -->
<!--Page Title-->
<section class="page-title" style="background-image:url(images/background/3.jpg);">
<div class="auto-container">
<span class="float-text">Speakers</span>
<h1>Speakers</h1>
<ul class="bread-crumb clearfix">
<li><a href="index.html">Home </a></li>
<li>Speakers</li>
</ul>
</div>
</section>
<!--End Page Title-->
<!-- Speakers Section Two -->
<section class="speakers-section-two style-two alternate">
<span class="float-text">Speakers</span>
<div class="anim-icons">
<span class="icon icon-cross-1"></span>
<span class="icon icon-circle-12"></span>
<span class="icon icon-circle-9"></span>
<span class="icon icon-twist-line-3"></span>
</div>
<div class="auto-container">
<div class="sec-title">
<h2>Event Speakers</h2>
</div>
<div class="row">
<div class="speaker-block-two col-lg-3 col-md-6 col-sm-12 wow zoomIn">
<div class="image-box">
<figure class="image"><img src="images/resource/shodipoayomide.jpg" alt=""></figure>
<div class="overlay-box">
<a href="#popup_ayo" class="link view-speaker ts-image-popup"
data-effect="mfp-zoom-in"><span class="flaticon-add-1"></span></a>
<div class="info">
<h5 class="name"><a href="#">Shodipo Ayomide</a></h5>
<span clas2s="designation" style="color: #FFF;">Our 2019 Awesome
<b>MC</b></span>
</div>
</div>
</div>
<!-- popup start-->
<div id="popup_ayo" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/resource/shodipoayomide.jpg" alt="">
</div>
</div>
<!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Shodipo Ayomide</h3>
<span class="speakder-designation">Our 2019 Awesome <b>MC</b></span>
<p>
Shodipo Ayomide is a Developer Advocate & Software Engineer with years
of experience building products across different sectors of the
ecosystem, Also Shodipo Ayomide is the Founder of Fremer which is a
Nigerian based company with an international reach that helps build
scalable startup product. He's passionate about solving complex problems
by building technological solutions out of business needs, and in the
past few years, he has enjoyed working with designers to perfectly
translate UI designs to sleek front-end applications that the users
love. He also love contributing to open-source technologies.
</p>
<h4 class="session-name">
Sessions by Developerayo<br>
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.00 am - 04.00 pm </span>
<p> <b>Talk Title:</b> The art of <b>Mcing</b></p>
</div>
</div>
<!-- <div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p> Marketing Matters </p>
</div>
</div>-->
</div>
<div class="ts-speakers-social">
<a href="https://twitter.com/developerayo" target="_blank"><i
class="fab fa-twitter"></i></a>
<a href="https://github.com/developerayo" target="_blank"><i
class="fab fa-github"></i></a>
<a href="https://fb.com/shodipo.ayomide" target="_blank"><i
class="fab fa-facebook"></i></a>
<a href="https://shodipoayomide.com" target="_blank"><i
class="fa fa-globe"></i></a>
<a href="https://linkedin.com/in/shodipo-ayomide" target="_blank"><i
class="fab fa-linkedin"></i></a>
<a href="https://instagram.com/developerayo" target="_blank"><i
class="fab fa-instagram"></i></a>
</div>
</div>
<!-- ts-speaker-popup-content end-->
</div>
</div>
</div>
</div>
<!-- Feature Block -->
<div class="speaker-block-two col-lg-3 col-md-6 col-sm-12 wow zoomIn">
<div class="image-box">
<figure class="image"><img src="images/resource/william-unstack.jpg" alt=""></figure>
<div class="overlay-box">
<a href="#popup_1" class="link view-speaker ts-image-popup"
data-effect="mfp-zoom-in"><span class="flaticon-add-1"></span></a>
<div class="info">
<h5 class="name"><a href="#">William Imoh</a></h5>
<span clas2s="designation" style="color: #FFF;">Software Engineer and Author
<b>@Scotch.io</b></span>
</div>
</div>
</div>
<!-- popup start-->
<div id="popup_1" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/resource/william-unstack.jpg" alt="">
</div>
</div>
<!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">William Imoh</h3>
<span class="speakder-designation">Software Engineer and Author
<b>@Scotch.io</b></span>
<p>
William is a developer, developer advocate, and community builder
passionate at building a better web and its supporting ecosystem. He is
an avid writer, speaker, loves to travel and admires Raccoons.
</p>
<h4 class="session-name">
Sessions by William<br>
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 am - 11.30 am </span>
<p> <b>Talk Title:</b> Build and ship Faster Apps for Jurastic Grade
Internet </p>
</div>
</div>
<!-- <div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p> Marketing Matters </p>
</div>
</div>-->
</div>
<div class="ts-speakers-social">
<a href="https://github.com/Chuloo" target="_blank"><i
class="fab fa-github"></i></a>
<a href="https://web.facebook.com/williamimoh" target="_blank"><i
class="fab fa-facebook"></i></a>
<a href="https://twitter.com/ichuloo" target="_blank"><i
class="fab fa-twitter"></i></a>
<!-- <a href="" target="_blank"><i class="fab fa-instagram"></i></a> -->
<a href="https://www.linkedin.com/in/ugonna-william-imoh-484367b5/"
target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<!-- ts-speaker-popup-content end-->
</div>
</div>
</div>
</div>
<!-- Feature Block -->
<div class="speaker-block-two col-lg-3 col-md-6 col-sm-12 wow zoomIn">
<div class="image-box">
<figure class="image"><img src="images/resource/quadri-unstack.jpg" alt=""></figure>
<div class="overlay-box">
<a href="#popup_2" class="link view-speaker ts-image-popup"
data-effect="mfp-zoom-in"><span class="flaticon-add-1"></span></a>
<div class="info">
<h5 class="name"><a href="#">Abiodun Quadri</a></h5>
<span clas2s="designation" style="color: #FFF;">Senior JS Engineer
<b>@Studio14</b></span>
</div>
</div>
</div>
<!-- popup start-->
<div id="popup_2" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/resource/quadri-unstack.jpg" alt="">
</div>
</div>
<!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Abiodun Quadri</h3>
<span class="speakder-designation">Senior JS Engineer
<b>@Studio14</b></span>
<p>
Quadri is a professional software Engineer currently working at Studio
14. He has professional experience working with JavaScript, Rust, Python
and C, with passion to build anything in JavaScript. Have a deep core
understanding of React and React Native, current working towards
understanding Embedded systems and iOT.<br><br>
<b>Talk description:</b><br>
To make software feel familiar, it should behave like the real world,
Animation gives life to your work, every displaying element needs to
fade or slide in and out of experience to bring about the super polished
professional look you desire. Learn how to leverage our professionally
looking designs with React.js animation.
<h4 class="session-name">
Sessions by Quadri<br>
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 am - 11.30 am </span>
<p> <b>Talk Title:</b> Advanced React Animations </p>
</div>
</div>
<!-- <div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p> Marketing Matters </p>
</div>
</div> -->
</div>
<div class="ts-speakers-social">
<a href="https://github.com/Quadriphobs1" target="_blank"><i
class="fab fa-github"></i></a>
<!-- <a href="https://" target="_blank"><i class="fab fa-facebook"></i></a> -->
<a href="https://twitter.com/iamphobs" target="_blank"><i
class="fab fa-twitter"></i></a>
<!-- <a href="" target="_blank"><i class="fab fa-instagram"></i></a> -->
<a href="https://www.linkedin.com/in/quadri-adekunle-89b417128"
target="_blank"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<!-- ts-speaker-popup-content end-->
</div>
</div>
</div>
</div>
<!-- Feature Block -->
<div class="speaker-block-two col-lg-3 col-md-6 col-sm-12 wow zoomIn">
<div class="image-box">
<figure class="image"><img src="images/resource/kingdom.jpg" alt=""></figure>
<div class="overlay-box">
<a href="#popup_3" class="link view-speaker ts-image-popup"
data-effect="mfp-zoom-in"><span class="flaticon-add-1"></span></a>
<div class="info" style="color: #FFF;">
<h5 class="name"><a href="#">Orjiewuru Kingdom</a></h5>
<span class="speakder-designation">unStack Co-Lead & Software Engineer
<b>@ShipStation & Andela</b></span>
</div>
</div>
</div>
<!-- popup start-->
<div id="popup_3" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/resource/kingdom.jpg" alt="">
</div>
</div>
<!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Orjiewuru Kingdom</h3>
<span class="speakder-designation">unStack Co-Lead & Software Engineer
<b>@ShipStation & Andela</b></span>
<p>
Kingdom is a software engineer with years of experience building
enterprise applications with different languages and frameworks in
different organizations. He's passionate about solving complex problems
by building technological solutions out of business
needs, and in the past few years, he has enjoyed working with designers
to perfectly translate UI designs to sleek front-end applications that
the users love. He has also contributed to building robust API
services<br><br>
<b>Talk description</b>
<p></p>
</p>
<h4 class="session-name">
Sessions by Kingdom
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 am - 11.30 am </span>
<p> <b>Talk Title:</b> Functional Composed Routing in React </p>
</div>
</div>
<!-- <div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p> Marketing Matters </p>
</div>
</div>
</div> -->
<div class="ts-speakers-social">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-google-plus"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<!-- ts-speaker-popup-content end-->
</div>
</div>
</div>
</div>
</div>
<!-- Feature Block -->
<div class="speaker-block-two col-lg-3 col-md-6 col-sm-12 wow zoomIn">
<div class="image-box">
<figure class="image"><img src="images/resource/obinna-unstack.png" alt=""></figure>
<div class="overlay-box">
<a href="#popup_4" class="link view-speaker ts-image-popup"
data-effect="mfp-zoom-in"><span class="flaticon-add-1"></span></a>
<div class="info">
<h5 class="name"><a href="#">Obinna Ekwuno</a></h5>
<span class="designation">Media Developer Expert <b>@Cloudinary</b></span>
</div>
</div>
</div>
<!-- popup start-->
<div id="popup_4" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/resource/obinna-unstack.png" alt="">
</div>
</div>
<!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Obinna Ekwuno</h3>
<span class="speakder-designation">Media Developer Expert
<b>@Cloudinary</b></span>
<p>
Obinna Ekwuno is a media developer expert at Cloudinary and also writes
about a lot of exciting stuff on Scotch.io and logRocket some of which
include topics on Gatsby, React and GraphQL. He is also very passionate
about performance and accessibility for the web<br><br>
<b>Talk Description</b><br>
Media accessibility is an important part of accessibility and
includes:How you combine colors together How to combine text and images,
what alternative to help users to access your website UI
This talk will cover aspects of creating and designing component based
platforms that can be used by everyone and also provide helpful tools to
tackle implementing it . Accessibility should be be treated as a feature
and not an after thought.
</p>
<h4 class="session-name">
Sessions by Obinna
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p><b>Talk Title:</b> React + Accessibility (m16y) = Awesome Web
for all </p>
</div>
</div>
<!-- <div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p> Marketing Matters </p>
</div>
</div>
</div> -->
<div class="ts-speakers-social">
<a href="https://github.com/Ekwuno" target="_blank"><i
class="fab fa-github"></i></a>
<a href="https://twitter.com/Obinnaspeaks" target="_blank"><i
class="fab fa-twitter"></i></a>
<a href="https://web.facebook.com/obinnaekwnuo" target="_blank"><i
class="fab fa-facebook"></i></a>
<a href="https://www.linkedin.com/in/ekwunoobinna/" target="_blank"><i
class="fab fa-linkedin"></i></a>
</div>
</div>
<!-- ts-speaker-popup-content end-->
</div>
</div>
</div>
</div>
</div>
<!-- Feature Block -->
<div class="speaker-block-two col-lg-3 col-md-6 col-sm-12 wow zoomIn">
<div class="image-box">
<figure class="image"><img src="images/resource/ayeni-unstack.jpg" alt=""></figure>
<div class="overlay-box">
<a href="#popup_5" class="link view-speaker ts-image-popup"
data-effect="mfp-zoom-in"><span class="flaticon-add-1"></span></a>
<div class="info">
<h5 class="name"><a href="#">Olusegun Ayeni</a></h5>
<span class="designation">Software Engineer <b>@Paystack</b></span>
</div>
</div>
</div>
<!-- popup start-->
<div id="popup_5" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/resource/ayeni-unstack.jpg" alt="">
</div>
</div>
<!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Olusegun Ayeni</h3>
<span class="speakder-designation">Software Engineer
<b>@Paystack</b></span>
<p>
Olusegun Ayeni is an Open sourcer & Software Engineer at Paystack. <br><br>
<b>Talk Description</b><br>
React Native is one of the most popular frameworks for cross-platform mobile
development. It is a known fact that it is a good framework for startups who
need to get an MVP out but have limited time and people.
This talk will highlight how React Native actually helps improve
productivity.
</p>
<h4 class="session-name">
Sessions by Olusegun
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p><b>Talk Title:</b> Amplify your productivity with React Native
</p>
</div>
</div>
<!-- <div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p> Marketing Matters </p>
</div>
</div>
</div> -->
<div class="ts-speakers-social">
<a href="https://github.com/iamraphson" target="_blank"><i
class="fab fa-github"></i></a>
<a href="https://twitter.com/iamraphson/" target="_blank"><i
class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/iamraphson/" target="_blank"><i
class="fab fa-linkedin"></i></a>
</div>
</div>
<!-- ts-speaker-popup-content end-->
</div>
</div>
</div>
</div>
</div>
<!-- Feature Block -->
<div class="speaker-block-two col-lg-3 col-md-6 col-sm-12 wow zoomIn">
<div class="image-box">
<figure class="image"><img src="images/resource/adora.jpg" alt=""></figure>
<div class="overlay-box">
<a href="#popup_6" class="link view-speaker ts-image-popup"
data-effect="mfp-zoom-in"><span class="flaticon-add-1"></span></a>
<div class="info">
<h5 class="name"><a href="#">Adora Nwodo</a></h5>
<span class="designation">Software Engineer</span>
</div>
</div>
</div>
<!-- popup start-->
<div id="popup_6" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/resource/adora.jpg" alt="">
</div>
</div>
<!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Adora Nwodo</h3>
<span class="speakder-designation">Software Engineer</span>
<p>
Nenne Adaora Nwodo who fondly likes to be called Adora is a Software
Engineer who is
passionate about a bunch of tech stuff, education & music.<br><br>
<b>Talk Description</b><br>
The ability to manage state across components is very crucial in a React
project and as a result should be done effectively.
This talk will show the possibility of using React Hooks & Context API as an
alternative to
Redux for state management in your React project.
</p>
<h4 class="session-name">
Sessions by Adora
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p><b>Talk Title:</b> State Management with React Hooks & Context
API</p>
</div>
</div>
<!-- <div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p> Marketing Matters </p>
</div>
</div>
</div> -->
<div class="ts-speakers-social">
<a href="https://github.com/adoranwodo" target="_blank"><i
class="fab fa-github"></i></a>
<a href="https://twitter.com/theadoranwodo" target="_blank"><i
class="fab fa-twitter"></i></a>
<a href="https://adoranwodo.com" target="_blank"><i
class="fa fa-globe"></i></a>
<a href="https://www.linkedin.com/in/adoranwodo/" target="_blank"><i
class="fab fa-linkedin"></i></a>
</div>
</div>
<!-- ts-speaker-popup-content end-->
</div>
</div>
</div>
</div>
</div>
<!-- Feature Block -->
<div class="speaker-block-two col-lg-3 col-md-6 col-sm-12 wow zoomIn">
<div class="image-box">
<figure class="image"><img src="images/resource/aniedi-unstack.jpg" alt=""></figure>
<div class="overlay-box">
<a href="#popup_7" class="link view-speaker ts-image-popup"
data-effect="mfp-zoom-in"><span class="flaticon-add-1"></span></a>
<div class="info" style="color: #FFF;">
<h5 class="name"><a href="#">Aniedi Udo-Obong</a></h5>
<span class="speakder-designation">Developer Relations, Sub-Saharan Africa
<b>@Google</b></span>
</div>
</div>
</div>
<!-- popup start-->
<div id="popup_7" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/resource/aniedi-unstack.jpg" alt="">
</div>
</div>
<!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Aniedi Udo-Obong</h3>
<span class="speakder-designation">Developer Relations, Sub-Saharan Africa
<b>@Google</b></span>
<p>
Aniedi is an information technology professional with over 12 years
practical experience working with Nigerian startups spanning human
resources, media, finance, education, and logistics. He currently manages
developer community relationships for Google across West, East and Southern
Africa.<br><br>
<b>Talk description</b>
<p></p>
</p>
<h4 class="session-name">
Sessions by Aniedi
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 am - 11.30 am </span>
<p> <b>Talk Title:</b> AMP </p>
</div>
</div>
<!-- <div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p> Marketing Matters </p>
</div>
</div>
</div> -->
<div class="ts-speakers-social">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-google-plus"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<!-- ts-speaker-popup-content end-->
</div>
</div>
</div>
</div>
</div>
<!-- Feature Block -->
<div class="speaker-block-two col-lg-3 col-md-6 col-sm-12 wow zoomIn">
<div class="image-box">
<figure class="image"><img src="images/resource/benny-unstack.jpg" alt=""></figure>
<div class="overlay-box">
<a href="#popup_8" class="link view-speaker ts-image-popup"
data-effect="mfp-zoom-in"><span class="flaticon-add-1"></span></a>
<div class="info">
<h5 class="name"><a href="#">Benny Ogidan</a></h5>
<span class="designation">Software Engineer <b>@Andela</b></span>
</div>
</div>
</div>
<!-- popup start-->
<div id="popup_8" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/resource/benny-unstack.jpg" alt="">
</div>
</div>
<!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Benny Ogidan</h3>
<span class="speakder-designation">Software Engineer <b>@Andela</b></span>
<p>
Software Engineer at Andela<br><br>
<b>Talk Description</b><br>
Setting up a GraphQL project on the frontend in a React app, setting up the
cache queries and mutations.
</p>
<h4 class="session-name">
Sessions by benny
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p><b>Talk Title:</b> Getting started with React and GraphQL </p>
</div>
</div>
<!-- <div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p> Marketing Matters </p>
</div>
</div>
</div> -->
<div class="ts-speakers-social">
<a href="https://github.com/iamraphson" target="_blank"><i
class="fab fa-github"></i></a>
<a href="https://twitter.com/iamraphson/" target="_blank"><i
class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/iamraphson/" target="_blank"><i
class="fab fa-linkedin"></i></a>
</div>
</div>
<!-- ts-speaker-popup-content end-->
</div>
</div>
</div>
</div>
</div>
<div class="speaker-block-two col-lg-3 col-md-6 col-sm-12 wow zoomIn">
<div class="image-box">
<figure class="image"><img src="images/resource/shedrack.png" alt=""></figure>
<div class="overlay-box">
<a href="#popup_9" class="link view-speaker ts-image-popup"
data-effect="mfp-zoom-in"><span class="flaticon-add-1"></span></a>
<div class="info">
<h5 class="name"><a href="#">Shedrack Akintayo</a></h5>
<span class="designation">Software Engineer</span>
</div>
</div>
</div>
<!-- popup start-->
<div id="popup_9" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/resource/shedrack.png" alt="">
</div>
</div>
<!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Shedrack Akintayo</h3>
<span class="speakder-designation">Software Engineer </span>
<p>
Shedrack Akintayo is a JavaScript Engineer, who work and has consulted for
various companies in Europe and Australia.
He has about 3years experience in software development.
He is also a Community Manager at the Facebook Developers Circles:Reactjs
Nigeria, He has a passion for the community and has helped in so many ways
to build tech communities in different parts of Lagos and Nigeria.
He has passion for javascript and building communities in Africa.
</p>
<b>Talk Description</b><br>
A Lightning Talk on Getting Started with React
</p>
<h4 class="session-name">
Sessions by Shedrack
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> 10.30 - 11.30 am </span>
<p><b>Talk Title:</b> Getting Started with React</p>
</div>
</div>
<div class="ts-speakers-social">
<a href="https://github.com/hacktivist123" target="_blank"><i
class="fab fa-github"></i></a>
<a href="https://twitter.com/coder_blvck/" target="_blank"><i
class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/shedrackakintayo/"
target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/in/coder_blvck/" target="_blank"><i
class="fab fa-instagram"></i></a>
</div>
</div>
<!-- ts-speaker-popup-content end-->
</div>
</div>
</div>
</div>
</div>
<div class="speaker-block-two col-lg-3 col-md-6 col-sm-12 wow zoomIn">
<div class="image-box">
<figure class="image"><img src="images/resource/sultan-unstack.png" alt=""></figure>
<div class="overlay-box">
<a href="#popup_10" class="link view-speaker ts-image-popup"
data-effect="mfp-zoom-in"><span class="flaticon-add-1"></span></a>
<div class="info">
<h5 class="name"><a href="#">Akintunde Sultan</a></h5>
<span class="designation">Software Engineer</span>
</div>
</div>
</div>
<!-- popup start-->
<div id="popup_10" class="container ts-speaker-popup mfp-hide">
<div class="row">
<div class="col-lg-6">
<div class="ts-speaker-popup-img">
<img src="images/resource/sultan-unstack.png" alt="">
</div>
</div>
<!-- col end-->
<div class="col-lg-6">
<div class="ts-speaker-popup-content">
<h3 class="ts-title">Akintunde Sultan</h3>
<span class="speakder-designation">Software Engineer </span>
<p>
Sultan is a frontend developer, a developer advocate for developers in Africa, and also the founder of DevCareer; a nonprofit that support developers with resources to move from beginners to intermediate writhing 3 months.
</p>
<b>Talk Description</b><br>
The tech ecosystem in Africa is fast-growing, leading to an increasing talent hunt in Africa by various tech organizations, but yet, we still have a low employment rate among developers.
This is because a large percentage of the developers are not ready for the market.
Africa is showing up more on the map ever than before, but we still have the ratio of beginners to experts at about 9-1. More folks are coming into software development in Africa ever than before, but a lot of them come in the wrong way, many do not have the strong foundation knowledge before trying to be language agnostic. Others are stuck as beginners due to lack of resources; which includes but not limited to good Laptops, Internet access, Mentors and in some cases; Electricity.
A very large percentage of developers in the beginner's stage has been there for over 6months, Picking up different languages with the aim to find a focus.
</p>
<h4 class="session-name">
Sessions by Sultan
</h4>
<div class="row">
<div class="col-lg-6">
<div class="speaker-session-info">
<h4>Day 1</h4>
<span> </span>
<p><b>Talk Title:</b> Software Development: Beginner to Intermediate</p>
</div>
</div>
<div class="ts-speakers-social">
<a href="https://github.com/" target="_blank"><i
class="fab fa-github"></i></a>
<a href="https://twitter.com/" target="_blank"><i
class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/"
target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/in/" target="_blank"><i
class="fab fa-instagram"></i></a>
</div>
</div>
<!-- ts-speaker-popup-content end-->
</div>
</div>
</div>
</div>
</div>
</div>
</section>