-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
517 lines (490 loc) · 20.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Google Fots -->
<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=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<!-- Remixicon Icon -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<!-- Remixicon Icon -->
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<!-- Main CSS -->
<link href="assets/css/main.css" rel="stylesheet" />
<title>Daniel Ustimenko</title>
</head>
<body>
<!-- header -->
<header class="ds-header" id="site-header">
<div class="container">
<div class="ds-header-inner">
<!-- logo -->
<a href="index.html" class="ds-logo">
<span>D</span>Daniel Ustimenko
</a>
<!-- logo -->
<!-- social -->
<ul class="ds-social">
<li>
<a href="https://github.com/skycader" target="_blank"><i class="ri-github-fill"></i></a>
</li>
<li>
<a href="https://instagram.com/mrriseyt" target="_blank"
><i class="ri-instagram-line"></i
></a>
</li>
<li>
<a href="https://t.me/skycader" target="_blank"><i class="ri-telegram-fill"></i></a>
</li>
</ul>
<!-- social -->
</div>
</div>
</header>
<!-- header -->
<!-- banner -->
<div class="ds-banner">
<div class="container">
<div class="row">
<div class="col-12 col-sm-12 col-md-5 col-lg-5 col-xl-5 col-xxl-5">
<figure>
<img class="avatar" src="assets/images/avatar.jpg" />
</figure>
</div>
<div class="col-12 col-sm-12 col-md-7 col-lg-7 col-xl-7 col-xxl-7">
<section>
<h1>
<span>HI THERE</span>
I’m Daniel <br />
<!-- UI/UX DESIGNER + -->
<!--<p class="blue">REACT</p>AND-->
<p class="red">ANGULAR</p>
DEVELOPER based in Saint-Petersburg.
</h1>
<ul class="ds-numbervalulist">
<li>
<strong>2+</strong>
<span>Experience</span>
</li>
<li>
<strong>3</strong>
<span>Pet projects</span>
</li>
<li>
<strong>12</strong>
<span>Happy Clients</span>
</li>
</ul>
</section>
</div>
</div>
</div>
</div>
<!-- banner -->
<!-- about -->
<div class="ds-about-section">
<div class="container">
<section>
<h2 class="ds-heading">About Me</h2>
<p>
Since early childhood I've been interested in creating stuff that
people would find useful. Begining with Pascal I had created a
tic-tac-toe game with a simple AI and a numering system convertor.
Later on I've started to dive into Python, but little did I know how
many amazing things I would discover by unlocking JavaScript. I
didn't know why I learnt it, but as time passed, I created more and
more games, programs and utilities. Java seemed hard to me, instead,
I could run my programs on any computer in the browser.
<br /><br />
My first big program would be the first app to repeat words, I
called it MindNetStorage (MNS). It didn't have any cool GUI, nor
functional, but it was only the begining.
<br /><br />
Later on I created a simple 2D game in Python using py game library.
It looked like Minecraft, where you could make worlds as you wished.
<br /><br />
And a year ago I decided that I do need a great app, beatiful and
functional, yet simple to use - to repeat stuff, as I desired to
begin speaking French, and uncover many more stuff that would need
great memory, which I don't really poses. So I started developing
Memos.
<br /><br />
Within a great period of time Memos has become a beautiful and
powerful app, that does 99% of work for you. All you need to do, is
to add and repeat stuff, such as words and practially any text
information, and visual in upcoming updates.
<br /><br />
Memos is a JavaScript app, so I can build it to use on any platform,
that's the magic of JavaScript. It's using Cordova to run on Android
as the main platform, but can be run on PC using Electron, or even
in your browser.
<br /><br />
Now I'm studying React to build even more powerful web applications,
planning to switch Memos to React Native in a few next months.
<br /><br />
As a developer I also tried some other technologies, as to host my
apps using backend I played with eNginx and Apache which made me
learn Linux and now I use Arch Linux as main system for almost a
year, Node.JS and MySQL.
</p>
<!-- <div class="ds-button-sec text-center">
<a href="#" class="ds-button">Download Resume</a>
</div> -->
</section>
</div>
</div>
<!-- about -->
<!-- Skills -->
<div class="ds-skills-section">
<div class="container">
<div class="row">
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-6 col-xxl-6">
<h2 class="ds-heading">Core Skills</h2>
<ul class="ds-skills-list">
<li>JavaScript</li>
<li>HTML 5</li>
<li>CSS 3</li>
<li>React</li>
<li>Angular</li>
<li>Materealize</li>
<li>Tailwind</li>
<li>Bootstrap</li>
<li>TypeScript</li>
<li>Responsive Web Design</li>
<li>SASS</li>
<li>LESS</li>
<li>Babel</li>
<li>UI/UX</li>
<li>Node.js</li>
<li>Github</li>
<li>Python</li>
</ul>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-6 col-xxl-6">
<h2 class="ds-heading">Other Skills</h2>
<ul class="ds-skills-list">
<li>PWAs</li>
<li>TWAs</li>
<li>Linux</li>
<li>Git</li>
<li>Webpack</li>
<li>Optimization</li>
<li>Algorithms</li>
</ul>
</div>
<div style="height: 30px"></div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-6 col-xxl-6">
<h2 class="ds-heading">Languages</h2>
<ul class="ds-skills-list">
<li>English - C1 Advanced</li>
<li>Russian - Native Speaker</li>
<li>French - B1</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Skills -->
<!-- Work -->
<div class="ds-work-section">
<div class="container">
<h2 class="ds-heading">Latest works</h2>
<div class="ds-work-list-section">
<div class="ds-work-list">
<div class="row">
<div
class="col-12 col-sm-12 col-md-7 col-lg-7 col-xl-7 col-xxl-7"
>
<section>
<h3 class="ds-work-tilte">Memos</h3>
<p>
A powerful and simple app to automize repetitions of words.
<br>Start learning anything easily today.
In Memos you have a real filesystem, where you can
create folders and put files inside. The files
are simply cards with 2 sides, but a Memos card
is different, it can have as many sides as you wish.
<br><br>
You can memorize any type of information
<ul>
<li>Words (original-transcription-translation)</li>
<li>Formulas</li>
<li>Alphabets</li>
<li>Passwords</li>
<li>Phone numbers</li>
<li>Country flags</li>
<li>Many more</li>
</ul>
</p>
<br>
<p>
How does it work?
Memos asks you to repeat (by typing in) information in a 2x period of time.
For example, once repeated successfuly after one day, next repeat will be in 48 hours.
<br><br><br>
Memos is free to use, open source and can be run on any platform.
<br><br>
Available on <a href="https://skycader.github.io/memos">Github pages</a>
</p>
<a href="memos.html" class="ds-button">Details</a>
</section>
</div>
<div
class="col-12 col-sm-12 col-md-5 col-lg-5 col-xl-5 col-xxl-5"
>
<figure><img class="project-1" style="width: 600px" src="assets/images/work-1.jpg" /></figure>
</div>
</div>
</div>
<!--Green Store begin-->
<div class="ds-work-list">
<div class="row">
<div
class="col-12 col-sm-12 col-md-7 col-lg-7 col-xl-7 col-xxl-7"
>
<section>
<h3 class="ds-work-tilte">Green store</h3>
<p>
An example of an e-commerce store with real API built on React.
<br><br>
Sign up to add products to your cart.
</p>
<br><br>
Available on <a href="https://skycader.github.io/green-store-frontend">Github pages</a>
</section>
<a href="https://github.com/Skycader/green-store-frontend" class="ds-button">Details</a><br><br>
</div>
<div
class="col-12 col-sm-12 col-md-5 col-lg-5 col-xl-5 col-xxl-5"
>
<figure><img class="project-1" src="assets/images/greenStore.png" /></figure>
</div>
</div>
</div>
<!--green store end-->
<!-- rzd call center begin -->
<div class="ds-work-list">
<div class="row">
<div
class="col-12 col-sm-12 col-md-7 col-lg-7 col-xl-7 col-xxl-7"
>
<section>
<h3 class="ds-work-tilte">RZD Call Center Angular</h3>
<p>
An example of a mock call center app with a local storage authintication and log stored using two-way list.
<br><br>
Sign up (in) to add to log.
</p>
<br><br>
Available on <a href="https://rzd-call-center.web.app/">Firebase</a>
</section>
<a href="https://github.com/Skycader/rzd-calls-angular" class="ds-button">Details</a><br><br>
</div>
<div
class="col-12 col-sm-12 col-md-5 col-lg-5 col-xl-5 col-xxl-5"
>
<figure><img class="project-1" src="assets/images/rzd-calls.png" /></figure>
</div>
</div>
</div>
<!-- rzd call center end -->
<!--firebase-todo-->
<div class="ds-work-list">
<div class="row">
<div
class="col-12 col-sm-12 col-md-7 col-lg-7 col-xl-7 col-xxl-7"
>
<section>
<h3 class="ds-work-tilte">Todo on Firebase</h3>
<p>
A react app with Firebase API.
<br><br>
All CRUD operations available + file upload.
</p>
<br><br>
Available on <a href="https://todo-online-b2c28.web.app/">Firebase</a>
</section>
<a href="https://github.com/Skycader/firebase-todo" class="ds-button">Details</a><br><br>
</div>
<div
class="col-12 col-sm-12 col-md-5 col-lg-5 col-xl-5 col-xxl-5"
>
<figure><img class="project-1" src="assets/images/firebase-todo.png" /></figure>
</div>
</div>
</div>
<!--firebase-todo end -->
<!--github search begin-->
<div class="ds-work-list">
<div class="row">
<div
class="col-12 col-sm-12 col-md-7 col-lg-7 col-xl-7 col-xxl-7"
>
<section>
<h3 class="ds-work-tilte">GitHub Search</h3>
<p>
An app to search for Github users and watching their stats as well as latest repositories.
<br><br>
Uses Github api.
</p>
<br><br>
Available on <a href="https://skycader.github.io/github-search">Github pages</a>
</section>
<a href="githubSearch.html" class="ds-button">Details</a><br><br>
</div>
<div
class="col-12 col-sm-12 col-md-5 col-lg-5 col-xl-5 col-xxl-5"
>
<figure><img class="project-1" src="assets/images/githubSearch.jpg" /></figure>
</div>
</div>
</div>
<!--github search end-->
<!--Memork begin-->
<div class="ds-work-list">
<div class="row">
<div
class="col-12 col-sm-12 col-md-7 col-lg-7 col-xl-7 col-xxl-7"
>
<section>
<h3 class="ds-work-tilte">Memork</h3>
<p>
A todo list app with clearly specified deadlines.
<br><br>
Add, edit, move and status tasks with 1 click of mouse.
</p>
<br><br>
Available on <a href="https://skycader.github.io/memork">Github pages</a>
</section>
<a href="memork.html" class="ds-button">Details</a><br><br>
</div>
<div
class="col-12 col-sm-12 col-md-5 col-lg-5 col-xl-5 col-xxl-5"
>
<figure><img class="project-1" src="assets/images/work-2.jpg" /></figure>
</div>
</div>
</div>
<!--Memork end-->
<div class="ds-work-list">
<div class="row">
<div
class="col-12 col-sm-12 col-md-7 col-lg-7 col-xl-7 col-xxl-7"
>
<section>
<h3 class="ds-work-tilte">Actoo</h3>
<p>
A pet project to make a game engine for interactive stories.
<br><br>
Write story, make it alive with Actoo.
<br><br>
Wait for Waybook release in 2023.
<br><br>
Available on <a href="https://skycader.github.io/actoo">Github pages</a>
</p>
<a href="actoo.html" class="ds-button">Details</a>
</section>
</div>
<div
class="col-12 col-sm-12 col-md-5 col-lg-5 col-xl-5 col-xxl-5"
>
<figure><img src="assets/images/work-3.jpg" /></figure>
</div>
</div>
</div>
<!--actoo end-->
<div class="ds-work-list">
<div class="row">
<div
class="col-12 col-sm-12 col-md-7 col-lg-7 col-xl-7 col-xxl-7"
>
<section>
<h3 class="ds-work-tilte">Todo app</h3>
<p>
A todo list app made with React.
<br><br>
Add, tick and remove tasks.
</p>
<br><br>
Available on <a href="https://skycader.github.io/react-todo">Github pages</a>
</section>
<a href="reactTodo.html" class="ds-button">Details</a><br><br>
</div>
<div
class="col-12 col-sm-12 col-md-5 col-lg-5 col-xl-5 col-xxl-5"
>
<figure><img class="project-1" style="width: 400px !important; max-width: 200%" src="assets/images/todo.jpg" /></figure>
</div>
</div>
</div>
<!--todo search-->
<div class="ds-work-list">
<div class="row">
<div
class="col-12 col-sm-12 col-md-7 col-lg-7 col-xl-7 col-xxl-7"
>
<section>
<h3 class="ds-work-tilte">Todo app</h3>
<p>
A todo list app made with Angular.
<br><br>
Add, tick and remove tasks.
</p>
<br><br>
Available on <a href="https://skycader.github.io/angular-todo">Github pages</a>
</section>
<a href="https://github.com/Skycader/angular-todo" class="ds-button">Details</a><br><br>
</div>
<div
class="col-12 col-sm-12 col-md-5 col-lg-5 col-xl-5 col-xxl-5"
>
<figure><img class="project-1" style="width: 400px !important; max-width: 200%" src="assets/images/angular-todo.jpg" /></figure>
</div>
</div>
</div>
<!--angular todo end-->
</div>
</div>
</div>
<!-- Work -->
<!-- footer -->
<footer class="ds-footer text-center">
<div class="container">
<section>
<span>Stay in touch</span>
<h4>Ready to talk?</h4>
<p>Feel free to contact me</p>
<a href="mailto:[email protected]" class="ds-button">Lets Talk</a>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
-->
<script src="assets/js/main.js"></script>
</body>
</html>