-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2507 lines (2489 loc) · 109 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>
<!-- Script to check and redirect to the "hubariev.com" -->
<script>
if (window.location.hostname != "hubariev.com") {
window.open("https://hubariev.com", "_self");
}
</script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Nikita Hubariev" />
<meta name="keywords" content="CV, resume, Nikita Hubariev" />
<meta
name="description"
content="Nikita Hubariev, Python Web Developer - CV"
/>
<meta property="og:type" content="CV site" />
<meta property="og:title" content="Nikita Hubariev - CV" />
<meta property="og:image" content="./md_images/header.png" />
<meta property="og:site_name" content="Nikita Hubariev - CV" />
<meta property="og:url" content="https://hubariev.com" />
<meta
property="og:description"
content="Nikita Hubariev, Python Web Developer - CV."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image:alt" content="CV site header image" />
<title key="title" class="lang">Nikita Hubariev - CV site</title>
<!-- Site icon -->
<link rel="icon" type="image/x-icon" href="./static/images/cv.ico" />
<!-- Bootstrap5 min CSS file -->
<link
rel="stylesheet"
crossorigin="anonymous"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
/>
<!-- AOS (Animate On Scroll Library) CSS file -->
<link
type="text/css"
rel="stylesheet"
href="./static/css/aos.min.css"
/>
<!-- Google font "Open Sans" -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500;700&display=swap"
/>
<!-- My CSS files with styles -->
<link
type="text/css"
rel="stylesheet"
href="./static/css/style.min.css"
/>
<!-- CSS file for printing styles -->
<link
media="print"
type="text/css"
rel="stylesheet"
href="./static/css/print.min.css"
/>
</head>
<body>
<!-- Container for PDF resume for printing -->
<div id="resume-container">
<img
width="100%"
height="100%"
alt="My PDF resume"
src="./static/images/resume.webp"
/>
</div>
<!-- Full screen loader -->
<div
id="screen-loader"
style="z-index: 100; top: 0; left: 0"
class="d-flex content-center h-100 w-100 position-fixed bg1"
>
<div
role="status"
class="spinner-border text-color"
style="width: 3rem; height: 3rem"
></div>
</div>
<!-- Script to display "Welcome" and hide the screen loader -->
<script src="./static/js/screen_load.min.js"></script>
<!-- All visible content -->
<div class="hide-on-print">
<!-- Sticky control menu -->
<div id="control-menu" class="position-fixed w-100">
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<div id="theme_toggler">
<input
type="checkbox"
id="theme_toggler_btn"
class="checkbox opacity-0"
/>
<label class="label" for="theme_toggler_btn">
<ion-icon name="sunny"></ion-icon>
<ion-icon name="moon"></ion-icon>
<div class="ball"></div>
</label>
</div>
<!-- Language switchers -->
<div class="language-switchers">
<a
href="#"
id="ua_switcher"
class="switch-language-btn"
>
<img
alt="Language image"
src="./static/images/languages/ukrainian.webp"
class="circle_icon language_switcher ua_switcher"
/>
</a>
<a
href="#"
id="en_switcher"
class="switch-language-btn"
>
<img
alt="Language image"
src="./static/images/languages/english.webp"
class="circle_icon language_switcher en_switcher"
/>
</a>
</div>
</div>
</nav>
</div>
<br /><br />
<!-- The site header -->
<header
class="pt-4 pb-5 border-bottom border-3"
style="z-index: 92"
>
<div class="container" style="z-index: 92">
<div class="row content-center mb-3" style="z-index: 92">
<!-- The block for my photo -->
<div class="col-md-6 col-sm-12 mb-4">
<div class="d-flex justify-content-center">
<img
alt="My photo"
data-aos="zoom-in"
data-aos-delay="2000"
data-aos-duration="800"
src="./static/images/my-photo.webp"
class="my_photo img-fluid w-50 rounded-4"
onerror="this.onerror=null; this.src='./static/images/default-photo.webp';"
/>
</div>
</div>
<!-- The block for short info about me -->
<div class="col-md-6 col-sm-12 text-center text-white">
<div
class="d-flex flex-column justify-content-between"
>
<div>
<!-- My name and surname -->
<h2
class="lang"
key="full_name"
data-aos="fade-down"
data-aos-delay="2000"
data-aos-duration="800"
>
Nikita Hubariev
</h2>
<!-- My position -->
<h3 key="position" class="lang my-position">
Python Web Developer
</h3>
</div>
<div class="mt-5 d-flex justify-content-center">
<!-- Button to the embedded PDF resume -->
<a
href=""
title="PDF"
data-aos="fade-right"
data-aos-delay="2000"
data-aos-duration="800"
data-bs-toggle="modal"
data-bs-target="#fileModal"
class="fileModal-link btn btn-lg btn-secondary me-3 opacity-1 text-white content-center"
modal-title-en="Embedded PDF resume"
modal-title-ua="Вбудоване резюме PDF"
modal-file-link="https://drive.google.com/file/d/1KC1H2Lz0LwND8n6KBD2v40dTbw5m44Ol/preview"
>
<ion-icon
name="document-text"
></ion-icon>
</a>
<!-- Button to print PDF resume -->
<button
title="Print"
data-aos="fade-up"
data-aos-delay="2000"
data-aos-duration="800"
onClick="window.print()"
class="fileModal-link btn btn-lg btn-secondary me-3 opacity-1 text-white content-center"
>
<ion-icon
name="print-outline"
></ion-icon>
</button>
<!-- Button to download PDF resume -->
<a
target="_blank"
title="Download"
data-aos="fade-left"
data-aos-delay="2000"
data-aos-duration="800"
class="fileModal-link btn btn-lg btn-secondary me-3 opacity-1 text-white content-center"
href="https://drive.usercontent.google.com/uc?id=1KC1H2Lz0LwND8n6KBD2v40dTbw5m44Ol&export=download"
>
<ion-icon
name="download-outline"
></ion-icon>
</a>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Sticky navigation menu -->
<div id="navigation-menu" class="position-relative">
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<!-- To move the burger button to the right -->
<a href="#" class="navbar-brand"></a>
<!-- My name (navbar brand) is hidden at the start -->
<a
href="#"
id="navbar-brand"
class="navbar-brand text-white d-none align-items-center"
>
<img
alt="My photo"
src="./static/images/my-photo.webp"
class="my_photo img-fluid"
onerror="this.onerror=null; this.src='./static/images/default-photo.webp';"
/>
<b class="lang" key="full_name">
Nikita Hubariev
</b>
</a>
<!-- Burger button -->
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
id="navbarSupportedContent"
class="collapse navbar-collapse"
>
<!-- The list of links to navigate within the site -->
<ul
id="navbar-nav"
class="navbar-nav simple-list-example-scrollspy list-group-horizontal-md top-menu me-auto ms-auto justify-content-center text-center"
>
<li class="nav-item me-lg-2 me-sm-4">
<a
key="sections.contacts"
class="nav-link lang"
href="#contacts"
>
Contacts
</a>
</li>
<li class="nav-item me-lg-2 me-sm-4">
<a
key="sections.about_me"
href="#about-me"
class="nav-link lang"
>
About me
</a>
</li>
<li class="nav-item me-lg-2 me-sm-4">
<a
key="sections.skills"
href="#skills"
class="nav-link lang"
>
Skills
</a>
</li>
<li class="nav-item me-lg-2 me-sm-4">
<a
key="sections.experience"
href="#experience"
class="nav-link lang"
>
Experience
</a>
</li>
<li class="nav-item me-lg-2 me-sm-4">
<a
key="sections.projects"
href="#projects"
class="nav-link lang"
>
Projects
</a>
</li>
<li class="nav-item me-lg-2 me-sm-4">
<a
key="sections.education"
href="#education"
class="nav-link lang"
>
Education
</a>
</li>
<li class="nav-item me-lg-2 me-sm-4">
<a
key="sections.write_me"
href="#write-me"
class="nav-link lang"
>
Write Me
</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<!-- Content with scrolling detection for the navigation menu -->
<div tabindex="0" data-bs-spy="scroll" data-bs-target="#navbar-nav">
<!-- The block with my contacts -->
<section class="bg2" id="contacts">
<div class="container">
<!-- The title of the "Contacts" block -->
<div class="row">
<div class="col-12">
<h2
key="sections.contacts"
data-aos="fade-up"
class="text-center text-uppercase mb-5 lang"
>
Contacts
</h2>
</div>
</div>
<!-- The content of the "Contacts" block -->
<div class="row">
<!-- My location -->
<div
data-aos="fade-right"
class="col-xl-4 col-md-6 col-sm-12 text-center"
>
<div class="circle_icon content-center">
<ion-icon
name="location-outline"
></ion-icon>
</div>
<h5 key="contacts.city" class="lang">
Bucharest, Romania
</h5>
<div class="line"></div>
</div>
<!-- My work email address -->
<div
data-aos="zoom-in"
class="col-xl-4 col-md-6 col-sm-12 text-center"
>
<div class="circle_icon content-center">
<ion-icon name="mail-outline"></ion-icon>
</div>
<h5>
<a href="mailto:nikita.hubariev@gmail.com"
>nikita.hubariev@gmail.com</a
>
</h5>
<div class="line"></div>
</div>
<!-- The button for phoneModal -->
<div
class="col-xl-4 col-md-6 col-sm-12 text-center"
>
<div data-aos="fade-left">
<div class="circle_icon content-center">
<ion-icon
name="call-outline"
></ion-icon>
</div>
<h5>
<a
href=""
class="lang"
key="contacts.phone_number"
data-bs-toggle="modal"
data-bs-target="#phoneModal"
>
Phone number
</a>
</h5>
<div class="line"></div>
</div>
<!-- phoneModal -->
<div
tabindex="-1"
id="phoneModal"
aria-hidden="true"
class="modal fade"
aria-labelledby="phoneModalLabel"
>
<div
class="modal-dialog modal-dialog-centered"
>
<div class="modal-content">
<div class="modal-header bg2">
<h1
key="contacts.your_choice"
id="phoneModalLabel"
class="modal-title fs-3 lang"
>
Your choice
</h1>
<button
type="button"
class="btn-close"
aria-label="Close"
data-bs-dismiss="modal"
></button>
</div>
<div
class="modal-body bg2 d-flex flex-column align-items-center"
>
<div
class="mb-3 fs-4 content-center justify-content-between"
>
<ion-icon
name="phone-portrait-outline"
></ion-icon>
<a
key="contacts.phone"
href="tel:+380"
target="_blank"
class="phone-link lang"
>
Phone
</a>
</div>
<div
class="mb-3 fs-4 content-center justify-content-between"
>
<ion-icon
name="logo-whatsapp"
></ion-icon>
<a
target="_blank"
class="phone-link"
href="viber://chat?number=380"
>
Viber
</a>
</div>
<div
class="mb-3 fs-4 content-center justify-content-between"
>
<ion-icon
name="navigate-circle"
></ion-icon>
<a
target="_blank"
href="https://t.me/Gubchik123/chat"
>
Telegram
</a>
</div>
</div>
<div class="modal-footer bg2">
<button
key="contacts.close"
type="button"
data-bs-dismiss="modal"
class="btn btn-danger btn-lg lang"
>
Close
</button>
</div>
</div>
</div>
</div>
</div>
<!-- The link to my profile on "LinkedIn" -->
<div
data-aos="fade-right"
class="col-xl-4 col-md-6 col-sm-12 text-center"
>
<div class="circle_icon content-center">
<ion-icon name="logo-linkedin"></ion-icon>
</div>
<h5>
<a
target="_blank"
href="https://www.linkedin.com/in/nikita-hubariev/"
>
LinkedIn
</a>
</h5>
<div class="line"></div>
</div>
<!-- The button for codeHostsModal -->
<div
class="col-xl-4 col-md-6 col-sm-12 text-center"
>
<div data-aos="zoom-in">
<div class="circle_icon content-center">
<ion-icon
name="git-branch-outline"
></ion-icon>
</div>
<h5>
<a
href=""
class="lang"
key="skills.version_control_systems"
data-bs-toggle="modal"
data-bs-target="#codeHostsModal"
>
Version control systems
</a>
</h5>
<div class="line"></div>
</div>
<!-- codeHostsModal -->
<div
tabindex="-1"
id="codeHostsModal"
aria-hidden="true"
class="modal fade"
aria-labelledby="codeHostsModalLabel"
>
<div
class="modal-dialog modal-dialog-centered"
>
<div class="modal-content">
<div class="modal-header bg2">
<h1
key="contacts.your_choice"
id="codeHostsModalLabel"
class="modal-title fs-3 lang"
>
Your choice
</h1>
<button
type="button"
class="btn-close"
aria-label="Close"
data-bs-dismiss="modal"
></button>
</div>
<div
class="modal-body bg2 d-flex flex-column align-items-center"
>
<div
class="mb-3 fs-4 content-center justify-content-between"
>
<ion-icon
name="logo-github"
></ion-icon>
<a
target="_blank"
href="https://github.com/Gubchik123"
>
GitHub
</a>
</div>
<div
class="mb-3 fs-4 content-center justify-content-between"
>
<ion-icon
name="logo-gitlab"
></ion-icon>
<a
target="_blank"
href="https://gitlab.com/Gubchik123"
>
GitLab
</a>
</div>
</div>
<div class="modal-footer bg2">
<button
key="contacts.close"
type="button"
data-bs-dismiss="modal"
class="btn btn-danger btn-lg lang"
>
Close
</button>
</div>
</div>
</div>
</div>
</div>
<!-- The link to my profile on "Twitter" -->
<div
data-aos="fade-left"
class="col-xl-4 col-md-6 col-sm-12 text-center"
>
<div class="circle_icon content-center">
<ion-icon name="logo-instagram"></ion-icon>
</div>
<h5>
<a
target="_blank"
href="https://www.instagram.com/notwhale.1691/"
>
Instagram
</a>
</h5>
<div class="line"></div>
</div>
</div>
<!-- The title of the "Languages" block -->
<div class="row">
<div class="col-12">
<h2
key="contacts.languages.__title__"
data-aos="fade-up"
class="text-center text-uppercase color2 my-5 lang"
>
Languages
</h2>
</div>
</div>
<!-- The content of the "Contacts" block -->
<div class="row align-items-center">
<!-- Ukrainian language -->
<div
data-aos="fade-right"
class="col-lg-4 col-md-6 col-sm-12 text-center"
>
<div class="content-center">
<img
alt="Ukrainian circle flag"
class="circle_icon mb-0 border-0"
src="./static/images/languages/ukrainian.webp"
/>
</div>
<h5
key="contacts.languages.ua"
class="mt-3 lang"
>
Ukrainian - Native
</h5>
<div class="line"></div>
</div>
<!-- English language -->
<div
data-aos="fade-up-lg_fade-left-md"
class="col-lg-4 col-md-6 col-sm-12 text-center"
>
<a
data-bs-toggle="modal"
data-bs-target="#fileModal"
class="fileModal-link cursor-pointer"
modal-title-en="B.E.S.T Savvy English test - B1"
modal-title-ua="B.E.S.T Savvy тест англійської мови - B1"
modal-file-link="https://drive.google.com/file/d/1cPr3xVO29nS_JfccMb0AsMUXRBG4omLU/preview"
>
<div class="content-center">
<img
alt="UK circle flag"
class="circle_icon mb-0 border-0"
src="./static/images/languages/english.webp"
/>
</div>
<h5
class="mt-3 lang"
key="contacts.languages.en"
>
English - Intermediate (B1)
</h5>
</a>
<div class="line"></div>
</div>
<!-- Russian language -->
<div
data-aos="fade-left"
class="col-lg-4 col-md-12 text-center"
>
<div class="content-center">
<img class="circle_icon mb-0 border-0" />
</div>
<h5
class="mt-3 lang"
key="contacts.languages.ru"
>
Russian - Fluent
</h5>
<div class="line"></div>
</div>
</div>
</div>
</section>
<!-- The block about me -->
<section class="bg1" id="about-me">
<div class="container">
<!-- The title of the "About me" block -->
<div class="row">
<div class="col-12">
<h2
key="sections.about_me"
data-aos="fade-up"
class="text-center text-uppercase mb-5 lang"
>
About me
</h2>
</div>
</div>
<!-- The content of the "About me" block -->
<div class="row">
<!-- About me as a programmer -->
<p
class="lang"
key="about_me.p_1"
data-aos="fade-right"
>
Hey, I am Nikita. In fact, I am from Kharkiv,
Ukraine :) With commercial experience since 17,
I specialize in backend development. I like
refactoring existing code to make it more
efficient and readable. I also have an interest
in DevOps and can help optimize development and
deployment processes.
</p>
<!-- About my interests -->
<p
class="lang"
key="about_me.p_2"
data-aos="fade-left"
>
Outside of programming, I have a variety of
interests. I'm an avid sports enthusiast with a
special love for soccer. I also enjoy exploring
the world of cars, going for bike rides, and
listening to music. In my free time, I like to
unwind by watching movies.
</p>
<!-- Call to action -->
<p
class="lang"
key="about_me.p_3"
data-aos="fade-right"
>
I'm open to new opportunities and
collaborations, so please feel free to connect
with me. Let's create something great together!
</p>
<!-- "Write Me" button -->
<div class="mt-5 text-center">
<a
key="sections.write_me"
href="#write-me"
data-aos="zoom-in-up"
class="btn btn-lg btn-secondary opacity-1 text-white lang"
>
Write Me
</a>
</div>
</div>
</div>
</section>
<!-- The block with my skills -->
<section class="bg2" id="skills">
<div class="container">
<!-- The title of the "Skills" block -->
<div class="row">
<div class="col-12">
<h2
key="sections.skills"
data-aos="fade-up"
class="text-center text-uppercase mb-5 lang"
>
Skills
</h2>
</div>
</div>
<!-- The content of the "Skills" block -->
<div class="row">
<!-- My backend skills -->
<div class="col-lg-4 col-md-6 col-sm-12 mb-4">
<h3
id="skills.backend"
class="text-center"
data-aos="flip-right"
>
Backend
</h3>
<ul
data-aos="fade-right"
class="list-group list-group-flush w-75"
>
<li class="list-group-item border-dark">
<svg
role="img"
class="skill-icon"
viewBox="0 0 24 24"
style="fill: #3776ab"
xmlns="http://www.w3.org/2000/svg"
>
<title>Python</title>
<path
d="M14.25.18l.9.2.73.26.59.3.45.32.34.34.25.34.16.33.1.3.04.26.02.2-.01.13V8.5l-.05.63-.13.55-.21.46-.26.38-.3.31-.33.25-.35.19-.35.14-.33.1-.3.07-.26.04-.21.02H8.77l-.69.05-.59.14-.5.22-.41.27-.33.32-.27.35-.2.36-.15.37-.1.35-.07.32-.04.27-.02.21v3.06H3.17l-.21-.03-.28-.07-.32-.12-.35-.18-.36-.26-.36-.36-.35-.46-.32-.59-.28-.73-.21-.88-.14-1.05-.05-1.23.06-1.22.16-1.04.24-.87.32-.71.36-.57.4-.44.42-.33.42-.24.4-.16.36-.1.32-.05.24-.01h.16l.06.01h8.16v-.83H6.18l-.01-2.75-.02-.37.05-.34.11-.31.17-.28.25-.26.31-.23.38-.2.44-.18.51-.15.58-.12.64-.1.71-.06.77-.04.84-.02 1.27.05zm-6.3 1.98l-.23.33-.08.41.08.41.23.34.33.22.41.09.41-.09.33-.22.23-.34.08-.41-.08-.41-.23-.33-.33-.22-.41-.09-.41.09zm13.09 3.95l.28.06.32.12.35.18.36.27.36.35.35.47.32.59.28.73.21.88.14 1.04.05 1.23-.06 1.23-.16 1.04-.24.86-.32.71-.36.57-.4.45-.42.33-.42.24-.4.16-.36.09-.32.05-.24.02-.16-.01h-8.22v.82h5.84l.01 2.76.02.36-.05.34-.11.31-.17.29-.25.25-.31.24-.38.2-.44.17-.51.15-.58.13-.64.09-.71.07-.77.04-.84.01-1.27-.04-1.07-.14-.9-.2-.73-.25-.59-.3-.45-.33-.34-.34-.25-.34-.16-.33-.1-.3-.04-.25-.02-.2.01-.13v-5.34l.05-.64.13-.54.21-.46.26-.38.3-.32.33-.24.35-.2.35-.14.33-.1.3-.06.26-.04.21-.02.13-.01h5.84l.69-.05.59-.14.5-.21.41-.28.33-.32.27-.35.2-.36.15-.36.1-.35.07-.32.04-.28.02-.21V6.07h2.09l.14.01zm-6.47 14.25l-.23.33-.08.41.08.41.23.33.33.23.41.08.41-.08.33-.23.23-.33.08-.41-.08-.41-.23-.33-.33-.23-.41-.08-.41.08z"
/>
</svg>
Python
</li>
<li class="list-group-item">
<svg
role="img"
viewBox="0 0 24 24"
style="fill: #092e20"
class="skill-icon square"
xmlns="http://www.w3.org/2000/svg"
>
<title>Django</title>
<path
d="M11.146 0h3.924v18.166c-2.013.382-3.491.535-5.096.535-4.791 0-7.288-2.166-7.288-6.32 0-4.002 2.65-6.6 6.753-6.6.637 0 1.121.05 1.707.203zm0 9.143a3.894 3.894 0 00-1.325-.204c-1.988 0-3.134 1.223-3.134 3.365 0 2.09 1.096 3.236 3.109 3.236.433 0 .79-.025 1.35-.102V9.142zM21.314 6.06v9.098c0 3.134-.229 4.638-.917 5.937-.637 1.249-1.478 2.039-3.211 2.905l-3.644-1.733c1.733-.815 2.574-1.53 3.109-2.625.561-1.121.739-2.421.739-5.835V6.059h3.924zM17.39.021h3.924v4.026H17.39z"
/>
</svg>
Django (+ DRF)
</li>
<li class="list-group-item">
<svg
role="img"
class="skill-icon"
viewBox="0 0 24 24"
style="fill: #000000"
xmlns="http://www.w3.org/2000/svg"
>
<title>Flask</title>
<path
d="M7.172 20.36c-.914-.72-1.89-1.41-2.556-2.38-1.402-1.712-2.482-3.694-3.22-5.777-.446-1.355-.6-2.808-1.174-4.11-.602-.944.103-1.978 1.138-2.28.46-.087 1.272-.522.293-.211-.878.644-.963-.585-.063-.662.615-.082.84-.585.63-1.037-.66-.43 1.6-.903.463-1.544C1.5 1.08 4.34.835 3.64 2.285 3.473 3.4 5.624 2.08 5.125 3.368c.507.619 1.9.14 1.865 1.009.74.05.993.672 1.687.72.72.325 2.022.58 2.266 1.39-.713.566-2.364-1.165-2.443.398.215 2.31.16 4.689 1.004 6.888.4 1.332 1.37 2.38 2.244 3.418.837 1.016 1.971 1.73 3.127 2.333 1.014.478 2.107.795 3.213.994.448-.343 1.24-1.617 1.938-1.08.033.604-1.388 1.263-.067 1.196.776-.234 1.314.6 1.953-.152.588.697 2.446-.446 2.027.98-.566.364-1.392.144-1.959.646-.935-.467-1.68.418-2.715.306a19.86 19.86 0 01-3.484.29c-1.912-.15-3.865-.214-5.684-.88-1.024-.297-2.023-.881-2.924-1.464zm1.615.7c1 .432 1.978.888 3.074 1.026 1.74.24 3.537.614 5.283.274-.79-.357-1.608.14-2.395-.255-.944.203-1.957-.052-2.917-.177-1.092-.486-2.27-.82-3.291-1.452-1.277-.466.66.598 1.005.685.798.453-.877-.233-1.114-.421-.668-.375-.754-.297-.066.084.139.08.276.166.42.235zm-1.904-1.346c.97.359-.004-.682-.45-.622-.196-.341-.751-.557-.36-.74-.704.244-.737-.93-1.07-.763-.744-.235-.29-1.07-1.176-1.58-.081-.54-.882-1.008-1.138-1.822-.113-.416-.905-1.613-.418-.5.414 1.072 1.143 1.99 1.75 2.907.47.873 1.027 1.786 1.885 2.33.29.278.568.703.977.79zM4.09 16.647c.033-.146.177.317 0 0zm3.954 3.497c.215-.096-.31-.12 0 0zm.526.192c-.054-.265-.24.148 0 0zm.66.275c.312-.3-.484-.188 0 0zm1.127.63c.191-.282-.61-.107 0 0zM8.19 19.728c.487-.315-.63-.004 0 0zm.494.246c-.014-.166-.176.075 0 0zm2.47 1.542c.397.25 2.32.55 1.115.103-.2.042-2.23-.574-1.116-.103zm-3.921-3.054c-.04-.167-.616-.185 0 0zm1.15.67c.3-.21-.621-.16 0 0zm.966.593c.43-.162-.696-.163 0 0zm-2.584-1.773c.466.358 1.88.046.714-.213-.53-.283-1.727-.476-.912.17zm3.24 1.978c.193-.33-.815-.19 0 0zm-.984-.783c1.14.323-.958-.72-.281-.118l.15.068.13.05zm1.973 1.14c1.08.01-.975-.147 0 0zm-4.644-2.96c-.042-.2-.266.018 0 0zm6.47 3.985c.028-.363-.353.27 0 0zm-4.63-2.856c-.064-.191-.336-.008 0 0zm-1.738-1.254c.62-.037-.848-.273 0 0zm-2.06-1.332c-.077-.297-.674-.534 0 0zm5.407 3.435c-.114-.13-.054.028 0 0zm3.366 2.065c-.01-.197-.183.075 0 0zm-3.664-2.373c.06-.255-.528-.077 0 0zm-2.506-1.592c.46-.05-.74-.311 0 0zm4.241 2.637c.718-.285-.7-.14 0 0zM9.03 18.545c.827.106-.985-.563-.181-.06zm2.876 1.768c.773-.462.518 1.082 1.311.13.782-.57-.675.707.29.103.696-.467 1.726.22 2.376.445.468-.023.923.405 1.403.145.923-.25-1.806-.37-1.09-.81-.845.245-1.47-.294-1.885-.835-.948-.22-2.044-.703-2.517-1.542-.192-.315.28.044-.166-.47-.57-.508-.856-1.085-1.24-1.702-.457-.244-.51-.963-.557-.024.004-.593-.553-.992-.688-.826-.002-.571.595-.285.176-.707-.09-.592-.386-1.21-.475-1.877-.138-.322-.02-1.011-.473-.282-.165.77-.055-.947.202-.38.337-.58-.12-.51-.14-.43.22-.488.14-1.18-.057-.916.117-.517.185-1.902-.175-1.656.218-.54.414-2.473-.534-1.736-.384.005-1.048.14-1.363.296.986.543-.1.196-.5.11-.052.502-.45.285-.946.29.793.098-.386.81-.841.534-.59.282.51.987.012 1.205.06.328-.905-.12-.83.64-.573-.241-.078.9.209.514.975.264.686.866.71 1.437-.158.333-.784-.783-.14-.731-.507-.827-.561-.3-.984.085-.1.028 1.079.547.34.803.65.1.668.67.8 1.03.39.407.31-.45.779.04-.296-.436-1.567-1.228-.544-.974-.005-.44-.185-.793.129-.784.31-.562-.325 1.387.375.672.193-.085.24-.563.59.045.505.498.182.858-.531.403.127.433.954.587.799 1.265.165.595.395.376.596.342.158.578.247.153.255-.123.72.155.552.58.778.88.497.224-.712-1.522.142-.526.898.81.337 1.15-.47 1.02.51-.041.675.69 1.313.664.582.277.975 1.34-.027.897-.348-.313-1.58-.7-.573-.104.929.43 1.665.688 2.561 1.227.64.458.918.982 1.16 1.086-.538.257-1.623-.206-.817-.348-.503-.091-1.068-.345-.587.28.41.343 1.45.306 1.637.345-.159.348-.43.376.006.403-.486.26.156.3.201.448zm-.994-2.808c-.296-.31-.373-.89-.053-.385.164.066.525.947.053.385zm3.238 2.057c.185-.011.006.14 0 0zm-3.706-2.816c-.01-.468.107.36 0 0zm-.322-.433c-.372-.72.47.204 0 0zm-3.9-2.692c.219-.06.108.374 0 0zm3.104 1.682c.134-.504.158.424 0 0zm-2.192-1.525c-.155-.278.323.26 0 0zm1.882.604c-.352-.79.25-.432.078.13zM5.77 12.217c-.158-.26-.418-1.02-.334-1.252.076.378.804 1.627.357.518-.494-.93.59.302.702.534.05.23-.305-.063-.064.478-.44-.617-.26.34-.661-.278zm-1.003-.691c.04-.603.23.413 0 0zm.45.155c.216-.455.366.634 0 0zm-1.084-.84c-.374-.37-.644-.713.017-.23.255.01-.566-.778.06-.25.66.12.327 1.082-.077.48zm.57-.015c.217-.215.115.212 0 0zm.35.113c-.328-.617.4.258 0 0zm-.697-.667c-1.086-.966 1.365.506.177.18zm3.11 1.808c-.47-.282-.123-1.984.037-.82.457-.148-.025.6.315.594-.053.473-.206.643-.35.226zm1.15.68c.048-.513.099.35 0 0zm-.2-.198c.054-.22.007.258 0 0zM4.57 9.955c-.697-.963 2.027.973.447.244-.165-.043-.364-.06-.447-.244zm2.216 1.175c-.066-.81.147.134 0 0zm1.682 1.079c.13-.462.01.305 0 0zM4.676 9.587c.415-.088 1.718.729.52.234-.132-.148-.416-.08-.52-.234zm3.56 1.775c.044-.83.248-.495.002.118zM4.985 9.299c.169-.248-.45-1.12.089-.313.232.185.672.31.283.387.61.539-.15.146-.372-.074zm3.075 1.804c.117-.944.103.553 0 0zM4.632 8.427c.129-.055.068.172 0 0zm.802.478c.206-.434.38.483 0 0zm2.263 1.259c-.002-.167.043.242 0 0zm-.131-.29c-.314-.776.292.41 0 0zm-.193-.51c-.053-.32.18.404 0 0zm.314-.51c-.216-.38.272-1.673.326-.87-.227.625-.065.975.093.136.293-.66-.063 1.303-.42.735zm.322-1.923c.094-.115.02.139 0 0zM7.47 17.544c-.128-.111.016.07 0 0zm1.11.56c.615.16.612-.095.055-.17-.3-.28-1.246-.575-.4-.035.057.142.235.139.344.206zM6.389 16.65c.34.253 1.28.719.484.096.269-.312-.514-.478-.254-.686-.66-.404-.52-.368-.058-.356-.794-.354.114-.328.07-.51-.305-.06-1.52-.54-.804.04-.726-.37-.173.138-.392.084-.743-.202.66.565-.118.375.425.337 1.146.864.18.357-.128.183.69.46.892.6zm1.16.667c1.41.454-.691-.556 0 0zm5.94 3.598c.02-.28-.193.24 0 0zm.611.257c.325-.315.013.503.54-.077.005-.415-.017-.66-.606-.156-.162.09-.234.473.066.233zm-9.692-6.087c-.1-.393-.7-.39 0 0zm.652.428c-.242-.402-.864-.364 0 0zm3.71 2.237c.362.32 1.662.236.44.04-.182-.27-1.151-.204-.44-.04zm5.097 3.149c.558-.468-.54.208 0 0zm1.16.796c.003-.15-.24.066 0 0zm.001-.21c.617-.654-.598.039 0 0zM2.805 13.743c-.526-.75-.327-1.088-.835-1.7-.096-.47-.87-1.533-.4-.406.43.659.558 1.679 1.235 2.106zm12.03 7.534c1.135-.734-.466-.32 0 0zm.866.34c.57-.488-.36-.102 0 0zM4.215 14.255c.163-.242-.42-.031 0 0zm11.305 7.129c.551-.355-.126-.3-.1.032zm-7.47-4.71c-.02-.24-.291.02 0 0zm.46.267c-.145-.297-.224.047 0 0zm7.894 4.684c.705-.51-.428-.098-.148.096zm-.27-.13c.574-.482-.607.213 0 0zm1.38.918c.386-.258-.469-.083 0 0zM4.57 14.08c.517.116 2.066 1.274 1.152.08-.468-.138-.187-1.283-.665-1.08.32.535.264.763-.41.426-.845-.413-.474.204-.31.374-.224.052.299.196.233.2zm-2.356-1.86c.092-.383-.853-2.107-.446-.864.146.26.13.754.446.864zm4.324 2.666c-.266-.223-.013-.032 0 0zm.656.152c0-.405-.725-.164 0 0zm5.681 3.583c-.108-.278-.428-.006 0 0zm.273.199c-.04-.155-.157.03 0 0zM15.4 20.24c.216-.16-.27-.02 0 0zM3.39 12.52c.62-.24-.664-.17 0 0zm8.984 5.662c-.007-.401-.395.1 0 0zm-9.23-6.231c.399-.135-.367-.09 0 0zm1.156.56c-.007-.133-.122.05 0 0zm14.09 8.64c.512-.104 1.678.26 1.866-.136-.62-.015-2.15-.438-2.222.1l.136.023.22.013zM4.667 12.603c.009-.407-.317-.015 0 0zM1.63 10.495c-.138-.775-.525-.118 0 0zm.724.182c.009-.25-.663-.224 0 0zm.414.203c-.12-.097-.094.122 0 0zm2.605 1.67c.122-.112-.29-.083 0 0zm-2.88-2.128c-.07-.585-.84-.088 0 0zm-1.486-.964c-.02-.27-.144.102 0 0zm.22-.167c-.035-.32-.19.04 0 0zm1.22.729c.518-.203-.94-.42-.104-.04zm16.334 10.089c.33-.303-.42-.094 0 0zm1.974 1.023c.132-.392-.334.05 0 0zM2.573 9.38c.055-.38-.41.075 0 0zM.837 8.218c-.093-.535-.08-1.474.812-1.156-1.191.236.824 1.48.57.498.5.024.98-.296.716.19.987-.11 1.67-.964 2.624-.845.742-.098 1.554-.172 2.354-.471.658-.048 1.29-.756.93-1.175-.896-.076-1.835.036-2.827.233-1.098.228-2.096.662-3.205.849-1.08.145.217.4-.092.456-.564.196.672.328-.073.534-.46-.088-.94-.246-.743-.73-1.035.133-1.945.563-1.127 1.616h.06zm2.494-1.27c.243-.894 1.3.735.398.118-.108-.08-.285-.146-.398-.12zm.047-.434c.35-.26.186.146 0 0zm.445.008c.032-.411 1.018.218.163.148zm.608-.245c.222-.26.064.23 0 0zm.156-.104c.37-.444 2.095-.283.832-.043-.338-.255-.598.15-.832.043zm2.25-.347c-.055-1.214 1.119.432 0 0zm.64-.004c.233-.612.906-.245.108-.123.017.065-.024.316-.108.123zM2.322 9.067c.697-.427-.741-.37 0 0zm.515.144c.245-.26-.531-.106 0 0zm-1.52-1.08c.399-.305-.471-.116 0 0zm20.602 12.89c.012-.355-.304.16 0 0zm-2.093-1.43c.06-.408-.27.037 0 0zm2.67 1.568c.557 0 1.688-.173.475-.173-.19.03-1.109.024-.476.173zM3.29 8.959c.45-.03.706-.497-.087-.47-1.23-.127 1.084.42-.158.264-.167.11.236.237.245.207zm.398.202c-.048-.29-.14.154 0 0zm.47-1.257c.197-.243-.27-.065 0 0zm-1.5-2.508c.806-.274 1.907-.581 2.287.135-.387-.466-.156-.924.21-.243.516.689.775-.313.438-.545.383.476.819.7.257.03.61-.734-1.223.097-1.64.088-.2.09-2.071.477-1.551.535zm.472-.903c.46-.347 1.588.206.864-.345-.07-.062-1.586.418-.864.345zm1.674.069c.538.013-.231-.722.409-.39-.105-.343-.746-.407-1.06-.544-.176.314.36.938.65.934zm-1.38-1.52c.186-.252-.326.128 0 0zm.684.164c.866-.115-.22-.373-.174-.01zm-1.277-1c-.61-.796 1.146.134.527-.7-.522-.415-1.023.468-.527.7zm7.824 4.215c.28-.496-1.155-.668-.188-.175.09.03.07.21.188.175z"
/>
</svg>
Flask
</li>
<li class="list-group-item border-dark">
<svg
role="img"
class="skill-icon"
viewBox="0 0 24 24"
style="fill: #009688"
xmlns="http://www.w3.org/2000/svg"
>
<title>FastAPI</title>
<path
d="M12 0C5.375 0 0 5.375 0 12c0 6.627 5.375 12 12 12 6.626 0 12-5.373 12-12 0-6.625-5.373-12-12-12zm-.624 21.62v-7.528H7.19L13.203 2.38v7.528h4.029L11.376 21.62z"
/>
</svg>
FastAPI
</li>
<li class="list-group-item border-dark">
<svg
role="img"
viewBox="0 0 24 24"
style="fill: #37814a"
class="skill-icon square"
xmlns="http://www.w3.org/2000/svg"
>
<title>Celery</title>
<path
d="M2.303 0A2.298 2.298 0 0 0 0 2.303v19.394A2.298 2.298 0 0 0 2.303 24h19.394A2.298 2.298 0 0 0 24 21.697V2.303A2.298 2.298 0 0 0 21.697 0zm8.177 3.072c4.098 0 7.028 1.438 7.68 1.764l-1.194 2.55c-2.442-1.057-4.993-1.41-5.672-1.41-1.574 0-2.17.922-2.17 1.763v8.494c0 .869.596 1.791 2.17 1.791.679 0 3.23-.38 5.672-1.41l1.194 2.496c-.435.271-3.637 1.818-7.68 1.818-1.112 0-4.64-.244-4.64-4.64V7.713c0-4.397 3.528-4.64 4.64-4.64z"
/>
</svg>
Celery
</li>
<li class="list-group-item">
<svg
role="img"
class="skill-icon"
viewBox="0 0 24 24"
style="fill: #2596be"
xmlns="http://www.w3.org/2000/svg"
>
<title>tRPC</title>
<path
d="M24 12c0 6.62-5.38 12-12 12S0 18.62 0 12 5.38 0 12 0s12 5.38 12 12ZM1.21 12A10.78 10.78 0 0 0 12 22.79 10.78 10.78 0 0 0 22.79 12 10.78 10.78 0 0 0 12 1.21 10.78 10.78 0 0 0 1.21 12Zm10.915-6.086 2.162 1.248a.25.25 0 0 1 .125.217v1.103l2.473 1.428a.25.25 0 0 1 .125.217v2.355l.955.551a.25.25 0 0 1 .125.217v2.496a.25.25 0 0 1-.125.217l-2.162 1.248a.25.25 0 0 1-.25 0l-.956-.552-2.472 1.427a.25.25 0 0 1-.25 0l-2.472-1.427-.956.552a.25.25 0 0 1-.25 0l-2.162-1.248a.25.25 0 0 1-.125-.217V13.25a.25.25 0 0 1 .125-.217l.955-.551v-2.355a.25.25 0 0 1 .125-.217l2.473-1.428V7.38a.25.25 0 0 1 .125-.217l2.162-1.248a.25.25 0 0 1 .25 0Zm1.268 10.049a.25.25 0 0 1-.125-.217V13.25a.25.25 0 0 1 .125-.217l2.16-1.248a.25.25 0 0 1 .25 0l.707.408v-1.922l-2.098-1.21v.814a.25.25 0 0 1-.125.217l-2.162 1.248a.25.25 0 0 1-.25 0l-2.162-1.248a.25.25 0 0 1-.125-.217V9.06L7.49 10.271v1.922l.707-.408a.25.25 0 0 1 .25 0l2.16 1.248a.25.25 0 0 1 .125.217v2.496a.25.25 0 0 1-.125.217l-.705.408L12 17.582l2.098-1.211ZM10.088 9.73l1.662.96V8.766l-1.662-.955Zm3.824 0V7.811l-1.662.955v1.924ZM12 6.418l-1.66.96 1.66.954 1.66-.954Zm-5.59 9.184 1.66.958v-1.921l-1.66-.956Zm3.822 0v-1.92l-1.662.957v1.923Zm-1.91-3.311-1.662.96 1.661.955 1.66-.956Zm5.446 3.31 1.66.96v-1.922l-1.66-.956Zm3.822 0v-1.918l-1.662.956v1.922Zm-1.912-3.31-1.66.96 1.66.955 1.66-.956Z"
/>
</svg>
Parsing
</li>
</ul>
</div>
<!-- My frontend skills -->
<div class="col-lg-4 col-md-6 col-sm-12 mb-4">
<h3
id="skills.frontend"
class="text-center"
data-aos="flip-up"
>
Frontend
</h3>
<ul
data-aos="fade-up"
class="list-group list-group-flush w-75"
>
<li class="list-group-item border-dark">
<svg
role="img"
viewBox="0 0 24 24"
style="fill: #4fc08d"
class="skill-icon square"
xmlns="http://www.w3.org/2000/svg"
>
<title>Vue.js</title>
<path
d="M24,1.61H14.06L12,5.16,9.94,1.61H0L12,22.39ZM12,14.08,5.16,2.23H9.59L12,6.41l2.41-4.18h4.43Z"
/>
</svg>
Vue.js
</li>
<li class="list-group-item">
<svg
role="img"
viewBox="0 0 24 24"
style="fill: #e34f26"
class="skill-icon square"
xmlns="http://www.w3.org/2000/svg"
>
<title>HTML5</title>
<path
d="M1.5 0h21l-1.91 21.563L11.977 24l-8.564-2.438L1.5 0zm7.031 9.75l-.232-2.718 10.059.003.23-2.622L5.412 4.41l.698 8.01h9.126l-.326 3.426-2.91.804-2.955-.81-.188-2.11H6.248l.33 4.171L12 19.351l5.379-1.443.744-8.157H8.531z"
/>
</svg>
HTML5
</li>
<li class="list-group-item">
<svg
role="img"
viewBox="0 0 24 24"
style="fill: #1572b6"
class="skill-icon square"
xmlns="http://www.w3.org/2000/svg"
>
<title>CSS3</title>
<path
d="M1.5 0h21l-1.91 21.563L11.977 24l-8.565-2.438L1.5 0zm17.09 4.413L5.41 4.41l.213 2.622 10.125.002-.255 2.716h-6.64l.24 2.573h6.182l-.366 3.523-2.91.804-2.956-.81-.188-2.11h-2.61l.29 3.855L12 19.288l5.373-1.53L18.59 4.414z"
/>
</svg>
CSS3
</li>
<li class="list-group-item">
<svg
role="img"
viewBox="0 0 24 24"
style="fill: #f7df1e"
class="skill-icon square"
xmlns="http://www.w3.org/2000/svg"
>
<title>JavaScript</title>
<path
d="M0 0h24v24H0V0zm22.034 18.276c-.175-1.095-.888-2.015-3.003-2.873-.736-.345-1.554-.585-1.797-1.14-.091-.33-.105-.51-.046-.705.15-.646.915-.84 1.515-.66.39.12.75.42.976.9 1.034-.676 1.034-.676 1.755-1.125-.27-.42-.404-.601-.586-.78-.63-.705-1.469-1.065-2.834-1.034l-.705.089c-.676.165-1.32.525-1.71 1.005-1.14 1.291-.811 3.541.569 4.471 1.365 1.02 3.361 1.244 3.616 2.205.24 1.17-.87 1.545-1.966 1.41-.811-.18-1.26-.586-1.755-1.336l-1.83 1.051c.21.48.45.689.81 1.109 1.74 1.756 6.09 1.666 6.871-1.004.029-.09.24-.705.074-1.65l.046.067zm-8.983-7.245h-2.248c0 1.938-.009 3.864-.009 5.805 0 1.232.063 2.363-.138 2.711-.33.689-1.18.601-1.566.48-.396-.196-.597-.466-.83-.855-.063-.105-.11-.196-.127-.196l-1.825 1.125c.305.63.75 1.172 1.324 1.517.855.51 2.004.675 3.207.405.783-.226 1.458-.691 1.811-1.411.51-.93.402-2.07.397-3.346.012-2.054 0-4.109 0-6.179l.004-.056z"
/>
</svg>
JavaScript
</li>
<li class="list-group-item border-dark">
<svg
role="img"
viewBox="0 0 24 24"
style="fill: #3178c6"
class="skill-icon square"
xmlns="http://www.w3.org/2000/svg"
>
<title>TypeScript</title>
<path