-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
205 lines (205 loc) · 12.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Victoria Macali</title>
<link rel="icon" type="image/x-icon" href="assets/images/favicon-intials.png" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.15.3/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">Victoria Macali</span>
<span class="d-none d-lg-block"><img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="assets/images/square-pic.png" alt="..." /></span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#experience">Projects</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#education">Education</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#skills">Skills</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#interests">Interests</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#awards">Awards</a></li>
</ul>
</div>
</nav>
<!-- Page Content-->
<div class="container-fluid p-0">
<!-- About-->
<section class="resume-section" id="about">
<div class="resume-section-content">
<h1 class="mb-0">
Victoria
<span class="text-primary">Macali</span>
</h1>
<div class="subheading mb-5">
Los Angeles · California
</div>
<p class="lead mb-5">I am first generation college student finding her way in the world of tech.</p>
<div class="social-icons">
<a class="social-icon" href="https://www.linkedin.com/in/victoria-macali/" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin-in"></i></a>
<a class="social-icon" href="https://github.com/victoriamacali" target="_blank" rel="noopener noreferrer"><i class="fab fa-github"></i></a>
<a class="social-icon" href="mailto:[email protected]"><i class="fas fa-envelope"></i></a>
<a class="social-icon" href="assets/files/victoriamacali-resume.pdf" target="_blank" rel="noopener noreferrer"><i class="fas fa-file"></i></a>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Projects-->
<section class="resume-section" id="experience">
<div class="resume-section-content">
<h2 class="mb-5">Projects</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Air Quality Index Calculator</h3>
<div class="subheading mb-3">Python Program</div>
<p>Determines the Air Quality of different locations based on three
major chemical pollutants. Utilized for loops and multiple if and else statements
to produce each particular calculation this enabled the user to look up different
locations in one single use of the program.</p>
</div>
<div class="flex-shrink-0"><span class="text-primary">September 2019</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Binary Search Tree</h3>
<div class="subheading mb-3">Python Program</div>
<p> Implemented a Binary Search Tree Data Structure using inorder
traversal to set the order of numbers in the tree. Correctly applied the traversal
method when prompted to remove the root node and leaves by user.</p>
</div>
<div class="flex-shrink-0"><span class="text-primary">November 2020</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Battleship Game</h3>
<div class="subheading mb-3">Java Program</div>
<p> Simulates a Battleship inspired game. A 5x5 2D array is
created to randomly assign the ship’s location for each gameplay. Effectively
loops until the user hits the entire target or until the user loses the game.</p>
</div>
<div class="flex-shrink-0"><span class="text-primary">February 2021</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Student Study Clock</h3>
<div class="subheading mb-3">HTML, CSS, Sass Website</div>
<p> Executed both frontend and backend languages as a solo hacker to design a
motivational website to increase study productivity. Promoted the Pomodoro Study Technique
and matched with soothing code-fi music to create a safe and productive enviornment.</p>
<p><a href="https://web.csulb.edu/~026340182/studyclock/" target="_blank" rel="noopener noreferrer">Visit my study space here!</a></p>
<section>
</div>
<div class="flex-shrink-0"><span class="text-primary">April 2021</span></div>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Education-->
<section class="resume-section" id="education">
<div class="resume-section-content">
<h2 class="mb-5">Education</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">California State University, Long Beach</h3>
<div class="subheading mb-3">Bachelor of Science</div>
<div>Computer Science - Cyber Security Minor</div>
<p>GPA: 3.32</p>
</div>
<div class="flex-shrink-0"><span class="text-primary">August 2019 - December 2023</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between">
<div class="flex-grow-1">
<h3 class="mb-0">St.Paul High School</h3>
<div class="subheading mb-3">Scholar Athlete
</div>
<p>GPA: 4.26</p>
</div>
<div class="flex-shrink-0"><span class="text-primary">August 2015 - May 2019</span></div>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Skills-->
<section class="resume-section" id="skills">
<div class="resume-section-content">
<h2 class="mb-5">Skills</h2>
<div class="subheading mb-3">Programming Languages & Tools</div>
<ul class="list-inline dev-icons">
<li class="list-inline-item"><i class="fab fa-python"></i></li>
<li class="list-inline-item"><i class="fab fa-java"></i></li>
<li class="list-inline-item"><i class="fab fa-html5"></i></li>
<li class="list-inline-item"><i class="fab fa-css3-alt"></i></li>
<li class="list-inline-item"><i class="fab fa-js-square"></i></li>
<li class="list-inline-item"><i class="fab fa-sass"></i></li>
</ul>
<div class="subheading mb-3">Workflow</div>
<ul class="fa-ul mb-0">
<li>
<span class="fa-li"><i class="fas fa-check"></i></span>
Mobile-First, Responsive Design
</li>
<li>
<span class="fa-li"><i class="fas fa-check"></i></span>
Cross Browser Testing & Debugging
</li>
<li>
<span class="fa-li"><i class="fas fa-check"></i></span>
Cross Functional Teams
</li>
<li>
<span class="fa-li"><i class="fas fa-check"></i></span>
Agile Development & Scrum
</li>
</ul>
</div>
</section>
<hr class="m-0" />
<!-- Interests-->
<section class="resume-section" id="interests">
<div class="resume-section-content">
<h2 class="mb-5">Interests</h2>
<p>Aside from being a fulltime student, fashion, design and creative crafts fill up my free time. I also run a small jewelry business to provide an affordable way for students to accessorize.</p>
<p class="mb-0">When I'm not daydreaming about code, I love to spend my time at the beach taking in what nature has to offer.</p>
</div>
</section>
<hr class="m-0" />
<!-- Awards-->
<section class="resume-section" id="awards">
<div class="resume-section-content">
<h2 class="mb-5">Awards & Certifications</h2>
<ul class="fa-ul mb-0">
<li>
<span class="fa-li"><i class="fas fa-trophy text-warning"></i></span>
1
<sup>st</sup>
Place - Best BeachHack - Hackathon 2021
</li>
<li>
<span class="fa-li"><i class="fas fa-award text-warning"></i></span>
Web Programming Foundations - Linked In Certificate
</li>
</ul>
</div>
</section>
</div>
<!-- Bootstrap core JS-->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>