-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1361 lines (1223 loc) · 64.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>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NK1M3DF2EM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NK1M3DF2EM');
</script>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Vladyslav Hryhorashchenko - GameDev resume</title>
<!-- <meta content="" name="description">
<meta content="" name="keywords"> -->
<!-- Meta tags for previews -->
<meta property='og:title' content="Vlad Hryhorashchenko - Web Portfolio" />
<meta property='og:image' content="http://nek0pi.github.io/assets/img/thumbnail.jpg" />
<meta property='og:description' content="Check out my portfolio to find out more about cool stuff I do!" />
<meta property='og:url' content="nek0pi.github.io" />
<meta property='og:type' content="website" />
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- Code highlighting library -->
<link rel="stylesheet" href="assets/css/code_highlighting/tomorrow-night-bright.css">
<script src="assets/vendor/highlightjs/highlight.pack.js"></script>
<!-- Initialize highlight -->
<script>hljs.initHighlightingOnLoad();</script>
<!-- =======================================================
* Template Name: iPortfolio - v1.4.0
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<button type="button" class="mobile-nav-toggle d-xl-none"><i class="icofont-navigation-menu"></i></button>
<!-- ======= Header ======= -->
<header id="header">
<div class="d-flex flex-column">
<div class="profile">
<img src="assets/img/profile_img.jpeg" alt="" class="img-fluid rounded-circle">
<h1 class="text-light"><a href="index.html">Vladyslav</a></h1>
<h1 class="text-light"><a href="index.html">Hryhorashchenko</a></h1>
<div class="social-links mt-3 text-center">
<a href="https://github.com/nek0pi" target="_blank" class="github"><i class="bx bxl-github"></i></a>
<a href="https://www.linkedin.com/in/nek0pi/" target="_blank" class="linkedin"><i
class="bx bxl-linkedin"></i></a>
<a href="https://nek0pi.itch.io/" target="_blank" class="itchio"><i class="bx bxs-home-heart"></i></a>
</div>
</div>
<nav class="nav-menu">
<ul>
<li class="active"><a href="#hero"><i class="bx bx-home"></i> <span>Home</span></a></li>
<li><a href="#about"><i class="bx bx-user"></i> <span>About</span></a></li>
<li><a href="#skills"><i class="bx bx-code"></i> <span>Skills</span></a></li>
<li><a href="#resume"><i class="bx bx-file-blank"></i> <span>Resume</span></a></li>
<li><a href="#portfolio"><i class="bx bx-book-content"></i> Portfolio</a></li>
<li><a href="#contact"><i class="bx bx-envelope"></i> Contact</a></li>
<li><a href="assets/other/Vlad_Hryhorashchenko_Resume.docx"><i class="bx bx-file"></i> Download resume
file</a></li>
</ul>
</nav><!-- .nav-menu -->
<button type="button" class="mobile-nav-toggle d-xl-none"><i class="icofont-navigation-menu"></i></button>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center align-items-center">
<div class="hero-container" data-aos="fade-in">
<h2><span class="violet">using</span>
<span class="yellow">Coffee</span>;
</h2>
<h2><span class="violet">using</span>
<span class="yellow">Creativity</span>;
</h2>
<h2><span class="violet">using</span>
<span class="yellow">UnityEngine</span>;
</h2>
<h2>
<br>
<h2><span class="violet">public class</span>
<span class="yellow">Vlad_Hryhorashchenko</span> :
<span class="violet">GameDeveloper</span> </h2>
<h2>
<br>
{
<h2><span class="violet tab">public </span>
<span class="yellow">PersonalTraits</span>
<span class="blue">PersonalTraits</span>;
</h2>
<h2>
<h2><span class="violet tab">public </span>
<span class="yellow">Experience</span>
<span class="blue">Experience</span>;
</h2>
<h2>
<br>
<span class="violet tab">public override </span>
<span class="yellow">Code</span>
<span class="orange">Work</span>()
<h2 class="tab">{</h2>
</h2>
<h2> <span class="violet doubletab">return </span><span class="orange">WorkAs</span>(<span class="typed green"
data-typed-items='"Game Developer", "Unity developer", "Mobile GameDev", "3d developer"'></span>, <span
class="blue">PersonalTraits</span>);
</h2>
<h2 class="tab">}</h2>
<h2>}</h2>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="section-title">
<h2>/* ------------------------------------- </h2>
<h2>About</h2>
<h2>---------------------------------------- */</h2>
</div>
<div class="row">
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>
<pre><code class="c#">string Title = "Unity game developer";</code></pre>
</h3>
<h3 style="height: 55px;">
<pre><code class="c#">
[Serializable]
struct PersonalTraits
{
</code></pre>
</h3>
<div class="tab">
<h3>
<pre><code>
string FullName = "Vladyslav Hryhorashchenko";
string Email = "[email protected]";
string Location = "Toronto, Canada";
string[] Spoken_Languages = {"English", "Japanese", "Russian", "Ukrainian"};
string[] Hobbies = {"Piano", "Guitar", "Composing Music" "Learning Languages"};
</code></pre>
</h3>
</div>
<h3>
<pre><code>}</code></pre>
</h3>
<br>
<h3>
<span class="yellow">About myself</span>
</h3>
<p>Senior Game Developer with 4+ years of experience in game development and 3d industry.
Led teams up to <strong class="violet">12</strong> people.
Worked on <strong class="red">AAA</strong> titles and delivered to millions of people across different platforms both <strong class="green">mobile, console and desktop</strong>.
Skilled in С#, Unity, Linux, and Python.
Actively participate in industry-related events such as game jams and conferences to keep up with the market.
Looking for opportunities to further improve my expertise.</p>
</div>
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/me_cropped.webp" class="img-fluid" alt="">
<br></br>
<img src="assets/img/Me_Ubi_edited.webp" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Facts Section ======= -->
<section id="facts" class="facts">
<div class="container">
<div class="section-title">
<h2>/* ------------------------------------- </h2>
<h2>Achievements</h2> <i class="icofont-medal"></i>
<h2>---------------------------------------- */</h2>
</div>
<div class="row">
<div class="col-lg-7 pt-4 pt-lg-0 content" data-aos="fade-right">
<div class="container">
<h1> <span class="green">Global Game Jam 2022</span> </h1>
<h3> <span class="yellow"><b>Prize:</b></span> <strong class="blue">Best commercial product and Best game feel award</strong>.</h3>
<h4><b>Chill city</b> - 3d idle clicker game.</h4>
<p>This idle clicker game has won hearts of jury as the most playable and the most commercially capable game.
It was developed in a span of two weeks just by me. Soundtrack and SFX were composed by me.
</p>
</div>
</div>
<div class="col-lg-5 pt-4 pt-lg-0 content" data-aos="fade-left">
<div class="container">
<img src="assets/img/portfolio/ChillCity.png" class="img-fluid rounded" alt="Image of a 3d game where you can
see buildings and title chill city">
</div>
</div>
</div>
<div class="row">
<div class="col-lg-7 pt-4 pt-lg-0 content" data-aos="fade-right">
<div class="container">
<h1> <span class="green">Ubisoft GameJam 2020</span> </h1>
<h3> <span class="yellow"><b>Prize:</b></span> <strong class="blue">People's favorite</strong>.</h3>
<h4><b>Keep chopping</b> - 3d Local-Multiplayer party game.</h4>
<p>I've competed with the most talented programmers and game designers in the industry, and gained
a lot of experience working with the team of professionals. </p>
</div>
</div>
<div class="col-lg-5 pt-4 pt-lg-0 content" data-aos="fade-left">
<div class="container">
<img src="assets/img/portfolio/keepchopping.webp" class="img-fluid rounded" alt="Image of a 3d game where you can see trees and
lumberjacks who are planting and chopping each others trees">
</div>
<div class="container">
<img src="assets/img/ubigamejam_price.webp" class="img-fluid rounded" alt="Image of Price for Ubisoft GameJam.
It says People's choice on it.">
</div>
</div>
</div>
<div class="row">
<div class="col-lg-7 pt-4 pt-lg-0 content" data-aos="fade-right">
<div class="container">
<h1> <span class="green">Global Game Jam 2021 Ukraine</span> </h1>
<h3> <span class="yellow"><b>Prize:</b></span> <strong class="blue">8th place</strong>.</h3>
<h4><b>The white trail</b> - 2d point and click detective game.</h4>
<p>I've gathered team of 11 people and been managing the team and doing programming meanwhile. It was a
very fun experience! </p>
</div>
</div>
<div class="col-lg-5 pt-4 pt-lg-0 content" data-aos="fade-left">
<div class="container">
<img src="assets/img/portfolio/TheWhiteTrail.webp" class="img-fluid rounded"
alt="Image of a 2d detective game in noir style">
</div>
<div class="container">
<img src="assets/img/GlobalGameJam2021.webp" class="img-fluid rounded" alt="Image of Price for Global Game Jam.
It says People's choice on it.">
</div>
</div>
</div>
</div>
</section><!-- End Facts Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg">
<div class="container">
<div class="section-title">
<h2>/* ------------------------------------- </h2>
<h2>Skills</h2>
<h2>---------------------------------------- */</h2>
</div>
<div class="row skills-content">
<div class="col-lg-6" data-aos="fade-up">
<i class="icofont-code"></i>
<h4>General:</h4>
<ul>
<li>C#</li>
<li>Unity 3D</li>
<li>Git</li>
<li>iOS, Android, WebGL, Windows, Mac, Linux</li>
<li>Unit Tests</li>
<li>JSON, REST API</li>
<li>XCode, Android studio</li>
<li>Google play market and Apple store publishing</li>
<li>Multithreading</li>
<li>Python</li>
<li>HTML, CSS, JS</li>
<li>SQL, NoSQL Databases</li>
</ul>
</div>
<div class="col-lg-6" data-aos="fade-up">
<i class="icofont-cube"></i>
<h4>Unity:</h4>
<ul>
<li>Unity lifecycle</li>
<li>Rendering pipeline</li>
<li>Scriptable object</li>
<li>Unity tools: Ads, iAP, Social API, Analytics, Collaborate, Cloud Build, Cloud Diagnostics</li>
<li>Euler angles, Gimbal lock</li>
<li>Asset bundles and addressables</li>
<li>Unity UI</li>
</ul>
</div>
<div class="col-lg-6" data-aos="fade-up">
<i class="icofont-court"></i>
<h4>Architecture:</h4>
<ul>
<li>SOLID, OOP, KISS</li>
<li>Singleton and it's cons</li>
<li>Factory, Finite state machine, MVC, Observer</li>
<li>Strategy, Service locator, Toolbox, Humble objects</li>
</ul>
</div>
<div class="col-lg-6" data-aos="fade-up">
<i class="icofont-dashboard-web"></i>
<h4>SDKs and Assets:</h4>
<ul>
<li>DOTween</li>
<li>Spine and 2D animation integrations</li>
<li>Admob, Audience Network, Unity Ads, Appodeal, Applovin, Vungle, IronSource</li>
<li>Unity Analytics, Facebook, Firebase Analytics, GameAnalytics, Adjust</li>
<li>Facebook SDK, Google Play Services SDK</li>
<li>Firebase SDK</li>
<li>Photon SDK</li>
<li>Cinemachine</li>
</ul>
</div>
</div>
<!-- <div class="row skills-content">
<div class="col-lg-6" data-aos="fade-up">
<div class="progress">
<span class="skill">C# <i class="val">2+ year</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">C++ <i class="val">6 months</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Python <i class="val">1+ year</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">HTML and CSS <i class="val">3 years</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<div class="progress">
<span class="skill">Unity3D <i class="val">4+ years</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Git <i class="val">1.5 year</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Performance optimization <i class="val">1 year+</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Unit testing and test-driven development <i class="val">1 year+</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
</div> -->
</div>
</section><!-- End Skills Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container">
<div class="section-title">
<h2>/* ------------------------------------- </h2>
<h2>Resume</h2>
<h2>---------------------------------------- */</h2>
<p>Overview of my life path that I took to get here.</p>
</div>
<div class="row">
<div class="col-lg-6" data-aos="fade-up">
<h3 class="resume-title">Certification</h3>
<div class="resume-item">
<div class="row">
<div class="col-lg-9">
<h4>Introduction to Game Development</h4>
<p><em>HarvardX</em></p>
<p>CS50's Introduction to Game Development
HarvardX. Included 12 test projects.</p>
</div>
<div class="col-lg-3"><img src="assets/img/icons/harvard.png" class="img-fluid" alt=""></div>
</div>
</div>
<div class="resume-item">
<div class="row">
<div class="col-lg-9">
<h4>Introduction to Computer Science</h4>
<p><em>HarvardX</em></p>
<p>CS5O's introduction to Computer Science
HarvardX. Included 9 problems and one final project.</p>
</div>
<div class="col-lg-3"><img src="assets/img/icons/harvard.png" class="img-fluid" alt=""></div>
</div>
</div>
<div class="resume-item">
<div class="row">
<div class="col-lg-9">
<h4>C2 English Certificate</h4>
<p><em>EF SET</em></p>
<p>The achieved English level is 80/100 on the EF SET score scale and
<strong class="blue">C2 Proficient</strong> according to the Common European Framework of Reference
(CEFR).
<a href="https://www.efset.org/cert/nsTDnQ"><b>Link to certificate.</b></a>
</p>
</div>
<div class="col-lg-3"><img src="assets/img/icons/efset-logo_black.png" class="img-fluid" alt=""></div>
</div>
</div>
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<div class="row">
<div class="col-lg-9">
<h4>Bachelor of Computer Science</h4>
<h5>2019 - 2022</h5>
<p><em>National Academy of Telecommunications</em></p>
<p>BS Degree in Computer Science. All classes were taught in <strong class="red">English</strong>
only.</p>
</div>
<div class="col-lg-3"><img src="assets/img/icons/onaz2.png" class="img-fluid" alt=""></div>
</div>
</div>
<div class="resume-item">
<div class="row">
<div class="col-lg-9">
<h4>Marine Engineering Associate Degree</h4>
<h5>2015 - 2019</h5>
<p><em>Maritime College of Technical Fleet</em></p>
<p>Associate degree in Marine Engineering. Something I'm really proud of.</p>
</div>
<div class="col-lg-3"><img src="assets/img/icons/maritimecollege.svg" class="img-fluid" alt=""></div>
</div>
</div>
<div style="text-align: center; ">
<div class="col-lg-3" data-iframe-width="250" data-iframe-height="270"
data-share-badge-id="5652425b-c8af-4841-960c-7ed6ce3aa9fb"
data-share-badge-host="https://www.credly.com"></div>
<script type="text/javascript" async src="//cdn.credly.com/assets/utilities/embed.js"></script>
</div>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item">
<div class="row">
<div class="col-lg-9">
<h4>Software Engineer III</h4>
<h5>July 2022 - Present</h5>
<p><em>Meta</em></p>
<ul>
<li>-- NDA --</li>
<li>-- NDA --</li>
<li>-- NDA --</li>
</ul>
</div>
<div class="col-lg-3"><img src="assets/img/icons/meta.png" class="img-fluid" alt=""></div>
</div>
</div>
<div class="resume-item">
<div class="row">
<div class="col-lg-9">
<h4>Senior Unity Developer</h4>
<h5>8 months</h5>
<p><em>IKEA</em></p>
<ul>
<li>Adopted an atypical AR legacy project and rebuilt it from scratch to a top shape, accelerated and optimized solution to work x10 times faster while delivering the result in the shortest time to more than 1 million people around the globe.</li>
<li>Analyzed and Researched 3d real-time areas and prototyped a pipeline for significant size and quality improvement.</li>
<li>Standardized and optimized some of the development workflows.</li>
</ul>
</div>
<div class="col-lg-3"><img src="assets/img/icons/Ikea-logo.png" class="img-fluid" alt=""></div>
</div>
</div>
<div class="resume-item">
<div class="row">
<div class="col-lg-9">
<h4>Unity Developer</h4>
<h5>5 months</h5>
<p><em>Red Rift, Inc</em></p>
<ul>
<li>Built and designed reusable and scalable solutions using ASP.NET and SQL database for backend of mid-core projects.</li>
<li>Maintained and improved legacy code on live projects.</li>
<li>Established and coordinated efficient QA workflow.</li>
</ul>
</div>
<div class="col-lg-3"><img src="assets/img/icons/redRift.png" class="img-fluid" alt=""></div>
</div>
</div>
<div class="resume-item">
<div class="row">
<div class="col-lg-9">
<h4>Unity Developer</h4>
<h5>1 year</h5>
<p><em>Arrible</em></p>
<ul>
<li>Designed and developed efficient architecture leading to scalability of the project resulting in more than 50,000 downloads on mobile platforms.</li>
<li>Formed and devised training courses for junior developers.</li>
<li>Worked on full cycle development from start to release delivering in tight scheduling.</li>
<li>Designed and managed game design decisions that led to the improvement of user retention rates.</li>
<li>Conducted technical interviews.</li>
</ul>
</div>
<div class="col-lg-3"><img src="assets/img/icons/arriblecompany.png" class="img-fluid" alt=""></div>
</div>
</div>
<div class="resume-item">
<div class="row">
<div class="col-lg-9">
<h4>Quality Assurance Engineer</h4>
<h5>9 months</h5>
<p><em>Ubisoft</em></p>
<ul>
<li>Developed solutions for automating the testing processes.</li>
<li>Created test cases for advanced testing of in-game features.</li>
<li>Generated efficient workflows for faster bug tracking and issues resolution.</li>
<li>Cross-platform testing including consoles (Xbox, PS4, and PS5), working with dev kits and grey boxes.</li>
</ul>
</div>
<div class="col-lg-3"><img src="assets/img/icons/ubisoft.png" class="img-fluid" alt=""></div>
</div>
</div>
<div class="resume-item">
<div class="row">
<div class="col-lg-9">
<h4>Freelance Unity developer</h4>
<h5>1 year</h5>
<p><em></em></p>
<ul>
<li>Engineered and designed custom solutions for various game genres including hyper-casual mobile games,
platformers, rogue-likes, etc</li>
<li>Consulted on solving different programming and unity related tasks of different complexity.</li>
<li>Released and launched projects on Apple App Store and Google Play Store.</li>
</ul>
</div>
<div class="col-lg-3"><img src="assets/img/icons/freelance.png" class="img-fluid" alt=""></div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Resume Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>/* ------------------------------------- </h2>
<h2>Portfolio</h2>
<h2>---------------------------------------- */</h2>
<p>Overview of my latest games</p>
</div>
<div class="row" data-aos="fade-up">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-hyper">Hyper-Casual</li>
<li data-filter=".filter-retro">Retro</li>
</ul>
</div>
</div>
<div class="portfolio-container" data-aos="fade-up" data-aos-delay="100">
<div class="row">
<div class="col-lg-4 col-md-6 portfolio-item filter-hyper">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="/assets/img/portfolio/nda.webp" data-gall="portfolioGallery" class="venobox"
title="NDA"><i class='bx bx-search-alt'></i></a>
</div>
<img src="/assets/img/portfolio/nda.webp" class="img-fluid mobile-gif" alt="">
<video width="340" poster="/assets/img/portfolio/nda.webp" preload="auto" autoplay loop
src="/assets/gifs/nda.webp" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3><strong class="blue">NDA</strong></h3>
<h5>R&D 3D</h5>
<p>
Analyzed and Researched 3d real-time areas and prototyped a pipeline for significant size and quality improvement.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 portfolio-item filter-hyper">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="/assets/img/portfolio/nda.webp" data-gall="portfolioGallery" class="venobox"
title="NDA"><i class='bx bx-search-alt'></i></a>
</div>
<img src="/assets/img/portfolio/nda.webp" class="img-fluid mobile-gif" alt="">
<video width="340" poster="/assets/img/portfolio/nda.webp" preload="auto" autoplay loop
src="/assets/gifs/nda.webp" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3><strong class="blue">NDA</strong></h3>
<h5>R&D AR Project</h5>
<p>
Worked as a <strong class="violet">Lead Developer</strong> and <strong class="blue">architect</strong>. Adopted an atypical AR legacy project and rebuilt it from scratch to a top shape,
accelerated and optimized solution to work x10 times faster while delivering the result in the
shortest time to more than 1 million people around the globe.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 portfolio-item filter-hyper">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="/assets/img/portfolio/puzzleRoyal.jpeg" data-gall="portfolioGallery" class="venobox"
title="Puzzle Royal"><i class='bx bx-search-alt'></i></a>
<a href="https://puzzleroyale.io/"
target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
<img src="/assets/img/portfolio/puzzleRoyal.jpeg" class="img-fluid mobile-gif" alt="">
<video width="340" poster="/assets/img/portfolio/puzzleRoyal.jpeg" preload="auto" autoplay loop
src="" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3>Puzzle Royal</h3>
<h5>NFT Match3</h5>
<p>
Worked as a <strong class="violet">Lead Developer</strong> and <strong class="blue">architect</strong>. In this Match 3 game, you'll earn rewards to summon new heroes in your fight to claim the throne.Prove your might on the battlefield by putting together the most strategic teams and making the best matching decisions possible!
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 portfolio-item filter-hyper">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="/assets/img/portfolio/ChillCity.png" data-gall="portfolioGallery" class="venobox"
title="Berserk"><i class='bx bx-search-alt'></i></a>
<a href="https://nek0pi.itch.io/chill-city"
target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
<img src="/assets/img/portfolio/ChillCity.png" class="img-fluid mobile-gif" alt="">
<video width="340" poster="/assets/img/portfolio/ChillCity.png" preload="auto" autoplay loop
src="https://youtu.be/RpgX9UA72Qw" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3>Chill city</h3>
<h5>3d Idle clicker</h5>
<p>
Worked as a <strong class="red">Sole Developer</strong>. Idle game that helps you relax and build your chill city. Keep balance between resources to progress and build beautiful minimalistic city.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 portfolio-item filter-hyper">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="/assets/img/portfolio/breakpoint.jpeg" data-gall="portfolioGallery" class="venobox"
title="Ghost Recon Breakpoint"><i class='bx bx-search-alt'></i></a>
<a href="https://www.ubisoft.com/en-ca/game/ghost-recon/breakpoint"
target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
<img src="/assets/img/portfolio/breakpoint.jpeg" class="img-fluid mobile-gif" alt="">
<video width="340" poster="/assets/img/portfolio/breakpoint.jpeg" preload="auto" autoplay loop
src="" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3>Ghost Recon Breakpoint</h3>
<h5>Online tactical shooter </h5>
<p>
Tom Clancy's Ghost Recon Breakpoint is an online-only tactical shooter video game.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 portfolio-item filter-hyper">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="/assets/img/portfolio/hyperscape.jpeg" data-gall="portfolioGallery" class="venobox"
title="Hyperscape"><i class='bx bx-search-alt'></i></a>
<a href="https://youtu.be/w5zZb5Cfcq8"
target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
<img src="/assets/img/portfolio/hyperscape.jpeg" class="img-fluid mobile-gif" alt="">
<video width="340" poster="/assets/img/portfolio/hyperscape.jpeg" preload="auto" autoplay loop
src="" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3>Hyperscape</h3>
<h5>First-person shooter battle royale </h5>
<p>
The game's main mode shares elements with other battle royale games, where up to 100 players are dropped on to a map that slowly shrinks over time with players seeking to eliminate the competition.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 portfolio-item filter-hyper">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="/assets/img/portfolio/BerserkVulcan.webp" data-gall="portfolioGallery" class="venobox"
title="Berserk"><i class='bx bx-search-alt'></i></a>
<a href="https://appadvice.com/app/berserk-ccg-tcg-game/1566367597image.png"
target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
<img src="/assets/img/portfolio/BerserkVulcan.webp" class="img-fluid mobile-gif" alt="">
<video width="340" poster="/assets/img/portfolio/BerserkVulcan.webp" preload="auto" autoplay loop
src="https://youtu.be/RpgX9UA72Qw" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3>Berserk</h3>
<h5>Collectible card game</h5>
<p>
Big game project that has NFT etc.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-hyper">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="/assets/img/portfolio/contrary.webp" data-gall="portfolioGallery" class="venobox"
title="Afterlife"><i class='bx bx-search-alt'></i></a>
<a href="https://play.google.com/store/apps/details?id=com.Moonee.Matchmania3d&hl=en&gl=US"
target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
<img src="/assets/img/portfolio/contrary.webp" class="img-fluid mobile-gif" alt="">
<video width="340" poster="/assets/img/portfolio/contrary.webp" preload="auto" autoplay loop
src="/assets/img/portfolio/contrary.webp" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3>Contrary</h3>
<h5>2D adventure platformer</h5>
<p>
Adventure game where you have to fight common psychological issues and their personifications.
Made on <strong class="orange">Ludum Dare 49.</strong>
Organized and developed along a team of <strong class="red">7 people</strong>.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-hyper">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="/assets/img/portfolio/nda.webp" data-gall="portfolioGallery" class="venobox"
title="Afterlife"><i class='bx bx-search-alt'></i></a>
</div>
<img src="/assets/img/portfolio/nda.webp" class="img-fluid mobile-gif" alt="">
<video width="340" poster="/assets/img/portfolio/nda.webp" preload="auto" autoplay loop
src="/assets/gifs/nda.webp" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3><strong class="blue">NDA</strong></h3>
<h5>2D Fighter</h5>
<p>
<strong class="violet">Mid-core</strong> mobile fighter on which I've worked and delivered the project
till release
on mobile platforms (<strong class="green">Android</strong>, <strong class="blue">iOS</strong>).
It included working with Spine, remote configs and custom server logic.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 portfolio-item filter-hyper">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="/assets/img/portfolio/matchmania3d.webp" data-gall="portfolioGallery" class="venobox"
title="Afterlife"><i class='bx bx-search-alt'></i></a>
<a href="https://play.google.com/store/apps/details?id=com.Moonee.Matchmania3d&hl=en&gl=US"
target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
<img src="/assets/img/portfolio/matchmania3d.webp" class="img-fluid mobile-gif" alt="">
<video width="340" poster="/assets/img/portfolio/matchmania3d.webp" preload="auto" autoplay loop
src="/assets/gifs/matchmania3d.webp" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3>Matchmania 3D </h3>
<h5>3D Hyper-Casual</h5>
<p>
Fun matching 3D puzzle game with more than <strong class="violet">50,000+</strong> installs on
<strong class="green">Play Market</strong> and even more on <strong class="blue"> iOS</strong> app
store.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="/assets/img/portfolio/afterlife.webp" data-gall="portfolioGallery" class="venobox"
title="Afterlife"><i class='bx bx-search-alt'></i></a>
<a href="https://ldjam.com/events/ludum-dare/48/afterlife" target="_blank" title="More Details"><i
class="bx bx-link"></i></a>
</div>
<img src="/assets/img/portfolio/afterlife.webp" class="img-fluid mobile-gif" alt="">
<video width="340" poster="/assets/img/portfolio/afterlife.webp" preload="auto" autoplay loop
src="/assets/gifs/afterlife.webm" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3>Afterlife </h3>
<h5>Roguelike</h5>
<p>
Roguelike vertically scrolling shooter that was developer in <strong class="green">72 hours</strong>
for
<strong class="orange">Ludum Dare 48</strong>.
Organized and developed along with a team of <strong class="red">9 people</strong> including artists,
game designers, musicians, and programmers.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-hyper">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="assets/img/portfolio/BlockPuzzleGameplay.webp" data-gall="portfolioGallery" class="venobox"
title="Block puzzle Saga"><i class='bx bx-search-alt'></i></a>
<a href="https://apps.apple.com/us/app/block-puzzle-hidden-pic/id1557202867" target="_blank"
title="More Details"><i class="bx bx-link"></i></a>
</div>
<img src="assets/img/portfolio/BlockPuzzleAppstore.webp" class="img-fluid mobile-gif" alt="">
<video width="340" poster="assets/img/portfolio/BlockPuzzleAppstore.webp" preload="auto" autoplay loop
src="/assets/img/portfolio/BlockPuzzleGameplay.webp" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3>Block Puzzle Saga </h3>
<h5>Hyper-Casual</h5>
<p>
Combination of two classic
gameplays: Sudoku and Block Puzzle. Solve the puzzle to reveal the pic.
I've worked as <strong class="violet">single developer</strong>. Managed to deliver the game in
<strong class="red">6 weeks</strong>. Released on both <strong class="green">Android</strong> and
<strong class="blue">iOS</strong>.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="assets/img/portfolio/lok_rebirth.webp" data-gall="portfolioGallery" class="venobox"
title="LOK:Rebirth"><i class='bx bx-search-alt'></i></a>
<a href="https://www.patreon.com/kuja" target="_blank" title="More Details"><i
class="bx bx-link"></i></a>
</div>
<img src="assets/img/portfolio/lok_rebirth.webp" class="img-fluid mobile-gif" alt="">
<video width="340" poster="assets/img/portfolio/lok_rebirth.webp" preload="auto" autoplay loop
src="/assets/img/portfolio/lok_rebirth.webp" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3>LOK:Rebirth </h3>
<h5>2D Adult action</h5>
<p>
High quality adult game in which you play as a young female lieutenant, fighter pilot of the
Federation.
This is an <strong class="red">adult 18+</strong> game. I've worked there as a <strong
class="violet">technical artist</strong>.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="assets/img/portfolio/znayNashihScreenshot.webp" data-gall="portfolioGallery" class="venobox"
title="Znay Nashih"><i class='bx bx-search-alt'></i></a>
<a href="https://play.google.com/store/apps/details?id=com.Andersen.KnowOur" target="_blank"
title="More Details"><i class="bx bx-link"></i></a>
</div>
<img src="assets/img/portfolio/znayNashih.webp" class="img-fluid mobile-gif" alt="">
<video width="340" poster="assets/img/portfolio/znayNashih.webp" preload="auto" autoplay loop
src="/assets/img/portfolio/znayNashih.webp" class="img-fluid gif" alt="">
</div>
<div class="portfolio-description">
<h3>Znay Nashih</h3>
<h5>Educational</h5>
<p>Educational project oriented on kids about great Ukrainian historical figures.
Was doing both developing and game design work for the game.
Released on both <strong class="green">Android</strong> and <strong class="blue">iOS</strong>.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<div class="portfolio-links">
<a href="assets/img/portfolio/TheWhiteTrail.webp" data-gall="portfolioGallery" class="venobox"
title="The white trail"><i class='bx bx-search-alt'></i></a>
<a href="https://globalgamejam.org/2021/games/white-trail-4" target="_blank" title="More Details"><i
class="bx bx-link"></i></a>