-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (130 loc) · 4.42 KB
/
index.html
File metadata and controls
140 lines (130 loc) · 4.42 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
<!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" />
<link rel="stylesheet" type="text/css" href="./css/main.css" />
<link
rel="icon"
type="image/png"
href="./favicon-32x32.png"
sizes="32x32"
/>
</head>
<body class="HolyGrail">
<div class="header">
<h1>Alexis Pesicka</h1>
<div class="rows">
<small>Computer Scientist / Visual Artist</small>
<small> Hampshire, UK</small>
</div>
</div>
<div id="center-wrapper" class="center">
<div class="box content">
<div id="about" class="section">
<button class="fold">About me</button>
<div class="panel">
<small>Computer Scientist by day, starving artist by night</small>
<hr />
<p>
Graduated from University of Victoria in 2017. Spending time
learning more programming languages and finding balance between
work and creativity.
</p>
<div>
<h3>Creative Outlets</h3>
I have explored my creativity in many ways:
<ul>
<li>
Painting on stretched canvases to painting warhammer
miniatures.
</li>
<li>Playing with 3d printers</li>
<li>Video Games</li>
<li>Collaborative writing</li>
</ul>
</div>
</div>
</div>
<div id="endorsements" class="section">
<div class="education">
<button class="fold active">Education</button>
<div class="panel rows">
<span>University of Victoria</span>
<span></span>Bachelor of Science: Combined Major in Computer Science and Visual
Arts</span>
<span>Attended: September 2013 to November 2017</span>
</div>
</div>
<div class="work">
<button class="fold active">Work Experience</button>
<div class="panel">
<ul>
<li>Kinde Frontend Developer (July 2025 - Present)</li>
<li>Lavanda Frontend Developer (January 2023 - June 2025)</li>
<li>RealWear Frontend Developer (June 2022 - December 2022)</li>
<li>SimplyVideo Frontend Developer (July 2021 - March 2022)</li>
<li>Bandcamp Engineer (June 2018 - June 2021)</li>
<li>
UVic Digital Scholarship Commons: Digital Design Intern
(October 2017 - March 2018)
</li>
</ul>
</div>
</div>
<div class="skills">
<button class="fold">Skillset</button>
<div class="panel">
<div>
<h3>Frontend</h3>
<ul class="columns">
<li>HTML</li>
<li>Typescript</li>
<li>CSS & SCSS</li>
<li>Vue</li>
<li>Angular 18+</li>
<li>React</li>
<li>JavaScript</li>
<li>Knockout</li>
<li>Tailwind</li>
</ul>
</div>
<div>
<h3>Backend</h3>
<ul class="columns">
<li>Ruby</li>
<li>Node.js</li>
<li>Python</li>
</ul>
</div>
<div>
<h3>Testing</h3>
<ul class="columns">
<li>Jest</li>
<li>Cypress</li>
<li>Karma</li>
<li>Jasmine</li>
<li>Liquid</li>
</ul>
</div>
<div>
<h3>Other Skills and Technologies</h3>
<ul class="columns">
<li>MySQL</li>
<li>GraphQL</li>
<li>Grafana</li>
<li>Figma</li>
<li>Miro</li>
<li>Software and Design Architectures</li>
<li>Teamwork and Self-Directed Learning</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="./js/fold.js"></script>
</body>
</html>