A Pen by William Raffaelle on CodePen.
Created
July 17, 2022 00:22
-
-
Save wraffaelle98/6cb3f5c9689ca50723b4678402983dce 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
<div id="header"></div> | |
<div class="left"></div> | |
<div class="stuff"> | |
<br><br> | |
<p> </p> | |
<h1>William Raffaelle </h1> | |
<h2>[email protected]</h2> | |
<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> | |
<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> | |
<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> | |
<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> | |
<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> | |
<p class="head">CERTIFICATIONS</p> | |
<p>Amazon Web Services</l> | |
<ul> | |
<li>AWS Certified Cloud Practitioner</li> | |
<li>AWS Certified Solutions Architect – Associate</li> | |
<li>AWS Certified Security - Specialty</li> | |
</ul> | |
</div> | |
<div class="right"></div> | |
<div id="footer"> | |
<h2 id="name">William</h2> | |
</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
* { | |
max-width: 800px; | |
margin: auto; | |
} | |
/*body { | |
min-width: 500px; | |
}*/ | |
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; | |
} | |
.left { | |
height: 1000px; | |
width: 30px; | |
background-color: #A6A6A6; | |
float: left; | |
position: fixed; | |
} | |
.right { | |
height: 1250px; | |
width: 30px; | |
background-color: #A6A6A6; | |
float: right; | |
position: inherit; | |
} | |
.stuff { | |
display: inline-block; | |
margin-top: 6px; | |
margin-left: 55px; | |
width: 75%; | |
height: 500px; | |
} | |
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