-
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.
update resume may 2020 and added new functionalities
- Loading branch information
Showing
8 changed files
with
172 additions
and
164 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.
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
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,5 @@ | ||
(() => { | ||
const dateObj = new Date(); | ||
const currentYear = dateObj.getFullYear(); | ||
document.getElementsByClassName('copyright')[0].innerHTML = `Copyright © ${currentYear} Lidia Ataupillco Ramos`; | ||
})(); |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
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,75 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-US"> | ||
<head> | ||
<title>Lidia's Resume</title> | ||
|
||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" content="Lidia's resume"> | ||
<meta name="keywords" content="Lidia Ataupillco Ramos, Resume"> | ||
<meta name="author" content="Lidia Ataupillco Ramos"> | ||
<meta name="theme-color" content="purple"> | ||
|
||
<link rel="author" href='https://dalidia.github.io/'> | ||
<link rel="stylesheet" href="../styles.css"> | ||
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
<nav class="main-nav"> | ||
<ul class="nav"> | ||
<li><a href="../index.html">Home</a></li> | ||
<li><a href="resume.html">Resume</a></li> | ||
<li><a href="../subjects/experience.html">Experience</a></li> | ||
<li><a href="../index.html#contact">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</body> | ||
|
||
<main> | ||
<section class="section-tile" id="work-experience-nav-bottom"> | ||
<h2 class="section-title">Work Experience</h2> | ||
<div class='projects'> | ||
<h3>Software Development Engineer - Amazon</h3> | ||
<p>May - August 2020</p> | ||
</div> | ||
|
||
<div class='projects'> | ||
<h3>Software Developer Co-Op - Intuit</h3> | ||
<p>January - May 2020</p> | ||
<ul class='list-description'> | ||
<li>Implemented system to streamline the development process of 12 teams with 100+ developers.</li> | ||
<li>Built user interface to improve the development experience for 100+ developers. Used React for front-end and Python for back-end</li> | ||
<li>Monitored system quality tests to ensure the robustness of APIs.</li> | ||
</ul> | ||
</div> | ||
</section> | ||
|
||
<section class="section-tile" id="volunteer-experience-nav-bottom"> | ||
<h2 class="section-title">Volunteer Experience</h2> | ||
<div class='projects'> | ||
<h3>VP Admin - Ada’s Team, University of Alberta</h3> | ||
<p>May 2019 - May 2020</p> | ||
<ul class='list-description'> | ||
<li>Interviewed 10+ tutors and room sitters, and organized technical events.</li> | ||
<li>Promote diversity on campus with experienced tutors.</li> | ||
</ul> | ||
</div> | ||
|
||
<div class='projects'> | ||
<h3>Coach - Women In Technology (WIT) Peru</h3> | ||
<p>May 2019 - August 2019</p> | ||
<ul class='list-description'> | ||
<li>Mentored a Python introductory workshop for women between the ages of 17-35 to encourage greater women participation in the technology field.</li> | ||
<li>Part of 2 meetup planning and organization.</li> | ||
</ul> | ||
</div> | ||
</section> | ||
|
||
</main> | ||
<footer> | ||
<p class="copyright"></p> | ||
<script src="../index.js"></script> | ||
</footer> | ||
|
||
</html> |
Oops, something went wrong.