diff --git a/fredainsworth/images/WilfredAinsworth.png b/fredainsworth/images/WilfredAinsworth.png new file mode 100644 index 0000000..0e5efdd Binary files /dev/null and b/fredainsworth/images/WilfredAinsworth.png differ diff --git a/fredainsworth/rlp.html b/fredainsworth/rlp.html new file mode 100644 index 0000000..52fad5f --- /dev/null +++ b/fredainsworth/rlp.html @@ -0,0 +1,65 @@ + + + + + + Portfolio + + + + + +
+ + +
+

About Me

+
+ Wilfred Ainsworth +
+

Name: Wilfred "Fred" Ainsworth

+

Title: Aspiring Junior Software Engineer

+

Location: Wilmington, DE / Philadelphia,PA Metropolitan Area

+

Favorite Motto I live by: If you're not growing, you're dying.

+
+
+

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.

+

Contact: freddy.ainsworth@gmail.com | (267) 882-7048 | LinkedIn

+
+ +
+

Education

+

Code Differently (AI-Powered Software Engineering Program)
Intensive, project-based training program focused on AI-powered software engineering, agile collaboration, and applying analytical problem-solving to real-world challenges.
Completion expected June 2026

+

Delaware State University
Bachelor of Arts | Communications
Completed 2013

+
+ +
+

Certifications

+

• Java Certified Foundations - Oracle (2026)
• Certified Scrum Master (2026)
• Spring Boot for Web Applications(2026)

+
+ +
+

Professional Experience

+

ParetoHealth | Philadelphia, PA - Underwriting Analyst (06/2021-11/2025)
• Conducted detailed risk assessments and analyzed healthcare and claims data to support accurate underwriting decisions and operational reporting.
• Analyzed large datasets, including claims and utilization data, to identify trends, assess risk exposure, and support operational decision-making.
• Ensured compliance with industry standards and legal requirements in underwriting decisions.
• Investigated high-cost claimants and collaborated with cross-functional partners to account for known ongoing risk.

+

Sallie Mae Bank | Newark, DE - Private Credit Underwriting Specialist (04/2018-06/2021)
• Reviewed student loan applications, credit reports, and supporting documentation to assess risk and support end-to-end lending operations.
• Utilized Salesforce CRM and internal systems to validate income, identity, and loan documentation while maintaining accurate records.
• 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.

+
+
+

Projects

+

Parking Garage Management System
Developed a basic CRUD web application using Java to help parking businesses monitor their users and manage their revenue.

+
+ +
+

Technical Skills

+

Languages: Java
Frameworks & Libraries: React | Spring Boot | Django
Databases: PostgreSQL | MongoDB | MySQL
Tools & Platforms: Git | GitHub | Docker | AWS | Excel | Tableau | Jira
Methodologies: Agile | Scrum | REST APIs
Professional Skills: Problem-solving | Cross-functional collaboration | Technical documentation | Stakeholder communication | Process improvement

+
+
+ + \ No newline at end of file diff --git a/fredainsworth/style.css b/fredainsworth/style.css new file mode 100644 index 0000000..4ea2488 --- /dev/null +++ b/fredainsworth/style.css @@ -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; +}