Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added fredainsworth/images/WilfredAinsworth.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
65 changes: 65 additions & 0 deletions fredainsworth/rlp.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#certifications">Certifications</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Technical Skills</a></li>
</ul>
</nav>

<main>


<section id="about">
<h2>About Me</h2>
<div class="about-content">
<img src="images/WilfredAinsworth.png" alt="Wilfred Ainsworth" class="profile-pic">
<div class="about-text">
<p><strong>Name:</strong> Wilfred "Fred" Ainsworth</p>
<p><strong>Title:</strong> Aspiring Junior Software Engineer</p>
<p><strong>Location:</strong> Wilmington, DE / Philadelphia,PA Metropolitan Area</p>
<p><strong>Favorite Motto I live by:</strong> If you're not growing, you're dying.</p>
</div>
</div>
<p>A risk management professional with experience in credit analysis, underwriting, and risk management transitioning into software development. Adept at leveraging technology such as Excel, Salesforce CRM, and data-driven insights to improve profitability while ensuring compliance.</p>
<p><strong>Contact:</strong> <a href="mailto:freddy.ainsworth@gmail.com">freddy.ainsworth@gmail.com</a> | <a href="tel:+12678827048">(267) 882-7048</a> | <a href="https://www.linkedin.com/in/wilfred-ainsworth-jr/">LinkedIn</a></p>
</section>

<section id="education">
<h2>Education</h2>
<p><strong>Code Differently (AI-Powered Software Engineering Program)</strong><br>Intensive, project-based training program focused on AI-powered software engineering, agile collaboration, and applying analytical problem-solving to real-world challenges.<br><i>Completion expected June 2026</i></p>
<p><strong>Delaware State University</strong><br>Bachelor of Arts | Communications<br><i>Completed 2013</i></p>
</section>

<section id="certifications">
<h2>Certifications</h2>
<p>• Java Certified Foundations - Oracle (2026)<br>• Certified Scrum Master (2026) <br>• Spring Boot for Web Applications(2026)</p>
</section>

<section id="experience">
<h2> Professional Experience</h2>
<p><strong>ParetoHealth | Philadelphia, PA - Underwriting Analyst (06/2021-11/2025)</strong><br>• Conducted detailed risk assessments and analyzed healthcare and claims data to support accurate underwriting decisions and operational reporting.<br>• Analyzed large datasets, including claims and utilization data, to identify trends, assess risk exposure, and support operational decision-making.<br>• Ensured compliance with industry standards and legal requirements in underwriting decisions.<br>• Investigated high-cost claimants and collaborated with cross-functional partners to account for known ongoing risk.</p>
<p><strong>Sallie Mae Bank | Newark, DE - Private Credit Underwriting Specialist (04/2018-06/2021)</strong><br>• Reviewed student loan applications, credit reports, and supporting documentation to assess risk and support end-to-end lending operations.<br>• Utilized Salesforce CRM and internal systems to validate income, identity, and loan documentation while maintaining accurate records.<br>• Maintained adherence to regulatory acts including Reg Z, Reg E, Truth in Lending Act (TILA), CAN-SPAM Act, and Fair Credit Reporting Act (FCRA) through detailed documentation review and consistent process execution.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<p><strong>Parking Garage Management System</strong><br>Developed a basic CRUD web application using Java to help parking businesses monitor their users and manage their revenue.</p>
</section>

<section id="skills">
<h2>Technical Skills</h2>
<p><strong>Languages:</strong> Java<br><strong>Frameworks & Libraries:</strong> React | Spring Boot | Django<br><strong>Databases:</strong> PostgreSQL | MongoDB | MySQL<br><strong>Tools & Platforms:</strong> Git | GitHub | Docker | AWS | Excel | Tableau | Jira<br><strong>Methodologies:</strong> Agile | Scrum | REST APIs<br><strong>Professional Skills:</strong> Problem-solving | Cross-functional collaboration | Technical documentation | Stakeholder communication | Process improvement</p>
</section>
</main>
</body>
</html>
174 changes: 174 additions & 0 deletions fredainsworth/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,174 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #1e1e2f;
color: #ffffff;
overflow-x: hidden;
position: relative;
}

/* Navigation Bar */
nav {
background-color: #2a2a3e;
border-bottom: 3px solid #00d4ff;
padding: 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 4px 10px rgba(0, 212, 255, 0.2);
}

nav ul {
display: flex;
flex-direction: row;
list-style: none;
justify-content: center;
align-items: center;
gap: 0;
}

nav li {
flex: 1;
text-align: center;
}

nav a {
display: block;
padding: 20px;
color: #00d4ff;
text-decoration: none;
font-weight: bold;
font-size: 16px;
transition: all 0.3s ease;
border-right: 1px solid rgba(0, 212, 255, 0.2);
position: relative;
}

nav li:last-child a {
border-right: none;
}

nav a:hover {
background-color: rgba(0, 212, 255, 0.1);
color: #00d4ff;
text-shadow: 0 0 10px #00d4ff;
transform: scale(1.05);
}

nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: #00d4ff;
transition: width 0.3s ease;
}

nav a:hover::after {
width: 100%;
}

/* Main Content */
main {
position: relative;
z-index: 10;
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
display: flex;
flex-direction: column;
}

/* Sections */
section {
margin-bottom: 60px;
padding: 40px;
background-color: #ffffff;
border: 2px solid #00d4ff;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

section:hover {
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
border-color: #00d4ff;
transform: translateY(-5px);
}

section h2 {
font-size: 28px;
margin-bottom: 20px;
color: #2a2a3e;
border-bottom: 2px solid #00d4ff;
padding-bottom: 10px;
}

section p {
font-size: 16px;
line-height: 1.8;
color: #333333;
}
img{
width: 300px;
height: 300px;
border: 2px solid #00d4ff;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
display: flex;
align-items: center;
gap: 20px;
}

.about-text {
display: flex;
flex-direction: column;
gap: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
nav ul {
flex-wrap: wrap;
}

nav a {
padding: 15px;
font-size: 14px;
}

section {
padding: 20px;
}

section h2 {
font-size: 22px;
}
}

/* Link color behavior */
a:link,
a:visited {
color: #007bff;
text-decoration: none;
}

a:hover,
a:active {
color: #0056b3;
text-decoration: underline;
}

/* If your link style is still overridden by browser defaults, enforce with !important */
a:visited {
color: #007bff !important;
}