-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1281 lines (968 loc) · 43.5 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>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Kirill Sukhorukov - Portfolio</title>
<meta property="og:title" content="Kirill Sukhorukov - Portfolio" />
<meta property="og:image" content="./assets/images/logo.png" />
<!--
- favicon
-->
<link rel="shortcut icon" href="./assets/images/logo.png" type="image/x-icon">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<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&display=swap" rel="stylesheet">
<!-- Google Analytics-->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-G1H2WJ7XH4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-G1H2WJ7XH4');
</script>
</head>
<body>
<!--
- #MAIN
-->
<main>
<!--
- #SIDEBAR
-->
<aside class="sidebar" data-sidebar>
<div class="sidebar-info">
<figure class="avatar-box">
<img src="./assets/images/avatar.jpg" alt="Kirill Sukhorukov">
</figure>
<div class="info-content">
<h1 class="name" title="Kirill Sukhorukov">Kirill Sukhorukov</h1>
<p class="title notranslate" id="motto"></p>
</div>
<button class="info_more-btn" data-sidebar-btn>
<ion-icon name="swap-vertical"></ion-icon>
</button>
</div>
<div class="sidebar-info_more">
<div class="separator"></div>
<ul class="contacts-list">
<li class="contact-item">
<div class="icon-box">
<ion-icon name="hourglass"></ion-icon>
</div>
<div class="contact-info">
<p class="contact-title">Age</p>
<time id="age" class="counting-animation"></time>
</div>
</li>
<li class="contact-item">
<div class="icon-box">
<ion-icon name="location-sharp"></ion-icon>
</div>
<div class="contact-info">
<p class="contact-title">Location</p>
<address>Nizhny Novgorod, Russia</address>
</div>
</li>
<li class="contact-item">
<div class="icon-box">
<ion-icon name="person-sharp"></ion-icon>
</div>
<div class="contact-info">
<p class="contact-title">Personality Type</p>
<address>INTJ-T</address>
</div>
</li>
</ul>
<div class="separator"></div>
<ul class="social-list">
<li class="social-item">
<a href="https://github.com/K1rsN7" class="social-link">
<ion-icon name="logo-github"></ion-icon>
</a>
</li>
<li class="social-item">
<a href="https://t.me/K1rsN7" class="social-link">
<ion-icon name="paper-plane-outline"></ion-icon>
</a>
</li>
<li class="social-item">
<a href="https://vk.com/k1rsn7" class="social-link">
<ion-icon name="logo-vk"></ion-icon>
</a>
</li>
</ul>
</div>
</aside>
<!--
- #main-content
-->
<div class="main-content">
<!--
- #NAVBAR
-->
<nav class="navbar notranslate">
<ul class="navbar-list">
<li class="navbar-item">
<button class="navbar-link active" data-nav-link>About</button>
</li>
<li class="navbar-item">
<button class="navbar-link" data-nav-link>Projects</button>
</li>
<li class="navbar-item">
<button class="navbar-link" data-nav-link>Certificates</button>
</li>
<li class="navbar-item">
<button class="navbar-link" data-nav-link>Contact</button>
</li>
</ul>
</nav>
<div class="modal-container" data-modal-container>
<div class="overlay" data-overlay></div>
<button class="modal-close-btn" data-modal-close-btn>
</button>
</div>
<!--
- #ABOUT
-->
<article class="about active" data-page="about">
<header>
<h2 class="h2 article-title">About me</h2>
</header>
<section class="about-text content-card">
<div id="expandable-section">
<p>
Hello! 👋 My name is Kirill, I'm from Nizhny Novgorod, Russia.
I am a novice Data Scientist who is passionate about everything related to artificial intelligence and machine learning.
Since 2022, I have been actively immersing myself in the world of AI, and since 2020 I have been programming in Python.
I am currently focusing on studying neural networks and their application in real-world projects.
</p>
<div id="more" style="display: none;">
<p>
I am a TeamLead and the main Data Scientist in my team. Together, we actively participate in hackathons, championships, conferences and meetups, as well as develop joint projects.
My experience working in a team helps me not only develop my technical skills, but also improve my leadership skills.
</p>
<p>
I'm a fast learner, I easily master new technologies, and I can effectively work on multiple projects at the same time.
My goal is to develop expertise in various fields throughout my life and career.
I am a purposeful, self-confident and visionary person who strives to gain new experience and put it into practice.
</p>
<p>
Besides, I'm a big Linux and open source software enthusiast. It helps me to understand more deeply how systems work and to find non-standard approaches to solving problems.
I am also interested in automating processes, for example, I have set up my own smart home to make life more convenient and efficient.
</p>
<p>
I believe that AI and Data Science are the future, and I strive to be a part of this fascinating world.
If you have any ideas or projects that you want to implement, let's discuss! I am always open to cooperation and ready to help bring your ideas to life.
</p>
</div>
</div>
<center> <button class="more" id="toggle-button" onclick="toggleText()">↓ Show more
↓</button> </center>
</section>
<!--
- service
-->
<section class="service">
<h3 class="h3 service-title">Primary Focus</h3>
<ul class="service-list">
<li class="service-item">
<div class="service-icon-box">
<img src="./assets/images/icon-ai.svg" alt="AI & ML Solutions" width="40">
</div>
<div class="service-content-box">
<h4 class="h4 service-item-title">AI & ML Solutions</h4>
<p class="service-item-text">
Development of intelligent solutions using artificial intelligence and machine learning.
</p>
</div>
</li>
<li class="service-item">
<div class="service-icon-box">
<img src="./assets/images/icon-analystics.svg" alt="Data Analytics & Insights" width="40">
</div>
<div class="service-content-box">
<h4 class="h4 service-item-title">Data Analytics & Insights</h4>
<p class="service-item-text">
Analyze data to extract valuable insights. Data visualization and report generation.
</p>
</div>
</li>
<li class="service-item">
<div class="service-icon-box">
<img src="./assets/images/icon-automation.svg" alt="Automation & Smart Systems" width="40">
</div>
<div class="service-content-box">
<h4 class="h4 service-item-title">Automation & Smart Systems</h4>
<p class="service-item-text">
Designing and implementing smart systems to increase convenience and efficiency.
</p>
</div>
</li>
<li class="service-item">
<div class="service-icon-box">
<img src="./assets/images/icon-linux.svg" alt="marketing icon" width="40">
</div>
<div class="service-content-box">
<h4 class="h4 service-item-title">Linux & Open Source Expertise</h4>
<p class="service-item-text">
Working with open source software and configuring Linux systems.
</p>
</div>
</li>
</ul>
<br>
<br>
<!-- Languages -->
<!-- Programming Languages -->
<h3 class="h3 languages-title">Languages</h3>
<section class="languages content-card">
<div class="languages-column">
<h3 class="h3 languages-title-second">Coding Languages</h3>
<ul class="languages-list">
<li class="languages-item">
<div class="title-wrapper">
<h5 class="h5">Python</h5>
<data value="95">95%</data>
</div>
<div class="languages-progress-bg">
<div class="languages-progress-fill" style="width: 95%;"></div>
</div>
</li>
<li class="languages-item">
<div class="title-wrapper">
<h5 class="h5">HTML & CSS</h5>
<data value="75">75%</data>
</div>
<div class="languages-progress-bg">
<div class="languages-progress-fill" style="width: 75%;"></div>
</div>
</li>
<li class="languages-item">
<div class="title-wrapper">
<h5 class="h5">JavaScript</h5>
<data value="15">15%</data>
</div>
<div class="languages-progress-bg">
<div class="languages-progress-fill" style="width: 15%;"></div>
</div>
</li>
<li class="languages-item">
<div class="title-wrapper">
<h5 class="h5">PHP</h5>
<data value="10">10%</data>
</div>
<div class="languages-progress-bg">
<div class="languages-progress-fill" style="width: 10%;"></div>
</div>
</li>
<li class="languages-item">
<div class="title-wrapper">
<h5 class="h5">C#</h5>
<data value="10">10%</data>
</div>
<div class="languages-progress-bg">
<div class="languages-progress-fill" style="width: 10%;"></div>
</div>
</li>
</ul>
</div>
<!-- Human Languages -->
<div class="languages-column">
<h3 class="h3 languages-title-second">Human Languages</h3>
<ul class="languages-list">
<li class="languages-item">
<div class="title-wrapper">
<h5 class="h5">Russian</h5>
<data value="Advanced">Advanced</data>
</div>
<div class="languages-progress-bg">
<div class="languages-progress-fill" style="width: 100%;"></div>
</div>
</li>
<li class="languages-item">
<div class="title-wrapper">
<h5 class="h5">English</h5>
<data value="elementary">Elementary</data>
</div>
<div class="languages-progress-bg">
<div class="languages-progress-fill" style="width: 25%;"></div>
</div>
</li>
</ul>
</div>
</section>
<br>
<!-- technologies -->
<h3 class="h3 technologies-title">Development Skills</h3>
<br>
<section class="technologies content-card" id="tech-skills">
<ul class="technologies-list has-scrollbar slider ">
<li class="technologies-item">
<img src="./assets/images/python.png" alt="Python" id="11">
</li>
<li class="technologies-item">
<img src="./assets/images/linux.png" alt="Linux" id="12">
</li>
<li class="technologies-item">
<img src="./assets/images/docker.png" alt="Docker" id="15">
</li>
<li class="technologies-item">
<img src="./assets/images/postgresql.svg" alt="PostgreSQL" id="14">
</li>
<li class="technologies-item">
<img src="./assets/images/git.png" alt="Git" id="14">
</li>
<li class="technologies-item">
<img src="./assets/images/html.png" alt="HTML" id="1">
</li>
<li class="technologies-item">
<img src="./assets/images/css.png" alt="CSS" id="2">
</li>
<li class="technologies-item">
<img src="./assets/images/java-script.png" alt="JavaScript" id="3">
</li>
<li class="technologies-item">
<img src="./assets/images/php.png" alt="PHP" id="9">
</li>
<li class="technologies-item">
<img src="./assets/images/mysql.png" alt="MySQL" id="10">
</li>
<li class="technologies-item">
<img src="./assets/images/java.png" alt="Java" id="14">
</li>
<li class="technologies-item">
<img src="./assets/images/unity.png" alt="Unity" id="14">
</li>
</ul>
</section>
<br>
<!-- Next Page -->
<div class="pagination-box">
<button class="pagination-button" data-nav-link data-target-section="projects">Next ></button>
</div>
</article>
<!--
- #Projects
-->
<article class="projects" data-page="projects">
<header>
<h2 class="h2 article-title">My Projects</h2>
</header>
<section class="projects notranslate">
<ul class="filter-list">
<li class="filter-item">
<button class="active" data-filter-btn>All</button>
</li>
<li class="filter-item">
<button data-filter-btn>AI</button>
</li>
<li class="filter-item">
<button data-filter-btn>Utils</button>
</li>
<li class="filter-item">
<button data-filter-btn>Other</button>
</li>
</ul>
<div class="filter-select-box">
<button class="filter-select" data-select>
<div class="select-value" data-selecct-value>Select category</div>
<div class="select-icon">
<ion-icon name="chevron-down"></ion-icon>
</div>
</button>
<ul class="select-list">
<li class="select-item">
<button data-select-item>All</button>
</li>
<li class="select-item">
<button data-select-item>AI</button>
</li>
<li class="select-item">
<button data-select-item>Utils</button>
</li>
<li class="select-item">
<button data-select-item>Other</button>
</li>
</ul>
</div>
<ul class="project-list">
<li class="project-item active" data-filter-item data-category="utils">
<a href="https://github.com/K1rsN7/SubManager">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/SubManager/blob/main/img/banner.jpg?raw=true" loading="lazy">
</figure>
</a>
<h3 class="project-title">SubManage</h3>
<p class="project-category">Utils</p>
<p class="project-category">Solo Development</p>
<p class="project-development">Python</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/SubManager">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="utils">
<a href="https://github.com/K1rsN7/SchoolProject">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/SchoolProject/blob/main/banner.png?raw=true" loading="lazy">
</figure>
</a>
<h3 class="project-title">Quadratic Equations</h3>
<p class="project-category">Calculator & Generator</p>
<p class="project-category">Solo Development</p>
<p class="project-development">Python</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/SchoolProject">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="other">
<a href="https://github.com/K1rsN7/TechHaven">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/TechHaven/blob/master/img/office2.jpg?raw=true" loading="lazy">
</figure>
</a>
<h3 class="project-title">TechHaven</h3>
<p class="project-category">Complete Build</p>
<p class="project-category">Solo Development</p>
<p class="project-development">JS | PHP | PostgreSQL</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/TechHaven">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="utils">
<a href="https://github.com/K1rsN7/TrackDistributo">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/TrackDistributor/raw/main/banner.png?raw=true" loading="lazy">
</figure>
</a>
<h3 class="project-title">Track Distributor</h3>
<p class="project-category">Utils</p>
<p class="project-category">Solo Development</p>
<p class="project-development">Python</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/TrackDistributor">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="ai">
<a href="https://github.com/K1rsN7/Mushroom_Guide">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/Mushroom_Guide/raw/main/banner.png" loading="lazy">
</figure>
</a>
<h3 class="project-title">Mushroom Guide</h3>
<p class="project-category">AI telegram bot</p>
<p class="project-category">Solo Development</p>
<p class="project-development">Python | Telegram</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/Mushroom_Guide">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="other">
<a href="https://github.com/K1rsN7/Iron_Event">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/UP02/raw/main/image.png" loading="lazy">
</figure>
</a>
<h3 class="project-title">Iron Event</h3>
<p class="project-category">Desktop application</p>
<p class="project-category">Solo Development</p>
<p class="project-development">Java | MySQL</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/Iron_Event">
<ion-icon name="logo-github"></ion-icon> GitHub new
</a>
<a href="https://github.com/K1rsN7/Competition-organization">
<ion-icon name="logo-github"></ion-icon> GitHub old
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="ai">
<a href="https://github.com/K1rsN7/SportScanAI">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/SportScanAI/raw/master/banner.png" loading="lazy">
</figure>
</a>
<h3 class="project-title">SportScanAi</h3>
<p class="project-category">AI scanner for cheaters</p>
<p class="project-category">Team Project</p>
<p class="project-development">Python | CatBoost | Docker</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/SportScanAI">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="other">
<a href="https://github.com/K1rsN7/hackathon_IT_space_2022">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/hackathon_IT_space_2022/raw/main/image1.png" loading="lazy">
</figure>
</a>
<h3 class="project-title">IT Space 2022</h3>
<p class="project-category">A mobile game about MTS</p>
<p class="project-category">Team Project</p>
<p class="project-development">C# | Unity</p>
<div class="project-buttons disabled">
<a href="">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="ai">
<a href="https://github.com/K1rsN7/Acceptance-of-documents">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/Acceptance-of-documents/raw/main/banner.png" loading="lazy">
</figure>
</a>
<h3 class="project-title">Acceptance of documents</h3>
<p class="project-category">AI document scanner</p>
<p class="project-category">Team Project</p>
<p class="project-development">Python</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/Acceptance-of-documents">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="ai">
<a href="https://github.com/K1rsN7/HackAI2023">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/HackAI2023/raw/main/banner.png" loading="lazy">
</figure>
</a>
<h3 class="project-title">AI assistant for drivers</h3>
<p class="project-category">Voice assistant for drivers</p>
<p class="project-category">Team Project</p>
<p class="project-development">Python</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/HackAI2023">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="ai">
<a href="https://github.com/K1rsN7/Defect-Detection">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/Defect-Detection/raw/master/defect%20sense%20ai.png?raw=true" loading="lazy">
</figure>
</a>
<h3 class="project-title">Defect Sense AI</h3>
<p class="project-category">Detection of defects</p>
<p class="project-category">Team Project</p>
<p class="project-development">Python</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/Defect-Detection">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="ai">
<a href="https://github.com/K1rsN7/Kaggle-Solutions">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/Kaggle-Solutions/raw/main/banner.png" loading="lazy">
</figure>
</a>
<h3 class="project-title">Kaggle Solutions</h3>
<p class="project-category">All competition decisions</p>
<p class="project-category">Solo Development</p>
<p class="project-development">Python</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/Kaggle-Solutions">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
<a href="https://github.com/K1rsN7/Kaggle-Solutions">
<ion-icon name="person-outline"></ion-icon> Kaggle
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="ai">
<a href="https://github.com/K1rsN7/BusinessLunchGAN">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/BusinessLunchGAN/raw/master/banner.png" loading="lazy">
</figure>
</a>
<h3 class="project-title">PixelGAN</h3>
<p class="project-category">Video quality improvements</p>
<p class="project-category">Team Project</p>
<p class="project-development">Python</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/BusinessLunchGAN">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="other">
<a href="https://github.com/K1rsN7/Escape_from_the_desert">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/Escape_from_the_desert/raw/master/banner.png" loading="lazy">
</figure>
</a>
<h3 class="project-title">Escape from desert</h3>
<p class="project-category">Escape Console Game</p>
<p class="project-category">Solo Development</p>
<p class="project-development">Java</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/Escape_from_the_desert">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<li class="project-item active" data-filter-item data-category="">
<a href="https://github.com/K1rsN7/TerraWing">
<figure class="project-img loading">
<img data-src="https://github.com/K1rsN7/TerraWing/raw/master/logo.png" loading="lazy">
</figure>
</a>
<h3 class="project-title">TerraWing</h3>
<p class="project-category">Recognizing obstacles on the way</p>
<p class="project-category">Team Project</p>
<p class="project-development">Python</p>
<div class="project-buttons disabled">
<a href="https://github.com/K1rsN7/TerraWing">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li>
<!-- <li class="project-item active" data-filter-item data-category="">
<a href="">
<figure class="project-img loading">
<img data-src="" loading="lazy">
</figure>
</a>
<h3 class="project-title"></h3>
<p class="project-category"></p>
<p class="project-category"></p>
<p class="project-development"></p>
<div class="project-buttons disabled">
<a href="">
<ion-icon name="logo-github"></ion-icon> GitHub
</a>
</div>
</li> -->
</ul>
<!-- Next Page -->
<div class="pagination-box">
<button class="pagination-button" data-nav-link data-target-section="certificates">Next ></button>
</div>
</section>
</article>
<!-- Certificates -->
<article class="certificates" data-page="certificates">
<header>
<h2 class="h2 article-title">My Certificates</h2>
</header>
<br><br>
<!-- Group 1 -->
<section class="timeline">
<div class="title-wrapper">
<div class="icon-box">
<ion-icon name="desktop-outline"></ion-icon>
</div>
<h3 class="h3">IT competitions</h3>
</div>
<ol class="timeline-list">
<li class="timeline-item">
<h4 class="h4 timeline-item-title">Participation in the district hackathon in Omsk 7th place</h4>
<p class="timeline-text">
Digital Breakthrough
</p>
<div class="certificate-container">
<img src="./assets/images/certificates/Digital breakthrough 08.09.2024.png" onclick="window.open(this.src)">
</div>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">3rd place in the final of the international hackathon competence “AI-sporttech - SportTechCup 2024”</h4>
<p class="timeline-text">
IT-Planeta
</p>
<div class="certificate-container">
<img src="./assets/images/certificates/3 place SportScanAi 18.05.2024.png" onclick="window.open(this.src)">
</div>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">GARAGE STARTUP SPRINT Grocery Hackathon</h4>
<p class="timeline-text">
Sber
</p>
<div class="certificate-container">
<img src="./assets/images/certificates/Garage startup sprint 01.03.2024.png" onclick="window.open(this.src)">
</div>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">International online Hackathon "Digital transformation of agriculture"</h4>
<p class="timeline-text">
HSE
</p>
<div class="certificate-container">
<img src="./assets/images/certificates/The digital transformation of agriculture 2024.png" onclick="window.open(this.src)">
</div>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">Participation in the ATOMIC HACK hackathon in Nizhny Novgorod 11th place</h4>
<p class="timeline-text">
Rosatom
</p>
<div class="certificate-container">
<img src="./assets/images/certificates/Atomic hack 17.12.2023.png" onclick="window.open(this.src)">
</div>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">Participation in the international hackathon in Moscow</h4>
<p class="timeline-text">
Digital Breakthrough
</p>
<div class="certificate-container">
<img src="./assets/images/certificates/Digital Breakthrough 26.11.2023.png" onclick="window.open(this.src)">
</div>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">Winners of the international online hackathon "Smart City. Smart Home"</h4>
<p class="timeline-text">
HSE
</p>
<div class="certificate-container">
<img src="./assets/images/certificates/HSE Smart Sity 24.11.2023.png" onclick="window.open(this.src)">
</div>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">Participation in the round-robin hackathon in Sochi 12th place</h4>
<p class="timeline-text">
Digital Breakthrough
</p>
<div class="certificate-container">
<img src="./assets/images/certificates/Digital breakthrough 15.10.2023.png" onclick="window.open(this.src)">
</div>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">Participation in the round-robin hackathon in Khabarovsk 5th place</h4>
<p class="timeline-text">
Digital Breakthrough
</p>
<div class="certificate-container">
<img src="./assets/images/certificates/Digital breakthrough 24.09.2023.png" onclick="window.open(this.src)">
</div>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">Participation in the All-Russian hackathon 17th place</h4>
<p class="timeline-text">
Digital Breakthrough
</p>