-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b49db59
commit 222737f
Showing
8 changed files
with
587 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!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">Blog</h1> | ||
<p class= "blog-text">More to come...</p> | ||
</main> | ||
<footer class="footer">© 2023 Yasemin's Webpage | All Rights Reserved</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!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> | ||
<div class = contact-page> | ||
<h1 class= "page-title">Contact</h1> | ||
<p>Fill out this form to contact me!</p> | ||
<form id="contact-form"> | ||
<label for="name">Name:</label> | ||
<input type="text" id="name" name="name" required><br><br> | ||
|
||
<label for="email">Email:</label> | ||
<input type="email" id="email" name="email" required><br><br> | ||
|
||
<label for="message">Message:</label> | ||
<textarea id="message" name="message" rows="4" required></textarea><br><br> | ||
|
||
<input type="submit" value="Submit"> | ||
</form> | ||
</div> | ||
</main> | ||
<footer class="footer">© 2023 Yasemin's Webpage | All Rights Reserved</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!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">Welcome to My Website!</h1> | ||
<div class= "about"> | ||
<div class= "about-image"> | ||
<img src= "Profile.jpg" alt= "picture of me"> | ||
</div> | ||
<div class= "about-text"> | ||
<p>I'm a second year <strong>Computer Science</strong> major at Cal Poly SLO who is | ||
pursuing a minor in <em>economics</em>! I have a lot of experience with front-end development, | ||
but I am currently interested in <strong>A.I.</strong> I am passionate about using my CS skills to inspire young, | ||
particularly female, coders and to give back to the community! | ||
</p> | ||
</div> | ||
</div> | ||
</main> | ||
<footer class= "footer">© 2023 Yasemin's Webpage | All Rights Reserved</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!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">Portfolio</h1> | ||
<div class= "project"> | ||
<a href="index.html"> | ||
<img src="Project.png" alt="Project Screenshot" width="300" height="200"> | ||
</a> | ||
<div class= "project-details"> | ||
<p class= "project-name">My Personal Website</p> | ||
<p class= "project-description">A showcase of my work and interests.</p> | ||
<a href= "index.html">Learn More</a> | ||
</div> | ||
</div> | ||
</main> | ||
<footer class= "footer">© 2023 Yasemin's Webpage | All Rights Reserved</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |
Oops, something went wrong.