-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (132 loc) · 6.68 KB
/
Copy pathindex.html
File metadata and controls
143 lines (132 loc) · 6.68 KB
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
<!DOCTYPE html>
<html lang="en">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<script src="js/components.js" type="module"></script>
<script src="js/index.js" type="module"></script>
<link rel="stylesheet" href="home.css">
<link rel="icon" href="/favicon.ico">
<meta charset="UTF-8">
<title>home</title>
</head>
<!-- body-loading hides the whole page so js code can do all initial setup, this avoid size glitches -->
<body class="main-body body-loading">
<header id="header">
</header>
<main>
<div id="main-top-container" class="main-top-container">
</div>
<div class="info-container">
<div class="info-block">
<img class="round-image-box" src="res/welcome.png" width="512" height="512">
<div class="info-block-right">
<h2 class="title-label">Welcome to My Homepage!</h2>
<p class="paragraph-text">
I'm Aleksander Samarin, a C++ video game software developer with over 5 years of professional
experience. While my primary focus is game development, I'm also interested in other areas of
software development. I've worked on a wide range of projects, from mobile games to AAA titles.
During my career, I've used Unreal Engine, Unity, Godot, and custom proprietary engines.
Beyond game development, I'm interested in programming in general and have experience with C#
and developing CRUD applications.
I also built this website using HTML, CSS, and JavaScript.
</p>
<p class="paragraph-text">
If you're a recruiter or simply interested in my work, you can find my links below:
</p>
<ul class="paragraph-text">
<li>
<a class="hyper-link" href="https://www.linkedin.com/in/aleksandr-samarin-8b979b252/">
Linked In
</a>
</li>
<li>
<a class="hyper-link" href="https://www.fab.com/sellers/SolarCorp">
Unreal Engine Plugins
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="info-container-alt">
<div class="info-block">
<img class="round-image-box" src="res/work.png" width="512" height="512">
<div class="info-block-right">
<h2 class="title-label">Professional Experience</h2>
<p class="paragraph-text">
During my career, I've worked on many different aspects of game development. I've developed
user interfaces, implemented gameplay systems, created tools for game designers, worked on
animation systems, material systems, and extended game engines to better suit project
requirements.
</p>
<p class="paragraph-text">
Projects I worked on:
</p>
<ul class="paragraph-text">
<li>Mortal Kombat Mobile</li>
<li>FIFA 23</li>
<li>Merge Tale</li>
</ul>
<p class="paragraph-text">
You can find more detailed information on the
<a class="hyper-link" href="work-experience.html">Work Expirience</a>
page
</p>
</div>
</div>
</div>
<div class="info-container">
<div class="info-block">
<img class="round-image-box" src="res/released-projects.png" width="512" height="512">
<div class="info-block-right">
<h2 class="title-label">Released Projects</h2>
<p class="paragraph-text">
I enjoy learning new technologies by building projects. Occasionally, these projects result in
tools or applications that may be useful to others, so I make them publicly available.
</p>
<p class="paragraph-text">
There are those categories:
</p>
<ul class="paragraph-text">
<li>Unreal Engine Plugins</li>
<li>Released Games</li>
</ul>
<p class="paragraph-text">
You can find more detailed information on the
<a class="hyper-link" href="products.html">Released Projects</a> page
</p>
</div>
</div>
</div>
<div class="info-container-alt">
<div class="info-block">
<img class="round-image-box" src="res/projects.png" width="512" height="512">
<div class="info-block-right">
<h2 class="title-label">Personal Projects</h2>
<p class="paragraph-text">
I have a collection of personal projects. These projects are usually focused on a specific
feature or an experiment involving a concept that interests me. Sometimes they are simply
programming challenges that I set for myself. From time to time, I just like building things
from scratch.
</p>
<p class="paragraph-text">
Projects can be roughly divided into the following categories:
</p>
<ul class="paragraph-text">
<li>Projects built with my own game engine</li>
<li>GUI applications</li>
<li>Game jam projects and small finished games</li>
<li>Non-game software projects, such as web development</li>
</ul>
<p class="paragraph-text">
Read more on the
<a class="hyper-link" href="projects.html">Projects</a> page
</p>
</div>
</div>
</div>
</main>
<footer id="footer">
</footer>
</body>
</html>