forked from karthik558/karthiklal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1456 lines (1432 loc) · 74.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
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>
<!-- LINE 491 FOR PORTFOLIO!!!!! -->
<!-- Title -->
<title>Cojovi - Pinnacle of Technological Craftsmanship & Diverse Expertise</title>
<!-- Meta Tags -->
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<meta
name="description"
content="Avid Tech Savant, my odyssey commenced at 14, scripting in Q-Basic, igniting an indelible zeal for technology's vast dominion. Master of multifarious disciplines—ranging from Artificial Intellegence and Web Development alchemy and SEO acumen to 3D modeling wizardry and cybersecurity prowess. I am a virtuoso in robotics, an aficionado of electronics, and a luminary in smart home innovation. Each endeavor is a testament to my relentless pursuit of perfection and innovation. I invite you to delve into my portfolio, a kaleidoscope of ingenuity and passion."
/>
<meta
name="keywords"
content="Coding Specialist in Severl Languages | AI | Web Development | Part Time Ethical Hacker | Graphic Design | Smart Home Device & Automation Development | SEO Optimization | Cybersecurity | Network Security | DDOS Mitigation | Phishing Defense | 3D Modeling & Printing | Robotics | Penetration Testing | Cybersecurity Expert"
/>
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="English" />
<meta name="revisit-after" content=" days" />
<meta name="author" content="Cojovi" />
<meta name="copyright" content="CojoviDigital" />
<meta
property="og:title"
content="Cojovi - Pinnacle of Technological Craftsmanship & Diverse Expertise"
/>
<meta
property="og:description"
content="I am Cojovi, a Web Developer based in Texas. I am enthusiastic about web development, graphic design, SEO Marketing, Robotics, AI, 3D Printing and cybersecurity, and continuously strive to improve my skills in these areas.!"
/>
<meta
property="og:image"
content="https://i.imgur.com/zTcmdhl.png"
/>
<meta property="og:type" content="website" /> <meta property="og:title" content="Cojovi - Pinnacle of Technological Craftsmanship & Diverse Expertise" />
/>
<meta property="og:url" content="https://cojovi.com/" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Cojovi - Pinnacle of Technological Craftsmanship & Diverse Expertise"
/>
<meta
name="twitter:description"
content="Coding Specialist in Severl Languages | AI | Web Development | Part Time Ethical Hacker | Graphic Design | Smart Home Device & Automation Development | SEO Optimization | Cybersecurity | Network Security | DDOS Mitigation | Phishing Defense | 3D Modeling & Printing | Robotics | Penetration Testing | Cybersecurity Expert"
/>
<meta
name="twitter:image"
content="https://i.imgur.com/zTcmdhl.png"
/>
<meta name="twitter:site" content="@The_Cojovi" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"url": "https://cojovi.com",
"name": "Cojovi",
"logo": "https://i.imgur.com/QfMTOls.png",
"sameAs": [
"https://www.instagram.com/cojovi",
"https://www.facebook.com/cojovi",
"https://github.com/cojovi",
"https://www.techdonecheap.com"
],
"potentialAction": {
"@type": "SearchAction",
"target": "https://cojovi.com/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<!-- Mobile Meta -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Favicon -->
<link
rel="shortcut icon"
href="assets/img/favicon/favicon.ico"
type="image/x-icon"
/>
<link rel="icon" href="assets/img/favicon/favicon.ico" type="image/x-icon" />
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link rel="stylesheet" href="assets/plugins/normalize/normalize.min.css" />
<link
rel="stylesheet"
href="assets/plugins/fontawesome/css/fontawesome-all.min.css"
/>
<link
rel="stylesheet"
href="assets/plugins/swiper/css/swiper-bundle.min.css"
/>
<link
rel="stylesheet"
href="assets/plugins/lightgallery/css/lightgallery.min.css"
/>
<link rel="stylesheet" href="assets/css/style.css" />
<link id="tt-themecss" rel="stylesheet" href="assets/css/dark-style.css" />
</head>
<body
id="body"
class="tt-transition tt-boxed tt-smooth-scroll tt-magic-cursor"
>
<main id="body-inner">
<div id="page-transition">
<div class="ptr-overlay"></div>
<div class="ptr-preloader">
<div class="ptr-prel-content">
<img
src="assets/img/logo-light.png"
class="ptr-prel-image tt-logo-light"
alt="Logo"
/>
</div>
</div>
</div>
<!-- Magic cursor -->
<div id="magic-cursor">
<div id="ball"></div>
</div>
<div id="scroll-container">
<header id="tt-header" class="tt-header-fixed">
<div class="tt-header-inner">
<div class="tt-header-col">
<div class="tt-logo">
<a href="index.html">
<img
src="assets/img/logo-light.png"
class="tt-logo-light magnetic-item"
alt="Logo"
/>
<img
src="assets/img/logo-dark.png"
class="tt-logo-dark magnetic-item"
alt="Logo"
/>
</a>
</div>
</div>
<div class="tt-header-col">
<div id="tt-ol-menu-toggle-btn-wrap">
<div class="tt-ol-menu-toggle-btn-text-wrap hide-cursor">
<div class="tt-ol-menu-toggle-btn-text">
<span class="text-menu" data-hover="Open">Menu</span>
<span class="text-close">Close</span>
</div>
</div>
<div class="tt-ol-menu-toggle-btn-holder">
<a href="#" class="tt-ol-menu-toggle-btn magnetic-item"
><span></span
></a>
</div>
</div>
<nav class="tt-overlay-menu tt-ol-menu-count">
<div class="tt-ol-menu-holder">
<div class="tt-ol-menu-inner tt-wrap">
<div class="tt-ol-menu-content">
<ul class="tt-ol-menu-list">
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#service">Service</a></li>
<li><a href="#testimonial">Testimonial</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<ul class="tt-ol-menu-social">
<li>
<h6 class="tt-ol-menu-social-heading">
Social Links:
</h6>
</li>
<li>
<a
href="https://www.facebook.com/cojovi"
target="_blank"
rel="noopener"
>Facebook</a
>
</li>
<li>
<a
href="https://behance.net/"
target="_blank"
rel="noopener"
>Behance</a
>
</li>
<li>
<a
href="https://www.linkedin.com/in/"
target="_blank"
rel="noopener"
>Linkedin</a
>
</li>
<li>
<a
href="https://github.com/cojovi"
target="_blank"
rel="noopener"
>Github</a
>
</li>
<li>
<a
href="https://www.instagram.com/cojovi"
target="_blank"
rel="noopener"
>Instagram</a
>
</li>
</ul>
</div>
</div>
</div>
</nav>
</div>
</div>
</header>
<div id="content-wrap">
<div
id="page-header"
class="ph-full ph-cap-lg ph-ghost-scroll ph-image-cropped ph-content-parallax"
>
<div class="page-header-inner tt-wrap">
<div class="ph-image">
<div class="ph-image-inner">
<img src="assets/img/intro/img.png" alt="Image" />
</div>
</div>
<div class="ph-caption max-width-1000">
<div class="ph-caption-subtitle">
<div class="ph-appear">Welcome! My name is</div>
</div>
<h1 class="ph-caption-title">
<div class="ph-appear">
Cojovi<br />
</div>
</h1>
<div class="ph-caption-subtitle">
<div class="ph-appear">
Web Developer & Creator & Programmer
</div>
</div>
<div class="ph-appear">
<a
href="https://drive.google.com/file/d/1BvYrg5XJ-67TD7FMDYfINRSPhhvwz1lX/view?usp=sharing512"
class="tt-btn tt-btn-dark" data-cursor="Hire Me"
>
<span class="tt-btn-icon"
><i class="fas fa-download"></i
></span>
<div data-hover="Download CV">Download CV</div>
</a>
</div>
<div class="ph-caption-title-ghost">
<div class="ph-appear">Cojovi</div>
</div>
</div>
</div>
<div class="tt-scroll-down">
<a
href="#page-content"
class="tt-sd-inner ph-appear"
data-offset="0"
>
<div class="tt-sd-arrow">
<div class="tt-sd-arrow-inner"></div>
</div>
<div class="tt-sd-text">Scroll</div>
</a>
</div>
</div>
<div id="page-content">
<div class="tt-section">
<div class="tt-section-inner tt-wrap">
<div class="tt-row">
<div class="tt-col-lg-9">
<div class="text-xlg anim-fadeinup">
<div class="tt-heading tt-heading-lg margin-bottom-60">
<h3 class="tt-heading-subtitle" id="about">About</h3>
<h2 class="tt-heading-title" data-cursor="Hello">
Hey There!
</h2>
</div>
<p>
I'm a Avid Tech Savant with a creative passion for
<a
href="https://github.com/cojovi"
target="_blank"
rel="noopener"
>technology, design, ai, and robotics.</a
>
I am Cojovi, i am a devoted Web Developer based in Texas.
I am enthusiastic about web development, graphic design, SEO
Marketing, Robotics, AI, 3D Printing and cybersecurity, and
continuously strive to improve my skills in these areas!
</p>
<p>
Each project in my portfolio is unique and reflects my
dedication to creating one-of-a-kind solutions. In my
free time, I love creating my own home automation devices
</p>
</div>
<div class="tt-signature anim-fadeinup margin-top-40">
<img
src="assets/img/signature/signature-light.png"
class="tt-signature-light"
alt="Signature"
/>
<img
src="assets/img/signature/signature-dark.png"
class="tt-signature-dark"
alt="Signature"
/>
</div>
</div>
</div>
<div class="tt-section">
<div class="tt-section-inner">
<div id="portfolio-grid" class="pgi-hover">
<div class="tt-grid ttgr-layout-creative-2 ttgr-gap-4">
<div class="tt-grid-items-wrap isotope-items-wrap">
<div class="tt-grid-item isotope-item people">
<div class="ttgr-item-inner">
<div class="portfolio-grid-item" id="portfolio">
<a
href="https://techdonecheap.com"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/techdonecheap.png"
alt="image"
/>
</figure>
</div>
</div>
</a>
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a href="#">TechDoneCheap Website</a>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">
Website Development
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tt-grid-item isotope-item creative">
<div class="ttgr-item-inner">
<div class="portfolio-grid-item">
<a
href="https://oneshotpredatormgmt.com"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/OneShot.png"
alt="image"
/>
</figure>
</div>
</div>
</a>
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a href="#">One Shot Predator MGMT Website</a>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">
Website Development
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tt-grid-item isotope-item people">
<div class="ttgr-item-inner">
<div class="portfolio-grid-item">
<a
href="https://github.com/cojovi/MollysVendingMachine"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/pifeeder.png"
alt="image"
/>
</figure>
</div>
</div>
</a>
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a href="#">Automated Pet Feeder</a>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">
Raspberry pi | Github | Building Fun
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tt-grid-item isotope-item nature">
<div class="ttgr-item-inner">
<div class="portfolio-grid-item">
<a
href="#"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/New_cojovi.png"
alt="image"
/>
</figure>
</div>
</div>
</a>
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a href="#"
>Backup Cojovi Website</a
>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">
Website Development | Portfolio
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text-center anim-fadeinup">
<a
href="index.html"
class="tt-scrolling-btn all-works-btn"
data-cursor="All<br>Works"
>
<div class="scr-btn-inner ph-appear">
<div class="scr-btn-icon">
<i class="fas fa-arrow-right"></i>
</div>
<div class="scr-btn-spinner">
<svg viewBox="0 0 500 500">
<defs>
<path
d="M50,250c0-110.5,89.5-200,200-200s200,89.5,200,200s-89.5,200-200,200S50,360.5,50,250"
id="textcircle"
></path>
</defs>
<text dy="30" class="scr-btn-text">
<textPath xlink:href="#textcircle">
See All Works - See All Works -
</textPath>
</text>
</svg>
</div>
</div>
</a>
</div>
</div>
</div>
<div
class="tt-section padding-top-xlg-150 padding-bottom-xlg-150"
>
<div class="tt-section-inner tt-wrap">
<div class="tt-row padding-bottom-2-p">
<div class="tt-col-lg-7">
<div
class="tt-heading tt-heading-xlg anim-fadeinup"
id="service"
>
<h3 class="tt-heading-subtitle">Services</h3>
<h2 class="tt-heading-title">My Expertise</h2>
</div>
</div>
</div>
<div class="tt-accordion tt-ac-borders">
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Graphic Design: Pioneering Unconventional Elegance | Branding Virtuoso
Architect
</h3>
</div>
<div class="tt-accordion-caret-wrap">
<div class="tt-accordion-caret-inner magnetic-item">
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
As a vanguard of graphic design, I specialize in weaving the extraordinary into the fabric of brand identities, setting them apart in the crowded marketplace. My approach is anything but ordinary; it's a blend of daring creativity and meticulous craftsmanship. I'm not just a graphic artist—I'm a branding architect who transforms the unconventional into compelling visual narratives. With each project, I aim to invoke the "wow" factor, crafting not just designs, but memorable experiences that captivate and engage. From avant-garde concepts to immersive visual journeys, my work is designed to leave a lasting impression, ensuring your brand doesn't just speak to your audience, but truly resonates with them.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Smart Home Technology: Master of Automation and Security | Threat
Innovation Architect
</h3>
</div>
<div class="tt-accordion-caret-wrap">
<div class="tt-accordion-caret-inner magnetic-item">
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
As an esteemed expert in Smart Home Technology, I specialize in transforming ordinary living spaces into intelligent, connected ecosystems. My expertise spans the latest in smart devices and automation solutions, designed to enhance convenience, efficiency, and security. With a keen eye for innovation and a deep understanding of the intricate web of smart technology, I offer bespoke solutions that integrate seamlessly into your lifestyle. From optimizing your home's energy usage to implementing cutting-edge security systems that protect against digital threats, I ensure your home is not just smart, but also a safe haven. Leveraging my extensive knowledge in smart home automation, I empower homeowners to take control of their environment with the touch of a button, creating spaces that are not only connected but truly intuitive. Join me in embracing the future of home living, where every device works in harmony to cater to your needs, making life simpler, safer, and unequivocally smarter.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
SEO Strategy: Catalyst for Digital Growth |
Lead Generation Maestro
</h3>
</div>
<div class="tt-accordion-caret-wrap">
<div class="tt-accordion-caret-inner magnetic-item">
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
As a connoisseur of SEO optimization, I blend the art of strategic content placement with the science of search engine algorithms to catapult your business into the spotlight of online visibility. I'm not just a web developer; I'm a digital growth strategist and frontend wizard who understands that at the heart of every successful online business is a robust SEO foundation. By meticulously crafting websites that not only dazzle with stunning aesthetics but are also optimized for maximum user engagement, I ensure your digital presence is not just seen, but felt. My expertise in SEO is your gateway to an explosion in online leads, transforming your website from a mere digital footprint to a lead generation powerhouse. Let's embark on this journey together and watch your business not just grow, but thrive in the bustling marketplace of the internet.
</p>
</div>
</div>
</div>
</div>
</div>
<div
class="tt-section padding-top-xlg-100 padding-bottom-xlg-150"
>
<div class="tt-section-inner tt-wrap max-width-1700">
<div class="tt-row padding-bottom-2-p">
<div class="tt-col-xl-4">
<div class="tt-heading tt-heading-xlg anim-fadeinup">
<h3 class="tt-heading-subtitle">Experiences</h3>
<h2 class="tt-heading-title">
and Highlights
</h2>
</div>
<div
class="max-width-600 margin-bottom-60 anim-fadeinup"
>
<h5>
With diverse work experience in the technology
industry, I have honed my skills in ai, programming, SEO,
web development, graphic design, and learning algorithoms.
</h5>
</div>
</div>
<div class="tt-col-xl-1"></div>
<div class="tt-col-xl-7">
<div class="tt-accordion tt-ac-borders">
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title" data-cursor="Present">
IT Support and Tech Assistance
</h3>
<div class="tt-accordion-subtext">
CMAC Roofing
</div>
<div class="tt-accordion-subtextDate">
April 2018 - Present
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
● Analyze, troubleshoot, and configure network
systems to ensure optimal performance and
connectivity.<br />
● Identify and resolve server-related issues,
ensuring smooth operation and availability of
services.<br />
● Configure and maintain firewalls, implementing
security measures to protect the network from
unauthorized access and threats.<br />
● Conduct network security penetration testing
to identify vulnerabilities and propose
remediation strategies.<br />
● Attend guest calls and admin calls, providing
technical support and addressing any issues or
inquiries promptly and professionally.<br />
● Install and configure access points (AP) to
enable wireless connectivity in different areas
of the network.<br />
● Perform crimping of network cables to ensure
proper connections and efficient data
transmission.<br />
● Design, develop, and maintain websites,
creating visually appealing and functional
interfaces that meet business requirements.<br />
● Design posters and banners for marketing and
promotional purposes, ensuring visually
compelling graphics that align with brand
guidelines.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Graphic Designer
</h3>
<div class="tt-accordion-subtext">
Tech Done Cheap
</div>
<div class="tt-accordion-subtextDate">
January 2020 - Present
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
● Design visually appealing posters, flyers, and
AD posters for various marketing and promotional
purposes. <br />
● Create manipulation and mockup designs,
showcasing products or concepts in a visually
compelling manner.<br />
● Design posters specifically for tech industry
branding, incorporating elements that align with
the brand's style and target audience.<br />
● Perform web application penetration testing
using tools like Burpsuite, Hydra, and Acunetix
to identify vulnerabilities and recommend
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Owner
</h3>
<div class="tt-accordion-subtext">
Cojovi.com
</div>
<div class="tt-accordion-subtextDate">
December 2015 - Present
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
● Perform network analysis, troubleshooting, and
configuration to ensure efficient network
operations for clients. <br />
● Install various operating systems (Server
2012-2016, Windows 10,7) on customers devices.<br />
● Provide WiFi assistance and engineering to
ensure reliable wireless connectivity for new clients.<br />
● Install and configure ai integrations for streamlined
workflows, sales funnels, and auto responding chat bots
for websites and customer response portals.<br />
● Offer network support and promptly resolve
technical issues.<br />
● Handle guest and admin calls, addressing
inquiries and providing necessary assistance.<br />
● Troubleshoot and efficiently resolve problems
with PC's and server PC's.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Hardware and Network Support Intern
</h3>
<div class="tt-accordion-subtext">
MaxTech Solutions
</div>
<div class="tt-accordion-subtextDate">
February 2019 - August 2019
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
● Provide comprehensive technical support for
hardware and software, diagnosing and resolving
issues promptly and effectively. <br />
● Install software applications such as media
players, Adobe apps, Tally, etc., ensuring
proper configuration and compatibility.<br />
● Perform OS installations for Linux and
Windows, ensuring smooth and error-free
setup.<br />
● Configure and install wireless printers,
enabling seamless printing operations across
devices.<br />
● Execute crimping techniques for network
cables, ensuring proper connections and
efficient data transmission.<br />
● Demonstrate expertise in chip-level repairs
and troubleshooting of laptop boards, ensuring
optimal performance and functionality.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="tt-section padding-top-xlg-100 padding-bottom-xlg-150"
>
<div class="tt-section-inner tt-wrap max-width-1700">
<div class="tt-row padding-bottom-2-p">
<div class="tt-col-xl-4">
<div class="tt-heading tt-heading-xlg anim-fadeinup">
<h3 class="tt-heading-subtitle">Education</h3>
<h2 class="tt-heading-title">Experiences & Knowledge</h2>
</div>
<div
class="max-width-600 margin-bottom-60 anim-fadeinup"
>
<h5>
"Self-Directed Education" represents a diverse and comprehensive learning journey, acquired through hands-on experience, extensive reading, and the boundless resources of the 'University of YouTube'. This approach highlights a relentless passion for technology and electronics, showcasing a self-made expertise that thrives beyond the traditional academic sphere. It underscores a proactive and autonomous mastery of skills, affirming that when curiosity sparks, barriers fall, enabling continuous professional and personal evolution.
</h5>
</div>
</div>
<div class="tt-col-xl-1"></div>
<div class="tt-col-xl-7">
<div class="tt-accordion tt-ac-borders">
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title" data-cursor="Pursuing">
Cisco Networking Academy
</h3>
<div class="tt-accordion-subtext">
Cisco Systems
</div>
<div class="tt-accordion-subtextDate">
September 2006 - 2009
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
At Cisco Networking Academy, an education arm of Cisco Systems, I completed a rigorous CCNP (Cisco Certified Network Professional) training. This structured and comprehensive program has equipped me with in-depth understanding and hands-on proficiency in enterprise networking solutions. Through a blend of theoretical knowledge and extensive practical exercises, I have mastered the complexities of network design, implementation, security, and troubleshooting. The Cisco Networking Academy has not only provided me with a globally recognized certification but has also instilled a framework for continuous learning in the ever-evolving field of networking technologies. With this accreditation, I stand prepared to contribute to and drive the future of networked systems.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Self-Directed Tech Education
</h3>
<div class="tt-accordion-subtext">
Ongoing since
</div>
<div class="tt-accordion-subtextDate">
March 2010
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
Embracing the University of YouTube and the vast expanse of the internet as my campus, I have forged my own path in the world of technology and electronics. With a fervent passion driving my education, I actively engage in learning by doing, delving into programming, software development, database and network administration through practical, hands-on experience. My self-taught journey is a testament to my dedication and ability to adapt, and I am committed to excelling in the technology sector through continuous, self-directed learning and application of knowledge.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
OwlSec - Certified Ethical Hacking (Certified
Ethical Hacker)
</h3>
<div class="tt-accordion-subtext">
OwlSec / HackTheBox
</div>
<div class="tt-accordion-subtextDate">
April 2021 - Febuary 2023 - Still Active Daily With The Institution
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
Attracted by passion and determination, I have
immersed myself in cybersecurity studies.
Through gaining foundational knowledge on
various aspects such as legal frameworks, I
gained a deeper appreciation for its
significance. Now my aim is to use my skillsets
in protecting digital environments from emerging
threats while creating an exciting cybersecurity
career path for myself.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
MYTT - Masters in YouTube Technology (lol)
</h3>
<div class="tt-accordion-subtext">
YouTube.com and Determination
</div>
<div class="tt-accordion-subtextDate">
2015 - Current
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
My educational landscape is uniquely self-constructed through the boundless resources of the University of YouTube. This platform has been my classroom, my laboratory, and my workshop, providing an open-ended curriculum tailored by curiosity and guided by the expertise of global thought leaders and innovators. Every concept mastered and skill acquired has been a product of self-discipline and an intrinsic motivation to excel in the fields of technology and electronics. This unorthodox and dynamic method of learning bypasses traditional routes, embodying the essence of 'learning by doing.' It is a testament to my adaptability and dedication to personal growth, showcasing my ability to self-educate and emerge as a competent and resourceful individual in the tech industry.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
-
</h3>
<div class="tt-accordion-subtext">
-
</div>
<div class="tt-accordion-subtextDate">
-
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
Armed with my CCNP Certification from Cisco Networking, I embarked on a captivating networking odyssey. This esteemed certification has significantly deepened my expertise in network solutions; equipping me with the advanced skills required to design, implement, and troubleshoot complex enterprise networks. With a strategic mindset and a strong command of network infrastructure, I am poised to confidently navigate the intricate realm of networking, fostering advancements in connectivity and shaping the future of technological communication.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Aerostorm (Computer Application)
</h3>
<div class="tt-accordion-subtext">
All their tech needs
</div>
<div class="tt-accordion-subtextDate">
June 2018 - March 2020
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"