A Pen by William Raffaelle on CodePen.
Created
July 17, 2022 17:34
-
-
Save wraffaelle98/e9cb3571641278971c14cba96db4b793 to your computer and use it in GitHub Desktop.
Cloud Resume Challenge
This file contains hidden or 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
<link href="main.css" rel="stylesheet" type="text/css"> | |
<div id="header"></div> | |
<div class="left"></div> | |
<div class="stuff"> | |
<br><br> | |
<p> </p> | |
<h1>William Raffaelle </h1> | |
<p> </p> | |
<h3>Rochester, NY | (585) 690-7856 </h3> | |
</div> | |
<style> | |
h1{text-align: center;} | |
h3{text-align: center} | |
h2{text-align: center;} | |
</style> | |
<!-- Go to www.addthis.com/dashboard to customize your tools --> | |
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-62d440bf05336f51"></script> | |
<!-- Go to www.addthis.com/dashboard to customize your tools --> | |
<div class="addthis_inline_follow_toolbox"></div> | |
<p> </p> | |
<hr /> | |
<br> | |
<p class="head">EDUCATION</p> | |
<p>Rochester Institute of Technology (RIT) Rochester, NY </p> | |
<p>Bachelor of Science in Management Information Systems May 2021 | |
</l> | |
<p>Minor in Computer Science</l> | |
<p>GPA: 3.5</l> | |
<p> </p> | |
<hr /> | |
<br> | |
<p class="head">COURSES</p> | |
<p>MIS: Systems Analysis and Design, Database Systems Development </l> | |
<p>Computer Science: Intro to Software Engineering, Analysis of Algorithms </l> | |
<p>Business Analytics: Data Management for Business Analytics, Financial Analytics </l> | |
<p> </p> | |
</ul> | |
<hr /> | |
<br> | |
<p class="head">SKILLS</p> | |
<p>Programming Languages: Python, Java, SQL, R</l> | |
<p>Tools: Amazon Web Services (AWS), AWS CloudFormation, AWS Lambda, CloudHealth, Migration Evaluator, Atlassian (Jira, Bamboo), Agile, MongoDB, Excel</l> | |
<p> </p> | |
<hr /> | |
<br> | |
<p class="head">EXPERIENCE</p> | |
<p>Mindex Rochester, NY | |
</l> | |
<p>Associate Cloud Engineer Feb 2022 - present | |
</l> | |
<ul> | |
<li>Worked as a security engineer on DevSecOps project for a multi-billion-dollar company </li> | |
<li>Remediated SecurityHub findings to achieve higher security score </li> | |
<li>Utilized CloudFormation, Lambda, and python programming to automate certain infrastructure tasks </li> | |
<li>Involved in data migration project to move on-premises data center to the cloud</li> | |
<li>Used CloudHealth platform to manage customer billing and reporting</li> | |
</ul> | |
<p>Rochester Regional Health Irondequoit, NY | |
</l> | |
<p>Software Engineer – RIT Co-op June 2018 – Dec 2018 | |
</l> | |
<ul> | |
<li>Created continuous integration environment to automate the build and deployment process of each application in development to assist software team </li> | |
<li>Managed multiple AWS accounts </li> | |
</ul> | |
<p> </p> | |
<hr /> | |
<br> | |
<p class="head">ACTIVITIES</p> | |
<p>Leading High Performing Teams Certificate Program (Saunders College of Business)</l> | |
<ul> | |
<li>Learned critical concepts and skills needed for effectively leading teams in any industry/organization </li> | |
<li>Put these skills into practice through meaningful, fun, and interactive challenges </li> | |
</ul> | |
<p> </p> | |
<hr /> | |
<br> | |
<p class="head">CERTIFICATIONS</p> | |
<p>Amazon Web Services</l> | |
<ul> | |
<li><a href="https://www.credly.com/badges/542c1e2a-a3a2-4b09-b41f-bf433efdc68a/public_url"><font color="blue">AWS Certified Cloud Practitioner</a></font></li> | |
<li><a href="https://www.credly.com/badges/a9f150e7-e392-4f08-b07c-cee8b19909ad/public_url"><font color="blue">AWS Certified Solutions Architect – Associate</a></font></li> | |
<li><a href="https://www.credly.com/badges/b762a371-806c-45d2-963b-5b2d15412cec/public_url"><font color="blue">AWS Certified Security - Specialty</a></font></li> | |
<p> </p> | |
</ul> | |
</div> | |
<div class="right"></div> | |
<div id="footer"> </div> |
This file contains hidden or 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
@charset "UTF-8"; | |
* { | |
max-width: 800px; | |
margin: auto; | |
} | |
div { | |
border-radius: 5px; | |
} | |
#header { | |
height: 50px; | |
width: 100%; | |
background-color: #232F3E; | |
position: fixed; | |
z-index: 1; | |
} | |
#title { | |
margin-left: 3%; | |
} | |
#footer { | |
height: 50px; | |
width: 100%; | |
background-color: #FF9900; | |
clear: both; | |
position: relative; | |
} | |
p, | |
li { | |
font-family: 'Ariel'; | |
} | |
.head { | |
font-size: 20px; | |
} | |
#name { | |
font-family: Sacramento; | |
float: right; | |
margin-top: 10px; | |
margin-right: 4%; | |
} | |
a { | |
color: black; | |
text-decoration: none; | |
} | |
@media only screen and (max-width: 430px) { | |
.left, | |
.right { | |
display: none; | |
} | |
.stuff { | |
width: 100%; | |
margin-left: 10px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment