Adds Geemans Resume directory and files

This commit is contained in:
geeman1209 2024-04-14 22:12:27 -04:00
parent 22cd76cc3e
commit 364d7759f5
2 changed files with 158 additions and 0 deletions

View file

@ -0,0 +1,119 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
<link rel="stylesheet" href="resume.css">
</head>
<body>
<div class="full">
<div class="left">
<div class="image">
<img src=https://th.bing.com/th/id/OIP.y1mD82Jj3tnyDZutlNpz_wHaHa?pid=ImgDet&w=174.1793041926851&h=180&c=7 alt="gfg-logo" style="width:100px;
height:100px;">
</div>
<div class="Contact">
<h2>Contact</h2>
<p>
<b>Email:</b>ReleReallyNotReal@gmail.com
</p>
<p>
<b>Cell Phone:</b>1234567890
</p>
</div>
<div class="Skills">
<h2>Skills</h2>
<ul>
<li>
<b>Programming Languages :
Python, Java, C#, R</b>
</li>
<li>
<b>Frontend : HTML5, CSS3,
JavaScript</b>
</li>
<li>
<b>Backend : Node.js</b>
</li>
<li>
<b>Analytics: Data Science, Power BI, Machine Learning, Scikit, Numpy
</li>
</ul>
</div>
<div class="Languages">
<h2>Languages</h2>
<ul>
<li>English</li>
<li>Spanish</li>
</ul>
</div>
<div class="Hobbies">
<h2>Hobbies</h2>
<ul>
<li>Lifting Weights</li>
<li>Watching Sci-fi/Fantasy Shows and Movies</li>
<li>Reading</li>
<li>Play video games</li>
<li>Learn new technologies</li>
</ul>
</div>
</div>
<div class="right">
<div class="name">
<h1>Geeman</h1>
</div>
<div class="title">
<p>Future Software Engineer/Current Data Analyst</p>
</div>
<div class="Summary">
<h2>About Me</h2>
<ul>
<li>Nine years of prior experience in information technology, system administration, and cybersecurity </li>
<li>Data analyst with a master's in data science</li>
</ul>
</div>
<div class="Experience">
<h2>Experience</h2>
<h3>Super Boring Insurance Company - Senior Consultant</h3>
<p>March 2024 to Present</p>
<ul>
<li>
Creating interesting visualizations and dashboards...for insurance.
</li>
<li>
Counting down the hours
</li>
</ul>
<h3>Anotha Insurance Health Company - Data Science Analyst</h3>
<p>November 2022 to March 2024</p>
<ul>
<li>
Automate reports using python
</li>
<li>Create Power BI dashboards using date from various APIs</li>
<li>Utilize Power BI and Power Apps in various ad hoc projects</li>
</ul>
<h3>Higher Ed Place - Windows Sys Admin</h3>
<p>March 2019 to November 2022</p>
<ul>
<li> Build visual dashboards in Power BI showing security vulnerabilities</li>
<li>Automate routine tasks using PowerShell scripts</li>
<li>Manage over a bizillion servers using SCCM</li>
</ul>
</div>
<div class="Education">
<h2>Education</h2>
<ul>
<li>Master's in Data Science - Skewl NYC (June 2022)</li>
<li>Bachelor's in Government - Expensive CT Skool (June 2009)</li>
</ul>
</div>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,39 @@
* {
margin: 0;
padding: 2;
box-sizing: border-box;
}
body {
background-color: rgb(255, 255, 255);
display: flex;
justify-content: center;
align-items: center;
}
.full {
width: 55%;
max-width: 1000px;
min-height: 100px;
background-color: rgb(245, 239, 231);
margin: 0px;
display: grid;
grid-template-columns: 2fr 4fr;
}
.left {
position: initial;
background-color: rgb(120, 120, 120);
padding: 20px;
}
.right {
position: initial;
background-color: rgb(190, 190, 206);
padding: 20px;
}
.image, .Contact, .Skills, .Language, .Hobbies, .title,
.Summary, .Experience, .Education, .project {
margin-bottom: 30px;
}
.h2 {
background-color: rgb(4, 96, 150);
}