Skip to content

Commit

Permalink
Add Amazon
Browse files Browse the repository at this point in the history
  • Loading branch information
tmazeika committed Aug 5, 2024
1 parent 901433f commit 905262f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 26 deletions.
8 changes: 5 additions & 3 deletions src/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ function ItemTitle(props: {
companyUrl?: string;
position: string;
product?: readonly [string, string];
start: string;
end: string;
start?: string;
end?: string;
}) {
return (
<div className="flex justify-between">
Expand All @@ -97,7 +97,9 @@ function ItemTitle(props: {
</p>
</div>
<p>
{props.start} &mdash; {props.end}
{props.start && props.end && (
<>{props.start} &mdash; {props.end}</>
)}
</p>
</div>
);
Expand Down
48 changes: 25 additions & 23 deletions src/data.ts
Original file line number Diff line number Diff line change
@@ -1,37 +1,32 @@
export default {
name: 'TJ Mazeika',
position: 'Software engineer at JPMorgan Chase & Co.',
location: 'Austin, TX',
email: 'mazeika.tj@gmail.com',
githubUsername: 'tmazeika',
linkedInUsername: 'tmazeika',
education: [
experience: [
{
company: 'Northeastern University',
position: 'Bachelor of Science in Computer Science, 3.9/4.0 GPA',
location: 'Boston, MA',
start: 'September 2018',
end: 'December 2021',
company: 'Amazon',
position: 'Software Development Engineer II, Amazon Business',
start: 'March 2024',
end: 'Present',
body: [
'Graduated three semesters early with two co-op experiences and summa cum laude honors.',
'Built internal Azure DevOps metrics dashboard in C#, .NET, and React during co-op at AIR Worldwide (January \u2014 June 2021).',
'Deployed Adobe AEM and SAP Hybris applications across server clusters during co-op at Digitas (January \u2014 July 2020).',
'Fostered knowledge-sharing and growth within a new, nine-person team by hosting regular demo sessions, actively mentoring junior and newly-hired engineers, and providing meaningful code reviews.',
'Championed operational excellence, improving developer experience and confidence, by increasing automated production deployments from 76% to 90% through proactive monitoring, quick fixes, and creating sustainable long-term plans.',
'Owned critical projects like resolving blocking issues for high-priority migrations, effectively balancing between new feature development and operational work while collaborating with cross-functional stakeholders.',
],
},
],
experience: [
{
company: 'JPMorgan Chase & Co.',
position: 'Software Engineer',
product: ['Payments Developer Portal', 'https://developer.payments.jpmorgan.com'],
start: 'December 2022',
end: 'Present',
end: 'March 2024',
body: [
"Led research, planning, and development of highly-visible quarter-long project to migrate core functionality of Payments Developer Portal to use new internal APIs, data models, and usage patterns.",
'Managed input and fielded questions from tech lead, teammates, and directors as the point of contact for new features.',
'Decreased time to onboard new clients from over a month to just minutes by automating the process of requesting and approving access to APIs while also instantly providing a sandbox environment for testing.',
"Mentored two associate engineers in Java, Spring Boot, React, and Next.js and offered guidance on best practices for writing readable and maintainable code in pair-programming sessions, PR reviews, and live tech talks.",
"Initiated and implemented a comprehensive end-to-end testing suite (Kotlin) for the product's distributed system across three separate teams. The suite ran hourly and prevented two critical user-facing bugs from reaching production.",
"Initiated and implemented a comprehensive end-to-end testing suite (Kotlin) for the product's distributed system across three separate teams. The suite ran hourly and prevented critical user-facing bugs from reaching production.",
],
},
{
Expand All @@ -42,7 +37,7 @@ export default {
end: 'December 2022',
body: [
'Bootstrapped seed-stage fintech startup by building MVP for home equity line of credit online application (Next.js, MongoDB). Founders demoed product to potential partner banks, data providers, and investors.',
"Eliminated the need for manual document uploads and verification by integrating third-party financial services to pull applicants' debts, credit reports, and property values in real time. This allowed for an immediate quote of estimated available equity and rates, down from the typical 24 to 48 hours.",
"Eliminated the need for manual document uploads and verification by integrating third-party financial services to pull applicants' debts (Method, Plaid), credit reports (Xactus), and property values (ATTOM Data) in real time. This allowed for an immediate quote of estimated available equity and rates, down from the typical 24 to 48 hours.",
"Collaborated closely with COO to provide accurate engineering plan, helping to optimize resource allocation and calculate runway.",
],
},
Expand All @@ -54,7 +49,18 @@ export default {
body: [
"Owned the agency's first interactive Next.js SPA to elevate its advertised capabilities from only static content sites to dynamic web apps. The application enabled the US Department of Agriculture to more efficiently create healthy eating plans for Americans.",
"Automated the completion of daily client-specific timesheets by proposing and developing an internal Google Calendar add-on (TypeScript). Saved every employee up to six non-billable hours per month.",
'Formulated a trending content page based on the floating average z-score of page view changes over time.',
],
},
],
education: [
{
company: 'Northeastern University',
position: 'Bachelor of Science in Computer Science, 3.9/4.0 GPA',
location: 'Boston, MA',
body: [
'Graduated three semesters early with two co-op experiences and summa cum laude honors.',
'Built internal Azure DevOps metrics dashboard in C#, .NET, and React during co-op at AIR Worldwide.',
'Deployed Adobe AEM and SAP Hybris applications across server clusters during co-op at Digitas.',
],
},
],
Expand All @@ -65,11 +71,7 @@ export default {
},
{
category: 'Tools',
items: ['Ktor', 'Spring Boot', 'Node.js/Next.js', '*nix'],
},
{
category: 'Hobbies',
items: ['Woodworking', 'photography'],
},
items: ['Spring Boot', 'Node.js/Next.js', '*nix'],
}
],
} as const;

0 comments on commit 905262f

Please sign in to comment.