-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3689 lines (3044 loc) · 221 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US" class="state2 page-is-gated scroll-bar site-decoration-b"
data-skrollex-config="{isInitColorPanel: false, isCustomizer: false,
homeUri: 'https://frankline-sable.github.io',
themeUri: 'wp-content/themes/skrollex/',
permalink: 'https://frankline-sable.github.io',
colors: 'colors-preset-alice.css'}">
<!-- Owned by Frankline Sable -->
<meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="keywords"
content="portfolio, frankline,franklin,sable, frankline-sable, sable developer, high end developer , high-end developer nairobi, devops engineer kenya, devops engineer sable, frankline sable portfolio, dev nairobi">
<meta name="title" content="Frankline Sable Portfolio">
<meta name="description"
content="High end developer based in Nairobi Kenya. My portfolio is a representation of all I've learned and accomplished in field of Computer Technology throughout my 5 years experience.">
<meta name=”robots” content="index, follow">
<meta name="title" property="og:title" content="My Portfolio"/>
<meta property="og:type" content="Website"/>
<meta name="description" property="og:description"
content="I'm Frankline Sable and I'm a high end developer based in Nairobi Kenya. My portfolio is a representation of all I've learned and accomplished in field of Computer Technology throughout my 5 years experience."/>
<meta name="author" content="Frankline Sable"/>
<meta name="image" property="og:image" content="https://live.staticflickr.com/65535/50910855781_c373c75fff_z.jpg"/>
<meta property="og:url" content=""/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-V6V1DQMEF2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-V6V1DQMEF2');
</script>
<title>Frankline's| Portfolio Website</title>
<link rel='dns-prefetch' href='http://maps.googleapis.com/'/>
<link rel='dns-prefetch' href='http://fonts.googleapis.com/'/>
<link rel='dns-prefetch' href='http://s.w.org/'/>
<style>
#wp-admin-bar-layers-edit-layout .ab-icon:before {
font-family: "layers-interface" !important;
content: "\e62f" !important;
font-size: 16px !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css'
href='wp-includes/css/dist/block-library/style.min5697.css?ver=5.5.3' type='text/css' media='all'/>
<link rel='stylesheet' id='contact-form-7-css'
href='wp-content/plugins/contact-form-7/includes/css/styles1748.css?ver=5.0.5' type='text/css' media='all'/>
<link rel='stylesheet' id='layers-google-fonts-css'
href='http://fonts.googleapis.com/css?family=Ubuntu%3Aregular%2Citalic%2C700%2C300%2C300italic%2C500%2C500italic%2C700italic%7COswald%3Aregular%2C700%2C300&ver=2.0.10'
type='text/css' media='all'/>
<link rel='stylesheet' id='layers-framework-css'
href='wp-content/themes/layerswp/assets/css/framework6471.css?ver=2.0.10' type='text/css' media='all'/>
<link rel='stylesheet' id='layers-components-css'
href='wp-content/themes/layerswp/assets/css/components6471.css?ver=2.0.10' type='text/css' media='all'/>
<link rel='stylesheet' id='layers-responsive-css'
href='wp-content/themes/layerswp/assets/css/responsive6471.css?ver=2.0.10' type='text/css' media='all'/>
<link rel='stylesheet' id='layers-icon-fonts-css'
href='wp-content/themes/layerswp/assets/css/layers-icons6471.css?ver=2.0.10' type='text/css' media='all'/>
<link rel='stylesheet' id='fancybox-css' href='wp-content/plugins/easy-fancybox/css/jquery.fancybox.1.3.23.min.css'
type='text/css' media='screen'/>
<link rel='stylesheet' id='layers-font-awesome-css'
href='wp-content/themes/layerswp/core/assets/plugins/font-awesome/font-awesome.min6471.css?ver=2.0.10'
type='text/css' media='all'/>
<link rel='stylesheet' id='animate.css-css'
href='wp-content/themes/skrollex/assets/lib/bower_components/animate.css/animate.min819d.css?ver=035730f53652d16c5993aaa496aaac06'
type='text/css' media='all'/>
<link rel='stylesheet' id='purecss-css'
href='wp-content/themes/skrollex/assets/lib/pure/pure-min819d.css?ver=035730f53652d16c5993aaa496aaac06'
type='text/css' media='all'/>
<link rel='stylesheet' id='purecss-grids-responsive-css'
href='wp-content/themes/skrollex/assets/lib/pure/grids-responsive-min819d.css?ver=035730f53652d16c5993aaa496aaac06'
type='text/css' media='all'/>
<link rel='stylesheet' id='linecons-css'
href='wp-content/themes/skrollex/assets/lib/linecons/style819d.css?ver=035730f53652d16c5993aaa496aaac06'
type='text/css' media='all'/>
<link rel='stylesheet' id='custom-mit-code-css'
href='wp-content/themes/skrollex/assets/lib/mit-code/style819d.css?ver=035730f53652d16c5993aaa496aaac06'
type='text/css' media='all'/>
<link rel='stylesheet' id='custom-gnu-code-css'
href='wp-content/themes/skrollex/assets/lib/gnu-code/style819d.css?ver=035730f53652d16c5993aaa496aaac06'
type='text/css' media='all'/>
<link rel='stylesheet' id='minicolors-css'
href='wp-content/themes/skrollex/assets/lib/bower_components/minicolors/jquery.minicolors819d.css?ver=035730f53652d16c5993aaa496aaac06'
type='text/css' media='all'/>
<link rel='stylesheet' id='skrollex_child_styles-css'
href='wp-content/themes/skrollex/assets/css/style819d.css?ver=035730f53652d16c5993aaa496aaac06'
type='text/css' media='all'/>
<link rel='stylesheet' id='theme-color-schemes-css'
href='wp-content/themes/skrollex/assets/css/colors-preset-alicef0c7.css?ver=1606925804' type='text/css'
media='all'/>
<link rel='stylesheet' id='layers-style-css' href='wp-content/themes/skrollex/style6471.css?ver=2.0.10'
type='text/css' media='all'/>
<script type='text/javascript' src='wp-includes/js/jquery/jquery4a5f.js?ver=1.12.4-wp' id='jquery-core-js'></script>
<script type='text/javascript' src='wp-content/themes/layerswp/assets/js/plugins6471.js?ver=2.0.10'
id='layers-plugins-js'></script>
<script type='text/javascript' id='layers-framework-js-extra'>
/* <![CDATA[ */
var layers_script_settings = {"header_sticky_breakpoint": "270"};
/* ]]> */
</script>
<script type='text/javascript' src='wp-content/themes/layerswp/assets/js/layers.framework6471.js?ver=2.0.10'
id='layers-framework-js'></script>
<link rel="canonical" href="index.html"/>
<link rel='shortlink' href='index.html'/>
<style type="text/css" id="layers-inline-styles-header">
body {
font-family: "Ubuntu", Helvetica, sans-serif;
}
h1, h2, h3, h4, h5, h6, .heading {
font-family: "Oswald", Helvetica, sans-serif;
}
button, .button, input[type=submit] {
font-family: "Oswald", Helvetica, sans-serif;
} </style>
<style type="text/css">.recentcomments a {
display: inline !important;
padding: 0 !important;
margin: 0 !important;
}</style>
</head>
<body id="skrollex-body"
class="home page-template page-template-builder page-template-builder-php page page-id-840 no-colors-label background-k body-header-logo-left">
<div class="gate colors-o">
<div class="gate-content">
<div class="gate-bar background-highlight"></div>
<div class="preloader">
<div class="preloader-container">
<div class="circleOne border-heading"></div>
<div class="circleTwo border-heading"></div>
<div class="circleThree border-heading"></div>
<div class="circleFour border-heading"></div>
<div class="circleFive border-heading"></div>
<div class="circleSix border-heading"></div>
</div>
</div>
</div>
</div>
<div class="page-border heading top colors-a main-navigation"></div>
<div class="page-border heading bottom colors-a main-navigation"><a href="#top" class="to-top hover-effect">To <span>Top</span></a><a
href="#scroll-down" class="scroll-down hover-effect">Scroll <span>Down</span></a></div>
<div class="page-border heading left colors-a main-navigation border-pad"></div>
<div class="page-border heading right colors-a main-navigation border-pad"></div>
<div class="page-border heading left colors-a main-navigation">
<ul>
<li><a href="https://web.facebook.com/lorem.matt/" target="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://www.instagram.com/lensesable/" target="_blank"><i class="fa fa-instagram"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCN_d-ax6_9zPWgSuRUYn-QA" target="_blank"><i
class="fa fa-youtube"></i></a></li>
<li><a href="https://github.com/Frankline-Sable" target="_blank"><i class="fa fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/frankline-sable/" target="_blank"><i class="fa fa-linkedin"></i></a>
</li>
</ul>
</div>
<div class="page-border heading right colors-a main-navigation"></div>
<section id="top-nav" class="page-transition main-navigation heading colors-a top-nav-logo-left"
data-colors-1="colors-a" data-colors-2="colors-b">
<div class="layout-boxed top-nav-inner clearfix">
<span class="menu-toggle ext-nav-toggle" data-target=".ext-nav"><span></span></span>
<nav class="nav nav-horizontal">
<ul id="menu-skrollex-menu-1" class="menu">
<li id="menu-item-1246"
class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1246">
<a href="#home" aria-current="page">Home</a></li>
<li id="menu-item-1247"
class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1247">
<a href="#about" aria-current="page">About</a></li>
<li id="menu-item-1248"
class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1248">
<a href="#goal" aria-current="page">Goal</a></li>
<li id="menu-item-1249"
class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1249">
<a href="#resume" aria-current="page">Resume</a></li>
<li id="menu-item-1250"
class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1250">
<a href="#work" aria-current="page">Work</a></li>
<li id="menu-item-1251"
class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1251">
<a href="#skills" aria-current="page">Skills</a></li>
<li id="menu-item-1253"
class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1253">
<a href="#contact" aria-current="page">Contact</a></li>
</ul>
<a class="responsive-nav" data-toggle="#off-canvas-right" data-toggle-class="open">
<span class="l-menu"></span>
</a></nav>
<div class="logo">
<div class="site-description">
<h3 class="sitename sitetitle"><a href="https://frankline-sable.github.io">FRANK<span>LINE</span></a>
</h3>
</div>
</div>
</div>
</section>
<ul id="dot-scroll" class="colors-a no-colors-label"></ul>
<div class="overlay-window gallery-overlay colors-q" data-overlay-zoom=".fg">
<div class="overlay-control">
<a class="previos" href="#"></a>
<a class="next" href="#"></a>
<a class="cross" href="#"></a>
</div>
<div class="overlay-view scroll-bar">
<div class="layout-boxed overlay-content">
</div>
</div>
<ul class="loader">
<li class="background-highlight"></li>
<li class="background-highlight"></li>
<li class="background-highlight"></li>
</ul>
</div>
<div class="overlay-window map-overlay colors-q">
<div class="overlay-control">
<a class="cross" href="#"></a>
</div>
<div class="overlay-view scroll-bar">
</div>
</div>
<div class="wrapper invert off-canvas-right scroll-bar colors-k" id="off-canvas-right">
<a class="close-canvas" data-toggle="#off-canvas-right" data-toggle-class="open">
<i class="l-close"></i>
Close
</a>
<div class="content-box nav-mobile page-transition">
<nav class="nav nav-vertical">
<ul id="menu-skrollex-menu-2" class="menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1246">
<a href="#home" aria-current="page">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1247">
<a href="#about" aria-current="page">About</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1248">
<a href="#goal" aria-current="page">Goal</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1249">
<a href="#resume" aria-current="page">Resume</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1250">
<a href="#work" aria-current="page">Work</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1251">
<a href="#skills" aria-current="page">Skills</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-1252">
<a href="#contact" aria-current="page">Contact</a></li>
</ul>
</nav>
</div>
</div>
<section class="wrapper-site">
<div class="ext-nav scroll-bar page-transition heading non-preloading background-t">
<div class="view half-height">
<img alt class="bg static" src="wp-content/themes/skrollex/assets/preset-images/bg-john-kraus-2.jpg"/>
<div class="fg no-top-padding no-bottom-padding full-height">
<div class="full-height">
<div class="pure-g full-height">
<a href="#contact"
class="position-relative pure-u-1 pure-u-sm-12-24 colors-r full-height">
<div>
<span class="side-label highlight">Lets Talk</span>
<span class="side-title heading">Contact</span>
</div>
</a>
<a href="#process"
class="position-relative pure-u-1 pure-u-sm-12-24 colors-s full-height">
<div>
<span class="side-label highlight">My Workflow</span>
<span class="side-title heading">Process</span>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="half-height">
<div class="pure-g full-height">
<a href="#numbers"
class="position-relative pure-u-1 pure-u-sm-12-24 pure-u-lg-8-24 colors-t full-height border-bottom border-right border-lite-t">
<div>
<span class="side-label highlight">Some Facts</span>
<span class="side-title heading">Accomplishments</span>
</div>
</a>
<a href="#process"
class="position-relative pure-u-1 pure-u-sm-12-24 pure-u-lg-8-24 colors-t full-height border-bottom border-right border-lite-t">
<div>
<span class="side-label highlight">Awesome</span>
<span class="side-title heading">How I Work</span>
</div>
</a>
<a href="#who-we-are"
class="position-relative pure-u-1 pure-u-sm-12-24 pure-u-lg-8-24 colors-t full-height border-bottom border-right border-lite-t">
<div>
<span class="side-label highlight">I'm a Developer</span>
<span class="side-title heading">Who Am I</span>
</div>
</a>
</div>
</div>
</div>
<section id="wrapper-content" class="wrapper-content">
<div class="view x40-widget widget " id="layers-widget-skrollex-section-3">
<div data-src="images/test1.png"
data-alt="" class="bg-holder"></div>
<div data-src="images/test2.png"
data-alt="" class="bg-holder"></div>
<div id="home" class="fg colors-b full-size">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
class="lamp-scene-visibility svg-overlay right-top" viewBox="0 -80 407.9 670" width="407.9"
height="650" preserveAspectRatio="xMaxYMax">
<defs>
<linearGradient class="light" id="layers-widget-skrollex-section-3-svg-overlay-lamp-grad-light"
gradientUnits="userSpaceOnUse" x1="203.9277" y1="569.7373" x2="203.9277"
y2="203.0005">
<stop offset="0" style="stop-color:#ffffff;stop-opacity:0"></stop>
<stop offset="1" style="stop-color:#ffffff;stop-opacity:0.72"></stop>
</linearGradient>
<mask x="0" y="0" width="100%" height="100%"
id="layers-widget-skrollex-section-3-svg-overlay-lamp-mask-light">
<polygon points="407.9,569.7 259,226 204,226 150.7,226 2,569.5 "
fill="url('#layers-widget-skrollex-section-3-svg-overlay-lamp-grad-light')"></polygon>
</mask>
<mask x="0" y="0" width="100%" height="100%"
id="layers-widget-skrollex-section-3-svg-overlay-lamp-mask-pano">
<rect fill="#000000" width="100%" height="100%"/>
<circle fill="#000000" stroke="#ffffff" stroke-width="4" cx="204.95001" cy="226.37499"
r="56.72436"/>
</mask>
<mask x="0" y="0" width="100%" height="100%"
id="layers-widget-skrollex-section-3-svg-overlay-lamp-mask-pano-int">
<rect fill="#000000" width="100%" height="100%"/>
<circle fill="#777777" stroke="#000000" stroke-width="4" cx="204.95001" cy="226.37499"
r="56.72436"/>
</mask>
<filter id="layers-widget-skrollex-section-3-svg-overlay-lamp-glow" x="-50%" y="-50%"
height="300%" width="300%">
<feGaussianBlur stdDeviation="15" result="coloredBlur"></feGaussianBlur>
<feMerge>
<feMergeNode in="coloredBlur"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
</defs>
<rect width="100%" height="100%" class="fill-background"
mask="url('#layers-widget-skrollex-section-3-svg-overlay-lamp-mask-light')"/>
<g>
<line y2="170" x2="204.86143" y1="189.29198" x1="204.86143" stroke-width="7" class="stroke-text"
stroke-opacity="1" fill="none" stroke="null"/>
<path filter="url('#layers-widget-skrollex-section-3-svg-overlay-lamp-glow')" stroke="null"
fill-opacity="1" class="fill-heading"
d="m204.85985,244.18162c10.12762,0 18.33815,-8.20948 18.33815,-18.3371c0,-4.27359 -2.51853,-8.19637 -4.97414,-11.31059c-2.59981,-3.29564 -3.94009,-6.16236 -5.47911,-8.78733l-15.76718,0c-1.55632,2.65225 -2.86094,5.46442 -5.4812,8.78943c-2.45299,3.11316 -4.97257,7.03647 -4.97257,11.30849c0.00052,10.12762 8.21053,18.3371 18.33605,18.3371z"/>
<line class="stroke-heading" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10"
x1="197.84435" y1="202.35186" x2="211.96974" y2="202.35186"/>
<line class="stroke-heading" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10"
x1="197.84435" y1="197.18737" x2="211.96974" y2="197.18737"/>
<line class="stroke-heading" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10"
x1="199.69222" y1="191.93374" x2="210.12187" y2="191.93374"/>
<line class="stroke-heading" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10"
x1="202.40582" y1="189.31191" x2="207.40775" y2="189.31191"/>
<path d="m204.90705,237.7272c6.51001,0 11.80402,-5.29453 11.80402,-11.80244"
stroke-miterlimit="10" stroke-linecap="round" stroke-width="7" stroke-opacity="0.2"
class="stroke-text" fill="none" stroke="null"/>
</g>
<g>
<rect width="100%" height="226.37499" class="fill-heading"
mask="url('#layers-widget-skrollex-section-3-svg-overlay-lamp-mask-pano')"/>
<rect width="100%" height="226.37499" class="fill-text"
mask="url('#layers-widget-skrollex-section-3-svg-overlay-lamp-mask-pano-int')"/>
<polyline points="204.86143,165 250,100 590,300" fill="none" class="stroke-heading"
stroke-width="6"/>
<polyline points="196.86143,166 212.86143,166" fill="none" class="stroke-heading"
stroke-width="5" stroke-linecap="round"/>
<circle class="fill-heading" stroke="none" stroke-width="5" cx="250" cy="100" r="8"/>
<circle class="fill-heading" stroke="none" stroke-width="5" cx="204.86143" cy="165" r="8"/>
</g>
</svg>
<div class="flask-bubbles from-bottom svg-overlay right-bottom fixed hide-on-mobile">
<div class="background-heading bubble b0"></div>
<div class="background-heading bubble b1"></div>
<div class="background-heading bubble b2"></div>
<div class="background-heading bubble b3"></div>
<div class="background-heading bubble b4"></div>
<div class="background-heading bubble b5"></div>
<div class="background-heading bubble b6"></div>
<div class="background-heading bubble b7"></div>
<div class="background-heading bubble b8"></div>
<div class="background-heading bubble b9"></div>
</div>
<div class="layout-boxed section-top"><p class="heading float-text-left">Responsive</p>
<p class="color-heading float-text-right-bottom">Game Developer<br/>
Programmer<br/>
Computer Animator<br/>
Graphics Designer<br/>
2D/3D Artist<br/>
Network Admin<br/>
Database Admin<br/>
Web Developer<br/>
ICT Consultant</p>
</div>
<div class="section-cols layout-boxed">
<div class="pure-g">
<div class="layers-widget-skrollex-section-55d67fa0e10b8438221435 pure-u-1 pure-u-lg-12-24 col-padding">
<h1 class="home-f-title"><span>I'm</span><br/>Frank<span>line</span><br/>Sab<span>le.</span>
</h1>
<p class="home-f-details color-heading"><strong>
COMPUTER TECHNOLOGY SPECIALIST</strong><br/>
Hallo world! Welcome to my online portfolio, feel free to browse all and learn more info
about me.
You can also check out my other links on the far left of this window.
</p>
<p class="home-f-buttons"><a class="button heading-y background-y hover-light"
href="#about">About Me</a><a
class="button heading-x background-x hover-light" href="raw/CV-Frankline_Odero.pdf"
target="_blank">View
CV</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="view x40-widget widget hide-on-small-devices" id="layers-widget-skrollex-section-4">
<div data-src="images/bg_saved_1.jpg"
data-alt="" class="bg-holder"></div>
<div class="fg colors-none no-top-padding no-bottom-padding">
<div class="section-cols layout-fullwidth">
<div class="pure-g">
<div class="layers-widget-skrollex-section-55d8cbf47a484111710171 pure-u-1 pure-u-md-8-24 ">
<div class="banner-box background-l heading-l">
<div class="banner-cell">
<div class="banner-title">Experienced</div>
<div class="banner-subtitle">5+ Years</div>
</div>
<div class="banner-cell success-background">Experience from various project <br/>work
and freelance jobs
</div>
</div>
</div>
<div class="layers-widget-skrollex-section-55d8ecd2b32e1520720461 pure-u-1 pure-u-md-8-24 ">
<div class="banner-box background-m heading-m">
<div class="banner-cell">
<div class="banner-title">Communication</div>
<div class="banner-subtitle">Very Eloquent</div>
</div>
<div class="banner-cell warning-background">Fluent in both<br/> English & Swahili<br/>
</div>
</div>
</div>
<div class="layers-widget-skrollex-section-55d8ecd934c82285362295 pure-u-1 pure-u-md-8-24 ">
<div class="banner-box background-n heading-n">
<div class="banner-cell">
<div class="banner-title">Skills Levelled</div>
<div class="banner-subtitle">Highly Proficient</div>
</div>
<div class="banner-cell info-background">Well versed in several<br/> Soft and technical
skills
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="view x40-widget widget text-bg" id="layers-widget-skrollex-section-5"
data-text-effect-selector="h1,h2,h3,h4" data-text-effect="effect-a-animated">
<div data-src="wp-content/uploads/sites/110/2015/10/bg-picjumbo.com_IMG_4563.jpg"
data-alt="" class="bg-holder"></div>
<div data-src="wp-content/uploads/sites/110/2015/10/bg-picjumbo.com_IMG_4563.jpg"
data-alt="" class="bg-holder"></div>
<div id="about" class="fg colors-c ">
<div class="layout-boxed section-top"><h3 class="heading-section-title">About</h3>
<p class="header-details"><span>I Create</span> Awesome Stuff</p>
<p class="lead">Passionate, energetic and dynamic <span>computer technology specialist</span>, with
over 5+ years of experience in computer systems engineering and UI/UX design. Skilled in both
the frontend and backend system development, bundled with a strong foundation in math’s, logic,
and cross-platform coding in Laravel, flutter, Django frameworks e.t.c.</p>
</div>
<div class="section-cols layout-boxed">
<div class="pure-g">
<div class="layers-widget-skrollex-section-55c8d1dfc0f70041705364 pure-u-1 pure-u-md-8-24 col-padding">
<div class="col-icon color-heading">
<i class="li_pen"></i>
</div>
<div class="col-content">
<h5 class="heading-col-title">UI/UX <span>Design</span></h5>
<p>
Creative, talented in Sketch(wireframe) and UX research along with excellent skills
on product prototyping and service workflow optimization, to enhance the User
Experience.
</p>
</div>
</div>
<div class="layers-widget-skrollex-section-55c8d1dfc0f7c247758097 pure-u-1 pure-u-md-8-24 col-padding">
<div class="col-icon color-heading">
<i class="li_clip"></i>
</div>
<div class="col-content">
<h5 class="heading-col-title">Coding <span>Web/Desktop</span></h5>
<p>
Gifted programmer, having strong expertise in high level languages like python,
java, C++, php etc. and working alongside top notch frameworks like Laravel,
Flutter, Django, Rails and Conda.
</p>
</div>
</div>
<div class="layers-widget-skrollex-section-55c8d1dfc0f82428538252 pure-u-1 pure-u-md-8-24 col-padding">
<div class="col-icon color-heading">
<i class="li_tv"></i>
</div>
<div class="col-content">
<h5 class="heading-col-title">Artificial <span>Intelligence</span></h5>
<p>
My primary passion is artificial intelligence, and since AI is the future, most of
the services I do I try to integrate a little bit of Ai functionality in there to
improve the efficiency and automation.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="view x40-widget widget text-bg" id="layers-widget-skrollex-section-7"
data-text-effect-selector="h1,h2,h3,h4" data-text-effect="effect-a-animated">
<div data-src="wp-content/uploads/sites/110/2015/10/bg-stocksnap-3F7D411CC8.jpg"
data-alt="" class="bg-holder"></div>
<div data-src="wp-content/uploads/sites/110/2015/10/bg-picjumbo.com_IMG_7432.jpg"
data-alt="" class="bg-holder"></div>
<div id="goal" class="fg colors-c ">
<div class="layout-boxed section-top"><h3 class="heading-section-title">Goal</h3>
<p class="header-details">I want to <span>change</span> people's <span>lives</span></p>
<p class="lead">
I am motivated in making a true difference in the lives of the people as I envisage creating
truly <span>beautiful</span> and <span>efficient</span> products to make people’s experience
with technology <span>memorable</span>,
while enhancing and improving their lives.
</p>
</div>
</div>
</div>
<div class="view x40-widget widget " id="layers-widget-skrollex-section-8">
<div id="who-we-are" class="fg colors-a no-top-padding no-bottom-padding">
<div class="section-cols layout-fullwidth">
<div class="pure-g">
<div class="layers-widget-skrollex-section-55cbff3b8b1c2451901248 pure-u-1 pure-u-lg-12-24 col-height position-relative height-400">
<div class="view"><img class="bg"
src="images/peek_me.png"
alt=""/>
<div class="fg content-box col-height height-400">
<div class="position-middle-center"><a
class="button heading-g background-g border-normal-g hover-light"
href="#work">View My Work</a>
</div>
</div>
</div>
</div>
<div class="layers-widget-skrollex-section-55cbff3b8b1cb116049400 pure-u-1 pure-u-lg-12-24 col-height position-relative height-400">
<div class="position-middle-center"><h4 class="heading-subsection-col-title">
<span>Who</span> Am I</h4>
<p class="col-details">
<span>Innovation distinguishes between a leader and a follower.</span>
</p>
<p> I'm a Computer Technology Specialist from Maseno
University. Since I graduated in December 2018, I have worked on various hardware
and software problems revolving around information systems.
</p>
<p> I also have a lot of experience with online code repositories, and I love to
contribute as much as I can. People would describe me as a good communicator because
I’m always able to articulate people’s needs, whether it be clients or my teammates.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="view x40-widget widget text-bg" id="layers-widget-skrollex-section-9"
data-text-effect-selector="h1,h2,h3,h4" data-text-effect="effect-a-animated">
<div data-src="wp-content/uploads/sites/110/2015/10/bg-pexels-coffee-coffee-machine-cup-3042.jpg"
data-alt="" class="bg-holder"></div>
<div data-src="wp-content/uploads/sites/110/2015/10/bg-pexels-coffee-coffee-machine-cup-3042.jpg"
data-alt="" class="bg-holder"></div>
<div id="resume" class="fg colors-c ">
<div class="layout-boxed section-top"><h3 class="heading-section-title">Resume</h3>
<p class="header-details">Summary of my <span>Qualifications</span></p>
</div>
<div class="section-cols layout-boxed">
<div class="pure-g">
<div class="layers-widget-skrollex-section-55ca79e2d9085825707768 col-padding col-style-decorated pure-u-md-15-24 pure-u-sm-1">
<h5 class="heading-col-title">
Work Experience
</h5>
<div class="pure-g">
<div class="pure-u-12-24 pure-u-6-24 ">
<div class="">
<article class="">
<span><b>Techxers Tech Company</b></span><br>
<span><i><b>UI/UX Developer, Animator and Fullstack Developer.</b></i></span><br>
<span>Nairobi, Kenya</span><br>
<span>January – November 2020</span><br>
<ul>
<li>Full-stack developer - Wrote and reviewed code for websites using
Laravel, Node.js, Vue and developed android applications using
flutter.
</li>
<li>Worked on an average of three minor websites or one major website
per month.
</li>
<li>Had the privilege of mentoring 4 junior software developers.
</li>
</ul>
</article>
<article class="">
<span><b>National Industrial Training Authority(NITA)</b></span><br>
<span><i><b>ICT Assistant</b></i></span><br>
<span>Industrial Area, Nairobi</span><br>
<span>May 2018 - September 2018</span><br>
<ul>
<li> Daily diagnosis and maintenance of the workstations, plus ensuring
an
up-to-date inventory of software and hardware, whereby I’d solved
over 100
issues in regards to the IT infrastructures!
</li>
<li> Network and router configurations and operating systems
installation on the
various end devices (smartphones, workstations) and intermediary
devices
(routers)
</li>
<li> Reviewed work orders and accurately input data into company
database.
Flagged accounts needing additional services and routed this
information to
appropriate teams to prevent service delays
</li>
</ul>
</article>
<article class="">
<span><b>Google</b></span><br>
<span><i><b>Google Development Group(GDG) Participant</b></i></span><br>
<span>Kisumu, Kenya</span><br>
<span>May 2017</span><br>
<ul>
<li>One of the 50 participants in the hackathon</li>
<li>Learned about Android programming, Google home and enterprise
applications with
Google and open sources
</li>
<li>Also worked on a firebase real-time message up in a team</li>
</ul>
</article>
</div>
</div>
<div class="pure-u-12-24 pure-u-6-24 ">
<div class="">
<article class="">
<span><b>CEO & CO-FOUNDER CREATORS GALAXY INC</b></span><br>
<span><i><b>Script Programmer & Visual Effects Supervisor</b></i></span><br>
<span>Nairobi, Kenya</span><br>
<span>Nov 2019 - present</span><br>
<ul>
<li>Created mobile games (Anarchy, Grudge Guess) to provide fun and
social
form of entertainment among the Kenyan youths.
</li>
<li>Within 1 months we had over 300 fans on social media and over 100
active
downloads for the android platform.
</li>
<li>I design and build game backend engine code and oversee all the
other
aspects of the games. (C#, SQLITE, SHADERS, VF
</li>
</ul>
</article>
<article class="">
<span><b>Freelancing</b></span><br>
<span><i><b>Free lance software developer</b></i></span><br>
<span>Nairobi, Kenya</span><br>
<span>December 2018 - present</span><br>
<ul>
<li> Created and implemented a working digital census platform, to
demonstrate how effective and time conscious digital census is
compared to the manual census operation.
</li>
<li> Worked on a Medical Tipper mobile application to educate users on
ways of leaving a long healthy lifestyle, and on the current trends
of diseases, built and maintained the server’s SQL database.
</li>
<li> I designed and implemented a working door lock security system
circuit that can be used to prevent burglary by applying digital
password protection to doors and lockers.
</li>
</ul>
</article>
<article class="">
<span><b>Intel's Artificial Intelligence</b></span><br>
<span><i><b>Intel Deep Learning SDK Workshop participant</b></i></span><br>
<span>Maseno University</span><br>
<span>September 2017</span><br>
<ul>
<li>This is where i become passionate about AI</li>
<li>We were given remote access to Intel Servers</li>
<li>Learnt about intel's optmized frameworks for deep learning</li>
<li>Also gained more knownledge in how an Ai works i.e(Senses ⇉
Reason
⇉ Act
⇉ Adapt
</li>
</ul>
</article>
</div>
</div>
</div>
</div>
<div class="layers-widget-skrollex-section-55ca79e2d9085825707768 col-padding col-style-decorated pure-u-md-9-24 pure-u-sm-1">
<h5 class="heading-col-title">Education</h5>
<div class="pure-g">
<div class="pure-u-12-24 pure-u-6-24 ">
<div>
<div>
<img style="vertical-align: middle" src="images/MasenoUniversityLogo.png"
alt="logo"
width="64"
height="64" class="">
<span style="padding: 8px;font-weight: 400;font-size: 14px"
class="w3-wide w3-text-black w3-text-shadow">Maseno University</span><br>
<div class="w3-padding-4">
<span><i><b>Bsc. Computer Technology</b></i></span><br>
<span>Nairobi, Kenya</span><br>
<span>Sep 2014 - Dec 2018</span><br>
<span><em>⇒ Second Class Upper Division</em></span>
</div>
</div>
<br/>
<div>
<span style="padding: 8px;font-weight: 400;font-size: 14px"
class="w3-wide w3-text-black w3-text-shadow">The Komarock School</span><br>
<div class="w3-padding-4">
<span><i><b>Kenya Certificate of Secondary Education</b></i></span><br>
<span>Nairobi, Kenya</span><br>
<span>Feb 2010 - Nov 2013</span><br>
<span><em>⇒ Grade B(Plain)</em></span>
</div>
</div>
<br/>
</div>
</div>
<div class="pure-u-12-24 pure-u-6-24 ">
<div>
<div>
<img style="vertical-align: middle" src="images/wantech.png" alt="logo"
width="64"
height="64"
class="">
<span style="padding: 8px;font-weight: 400;font-size: 14px"
class="w3-wide w3-text-black w3-text-shadow">Wantech</span><br>
<div class="w3-padding-4">
<span><i><b>Cert. in ICT</b></i></span><br>
<span>Nairobi, Kenya</span><br>
<span>June 2014 - Sep 2018</span><br>
<span><em>⇒ Order of Merit</em></span>
</div>
</div>
<br/>
<div>
<span style="padding: 8px;font-weight: 400;font-size: 14px"
class="w3-wide w3-text-black w3-text-shadow">Kayole Primary</span><br>
<div class="w3-padding-4">
<span><i><b>Kenya Certificate of Primary Education </b></i></span><br>
<span>Nairobi, Kenya</span><br>
<span>Jan 2002 - Nov 2009</span><br>
<span><em>⇒ 327/500</em></span>
</div>
</div>
<br/>
</div>
</div>
</div>
<div class=" col-padding col-style-decorated">
<h5 class="heading-col-title">Relevant Coursework:</h5>
<div>
<ul>
<li>Data mining <span>(cct 416)</span></li>
<li>Expert Systems <span>(cct 426) </span></li>
<li>Computer systems Engineering <span>cct 412</span></li>
<li>Neural Networks <span>(cct 411)</span></li>
<li>Intelligent Agents <span>(cct 419)</span></li>
<li>Simulation and modeling <span>(cct 417)</span></li>
<li>Operating Systems <span>(cct 204)</span></li>
<li>Signals and Systems <span>(cct 214)</span></li>
<li>Electronics <span>(cct 213)</span></li>
<li>Embedded Systems <span>(cct 315)</span></li>
<li>Engineering Mathematics <span>(cct 208)</span></li>
<li>Digital Electronics <span>(cct 202)</span></li>
<li>Data Structures and Algorithms <span>(cct 204)</span></li>
<li>Software Engineerung <span>(cct 308)</span></li>
<li>Applied Probability and Statistics <span>(cct 216)</span></li>
<li>Analog Communication Systems <span>(cct 315)</span></li>
<li>Digital Communication Systems <span>(cct 316)</span></li>
<li>Fibre Optics: Theory and Applications <span>(cct 433)</span></li>
<li>Human Computer Interaction <span>(cct 304)</span></li>
<li>Mobile Computing <span>(cct 306)</span></li>
<li>Cisco Networking I-IV <span>(CCNA)</span></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="view x40-widget widget " id="layers-widget-skrollex-section-10">
<div data-src="wp-content/uploads/sites/110/2015/10/bg-pexels-art-brush-colors-3112.jpg"
data-alt="" class="bg-holder"></div>
<div data-src="wp-content/uploads/sites/110/2015/10/bg-picjumbo.com_IMG_4563.jpg"
data-alt="" class="bg-holder"></div>
<div data-src="wp-content/uploads/sites/110/2015/10/bg-picjumbo.com_HNCK1805.jpg"
data-alt="" class="bg-holder"></div>
<div class="fg colors-d half-size">
<div class="layout-boxed section-top">
<div class="slogan"><span class="textillate"
data-textillate-options="{loop:true, in:{effect:'fadeInRight', reverse:true}, out:{effect:'fadeOutLeft', sequence:true}}"><span
class="texts"><span>I'm a designer</span><span>High-end Programmer</span><span>Riggid computer animator</span><span>I'm a Developer</span><span>I am Creative</span></span></span>
</div>
<p class="text-center">— Never let a passion for the perfect take precedence over pragmatism —</p>
</div>
</div>
</div>
<div class="view x40-widget widget text-bg" id="layers-widget-skrollex-section-11"
data-text-effect-selector="h1,h2,h3" data-text-effect="effect-a-animated">
<div data-src="wp-content/uploads/sites/110/2015/10/bg-stocksnap-219FB68281.jpg"
data-alt="" class="bg-holder"></div>
<div data-src="wp-content/uploads/sites/110/2015/10/bg-stocksnap-219FB68281.jpg"
data-alt="" class="bg-holder"></div>
<div id="work" class="fg colors-c no-bottom-padding">
<div class="layout-boxed section-top"><h3 class="heading-section-title">My Work</h3>
<p class="header-details"><span>Some Recent</span> Projects</p>
<p class="lead">Showcasing some of the various projects and artworks I may have worked on both
personally and professionally. The
below is a portfolio of the some of the things i have done. Feel free to explore.</p>
</div>
<ul class="filter">
<li><a class="hover-effect" data-group="all" href="#">All</a></li>
<li><a class="hover-effect" data-group="3d" href="#">3D World</a></li>
<li><a class="hover-effect" data-group="code" href="#">Coding</a></li>
<li><a class="hover-effect" data-group="design" href="#">Design</a></li>
<li><a class="hover-effect" data-group="game" href="#">Games</a></li>
<li><a class="hover-effect" data-group="hardware" href="#">Hardware</a></li>
<li><a class="hover-effect" data-group="web" href="#">Web</a></li>
</ul>
<div class="section-cols layout-fullwidth gallery-grd">
<div class="masonry-grd">
<div class="pure-g">
<!--3d world-->
<div class="layers-widget-skrollex-section-55d26edfc7a79662627559 pure-u-12-24 pure-u-md-6-24 masonry-item gallery-item item"
data-groups="3d">
<a href="#" class="gallery-link">
<div class="hover-overlay">
<img src="images/3d_world/class.png" alt="Cool Classroom"/>
<div class="overlay background-e heading-e link-heading-e internal-highlight-e">
<div>
<h4 class="heading-subsection-title text-center">Cool
<span>Classroom</span></h4>
<p class="col-details text-center">3D render of a cool simple classroom.
Click to view more</p>
<p class="col-details text-center"><i class="fa fa-th"></i></p>
</div>
</div>
</div>
</a>
<div class="gallery-item-content">
<h4 class="heading-subsection-title text-center">
Cool
<span>Class</span>
</h4>
<div class="pure-g">
<div class="col-padding pure-u-1 pure-u-lg-18-24">
<div class="default-slider hold"
data-swiper-options="{loop: true, speed: 300}">
<div class="swiper-wrapper">
<div class="swiper-slide"
data-hold-img="images/3d_world/c1.png"
data-alt="" data-as-bg="no"></div>
<div class="swiper-slide"
data-hold-img="images/3d_world/c2.png"
data-alt="" data-as-bg="no"></div>
<div class="swiper-slide"
data-hold-img="images/3d_world/c3.png"
data-alt="" data-as-bg="no"></div>
</div>
<div class="swiper-pagination swiper-pagination-white"></div>
<div class="swiper-button-prev swiper-button-white"></div>
<div class="swiper-button-next swiper-button-white"></div>
</div>
</div>
<div class="col-padding pure-u-1 pure-u-lg-6-24"><h5 class="heading-col-title">
Project<br/>
Description</h5>
<p>This a hobbyist project featuring a model of a classroom that I did way
back in 2017. I got the inspiration for the scene from the animated
movie called 'The Classroom'.
It enabled me to enhance my skills in projecting 2D images
onto vector planes as shown with the board and the map.</p>
<h5 class="heading-col-title">Project Details</h5>
<ul>
<li><strong>CLIENT:</strong> Hobbyist</li>
<li><strong>DATE:</strong> 9th July, 2017</li>
<li><strong>WORK:</strong> 3D World, Design</li>
</ul>
</div>
</div>
</div>
</div>
<div class="layers-widget-skrollex-section-55d26edfc7a79662627559 pure-u-12-24 pure-u-md-6-24 masonry-item gallery-item item"
data-groups="3d">
<a href="#" class="gallery-link">
<div class="hover-overlay">
<img src="images/3d_world/gg_bridge.png" alt="Golden Gate Bridge"/>
<div class="overlay background-e heading-e link-heading-e internal-highlight-e">
<div>
<h4 class="heading-subsection-title text-center">Golden gate
<span>Bridge</span></h4>
<p class="col-details text-center">Red suspension bridge like the one
USA.
Click to view more</p>
<p class="col-details text-center"><i class="fa fa-th"></i></p>
</div>
</div>
</div>
</a>