-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
134 lines (134 loc) · 7.57 KB
/
resume.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
<!DOCTYPE html>
<html>
<head>
<title>Yasemin's Webpage!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class= "navbar">
<h1 class= "logo">
<a href= "index.html">YaseminAkkaya</a>
</h1>
<ul class= "nav-list">
<li><a href= "index.html">Home</a></li>
<li><a href= "blog.html">Blog</a></li>
<li><a href= "portfolio.html">Portfolio</a></li>
<li><a href= "resume.html">Resume</a></li>
<li><a href= "contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class= "page-title">Resume</h1>
<div class= "resume">
<section class= "section">
<h2 class= "section-title">Education</h2>
<div class= "entry">
<h3 class= "entry-title"> B.S. Computer Science
</h3>
<p class= "entry-info">
<strong>Expected Graduation:</strong> June 2026<br>
<strong>California Polytechnic State University |</strong> San Luis Obispo, CA</p>
</div>
</section>
<section class= "section">
<h2 class= "section-title">Experience</h2>
<div class= "entry">
<h3 class= "entry-title">MalwareBytes, Santa Clara, CA - Front End Development Intern</h3>
<p class= "entry-info">
<ul>
<li>Created map feature displaying cyber-security remote intrusions in Nebula-Retina, a React-based web application</li>
<li>Learned key concepts in threat detection and incident response to support the team in identifying potential security threats</li>
<li>Acquired skills in backlog management, user story creation, and task prioritization, for successful delivery of software features</li>
</ul>
</p>
<p class= "entry-description"></p>
</div>
<div class= "entry">
<h3 class= "entry-title">P.I. Works, Reston, VA - I.T. Intern</h3>
<p class= "entry-info">
<ul>
<li>Worked in I.T. department to optimize business systems and operations by creating various software and automated applications</li>
<li>Created workflows, applications, and reports for the company’s departments using Microsoft power platforms</li>
</ul>
</p>
<p class= "entry-description"></p>
</div>
<div class= "entry">
<h3 class= "entry-title">FizzySoaps, San Ramon, CA - Website Designer</h3>
<p class= "entry-info">
https://fizzysoaps.shop/<br>
<ul>
<li>Increased user checkout (conversion rate) growth rate by 1% each month</li>
</ul>
</p>
<p class= "entry-description"></p>
</div>
<div class= "entry">
<h3 class= "entry-title">The Coder School, San Ramon, CA - Code Instructor</h3>
<p class= "entry-info">
<ul>
<li>Designed 50+ Scratch and Python projects for beginner students to create more engaging classes</li>
<li>Instructed elementary to high school aged students in Scratch and Python in 1 on 1 lessons</li>
<li>Built female-friendly curriculum to encourage young, female students’ interest in coding</li>
</ul>
</p>
<p class= "entry-description"></p>
</div>
</section>
<section class= "section">
<h2 class= "section-title">Skills</h2>
<ul class= "skill-list">
<li>React</li>
<li>TypeScript</li>
<li>Node</li>
<li>Jest</li>
<li>Javascript</li>
<li>HTML</li>
<li>CSS</li>
<li>Jupyter Notebooks</li>
<li>TensorFlow</li>
<li>Java</li>
<li>Python</li>
<li>C</li>
<li>R</li>
</ul>
</section>
<section class= "section">
<h2 class= "section-title">Projects</h2>
<div class= "entry">
<h3 class= "entry-title">Nebula Retina Web Application</h3>
<p class= "entry-info">
MalwareBytes web application which allows users and companies to monitor
web attacks within organizations
</p>
<p class= "entry-description">Created web attack map using React, TypeScript, and CSS styling to display targets and sources
of web intrusions
</p>
</div>
<div class= "entry">
<h3 class= "entry-title">Fizzy Soaps Website</h3>
<p class= "entry-info">
Website for handmade soap business. Products are ordered directly through site.
</p>
<p class= "entry-description">
Created using <em>Liquid</em> via <em>Shopify</em>. Coded 100+ lines of CSS and HTML for FizzySoaps website to add menus, font themes, and page templates.
</p>
</div>
</section>
<section class= "section">
<h2 class= "section-title">Coursework</h2>
<ul class= "course-list">
<li>DeAnza College: Web Page Development</li>
<li>Foothill College: JavaScript for Programmers</li>
<li>Cal Poly: Machine and Assembly Language Programming</li>
<li>Cal Poly: Systems Programming</li>
<li>Cal Poly: Object-Oriented Programming and Design</li>
<li>Cal Poly: Data Structures and Algorithms</li>
<li>Diablo Valley College: Introduction to Programming </li>
</ul>
</section>
</div>
</main>
<footer class= "footer">© 2023 Yasemin's Webpage | All Rights Reserved</footer>
</body>
</html>