Skip to content
Merged
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
222 changes: 110 additions & 112 deletions _includes/current_roles.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -3,126 +3,124 @@
class="table-responsive"
>
<table class="table table-sm table-borderless" style="margin: 0px">
{% for item in site.data.resume.education %}
{% if item.homepage %}
<tr>
<!-- add an image here! -->
{% if item.img %}
<th scope="row" id="date_width" style=" padding-right: 10px; padding-left: 0px !important">
{% include figure.liquid home=true path=item.img sizes="(min-width: 768px) 156px, 50vw" alt="project thumbnail" style="padding: 15px" %}
</th>
{% endif %}
{% assign sorted_education = site.data.resume.education | where: 'homepage', true | sort: 'endDate' | reverse %}
{% for item in sorted_education %}
<tr>
<!-- add an image here! -->
{% if item.img %}
<th scope="row" id="date_width" style=" padding-right: 10px; padding-left: 0px !important">
{% include figure.liquid home=true path=item.img sizes="(min-width: 768px) 156px, 50vw" alt="project thumbnail" style="padding: 15px" %}
</th>
{% endif %}

<td style="vertical-align: middle;" id="width-resume">
{% if item.redirect == blank %}
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.homepage_title }}</a>
{%- if item.homepage_description %}:{% endif %}
<span style="font-size: .875rem">{{ item.homepage_description }}</span>
<td style="vertical-align: middle;" id="width-resume">
{% if item.redirect == blank %}
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.homepage_title }}</a>
{%- if item.homepage_description %}:{% endif %}
<span style="font-size: .875rem">{{ item.homepage_description }}</span>

{% elsif item.redirect contains '://' %}
<a class="news-title" href="{{ item.redirect }}" target="_blank">{{ item.homepage_title }}</a>
{%- if item.homepage_description %}:{% endif %}
<span style="font-size: .875rem">{{ item.homepage_description }}</span>
{% else %}
<a class="news-title" href="{{ item.redirect | relative_url }}">{{ item.homepage_title }}</a>
{% endif %}
<br>
<span style="font-size: .75rem">
{% if item.startDate %}
{{ item.startDate | date: '%b %Y' }}
{% if item.endDate %}
- {{ item.endDate | date: '%b %Y' }}
{% else %}
- Present
{% endif %}
{% endif %}
{% if item.startDate and item.homepage_keyword %}
&nbsp; &middot; &nbsp;
{% endif %}
{% if item.homepage_keyword %}
{{ item.homepage_keyword }}
{% endif %}
{% if item.location %}
&nbsp; &middot; &nbsp;
{{ item.location }}
{% elsif item.redirect contains '://' %}
<a class="news-title" href="{{ item.redirect }}" target="_blank">{{ item.homepage_title }}</a>
{%- if item.homepage_description %}:{% endif %}
<span style="font-size: .875rem">{{ item.homepage_description }}</span>
{% else %}
<a class="news-title" href="{{ item.redirect | relative_url }}">{{ item.homepage_title }}</a>
{% endif %}
<br>
<span style="font-size: .75rem">
{% if item.startDate %}
{{ item.startDate | date: '%b %Y' }}
{% if item.endDate %}
- {{ item.endDate | date: '%b %Y' }}
{% else %}
- Present
{% endif %}
</span>
</td>
<td style="vertical-align: middle;" id="non-width-resume">
{% if item.redirect == blank %}
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.homepage_title }}</a>
{% elsif item.redirect contains '://' %}
<a class="news-title" href="{{ item.redirect }}" target="_blank">{{ item.homepage_title }}</a>
{% else %}
<a class="news-title" href="{{ item.redirect | relative_url }}">{{ item.homepage_title }}</a>
{% endif %}
<br>
<span style="font-size: .75rem">
{{ item.homepage_description }}
</span>
</td>
</tr>
{% endif %}
{% endfor %}
{% for item in site.data.resume.work %}
{% if item.homepage %}
<tr>
<!-- add an image here! -->
{% if item.img %}
<th scope="row" id="date_width" style=" padding-right: 10px; padding-left: 0px !important">
{% include figure.liquid home=true path=item.img sizes="(min-width: 768px) 156px, 50vw" alt="project thumbnail" style="padding: 15px" %}
</th>
{% if item.startDate and item.homepage_keyword %}
&nbsp; &middot; &nbsp;
{% endif %}
{% if item.homepage_keyword %}
{{ item.homepage_keyword }}
{% endif %}
{% if item.location %}
&nbsp; &middot; &nbsp;
{{ item.location }}
{% endif %}
</span>
</td>
<td style="vertical-align: middle;" id="non-width-resume">
{% if item.redirect == blank %}
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.homepage_title }}</a>
{% elsif item.redirect contains '://' %}
<a class="news-title" href="{{ item.redirect }}" target="_blank">{{ item.homepage_title }}</a>
{% else %}
<a class="news-title" href="{{ item.redirect | relative_url }}">{{ item.homepage_title }}</a>
{% endif %}
<td style="vertical-align: middle;" id="width-resume">
{% if item.redirect == blank %}
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.homepage_title }}</a>
{%- if item.homepage_description %}:{% endif %}
<span style="font-size: .875rem">{{ item.homepage_description }}</span>
<br>
<span style="font-size: .75rem">
{{ item.homepage_description }}
</span>
</td>
</tr>
{% endfor %}
{% assign sorted_work = site.data.resume.work | where: 'homepage', true | sort: 'endDate' | reverse %}
{% for item in sorted_work %}
<tr>
<!-- add an image here! -->
{% if item.img %}
<th scope="row" id="date_width" style=" padding-right: 10px; padding-left: 0px !important">
{% include figure.liquid home=true path=item.img sizes="(min-width: 768px) 156px, 50vw" alt="project thumbnail" style="padding: 15px" %}
</th>
{% endif %}
<td style="vertical-align: middle;" id="width-resume">
{% if item.redirect == blank %}
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.homepage_title }}</a>
{%- if item.homepage_description %}:{% endif %}
<span style="font-size: .875rem">{{ item.homepage_description }}</span>

{% elsif item.redirect contains '://' %}
<a class="news-title" href="{{ item.redirect }}" target="_blank">{{ item.homepage_title }}</a>
{%- if item.homepage_description %}:{% endif %}
<span style="font-size: .875rem">{{ item.homepage_description }}</span>
{% else %}
<a class="news-title" href="{{ item.redirect | relative_url }}">{{ item.homepage_title }}</a>
{% endif %}
<br>
<span style="font-size: .75rem">
{% if item.startDate %}
{{ item.startDate | date: '%b %Y' }}
{% if item.endDate %}
- {{ item.endDate | date: '%b %Y' }}
{% else %}
- Present
{% endif %}
{% endif %}
{% if item.startDate and item.homepage_keyword %}
&nbsp; &middot; &nbsp;
{% endif %}
{% if item.homepage_keyword %}
{{ item.homepage_keyword }}
{% endif %}
{% if item.location %}
&nbsp; &middot; &nbsp;
{{ item.location }}
{% elsif item.redirect contains '://' %}
<a class="news-title" href="{{ item.redirect }}" target="_blank">{{ item.homepage_title }}</a>
{%- if item.homepage_description %}:{% endif %}
<span style="font-size: .875rem">{{ item.homepage_description }}</span>
{% else %}
<a class="news-title" href="{{ item.redirect | relative_url }}">{{ item.homepage_title }}</a>
{% endif %}
<br>
<span style="font-size: .75rem">
{% if item.startDate %}
{{ item.startDate | date: '%b %Y' }}
{% if item.endDate %}
- {{ item.endDate | date: '%b %Y' }}
{% else %}
- Present
{% endif %}
</span>
</td>
<td style="vertical-align: middle;" id="non-width-resume">
{% if item.redirect == blank %}
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.homepage_title }}</a>
{% elsif item.redirect contains '://' %}
<a class="news-title" href="{{ item.redirect }}" target="_blank">{{ item.homepage_title }}</a>
{% else %}
<a class="news-title" href="{{ item.redirect | relative_url }}">{{ item.homepage_title }}</a>
{% endif %}
<br>
<span style="font-size: .75rem">
{{ item.homepage_description }}
</span>
</td>
</tr>
{% endif %}
{% if item.startDate and item.homepage_keyword %}
&nbsp; &middot; &nbsp;
{% endif %}
{% if item.homepage_keyword %}
{{ item.homepage_keyword }}
{% endif %}
{% if item.location %}
&nbsp; &middot; &nbsp;
{{ item.location }}
{% endif %}
</span>
</td>
<td style="vertical-align: middle;" id="non-width-resume">
{% if item.redirect == blank %}
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.homepage_title }}</a>
{% elsif item.redirect contains '://' %}
<a class="news-title" href="{{ item.redirect }}" target="_blank">{{ item.homepage_title }}</a>
{% else %}
<a class="news-title" href="{{ item.redirect | relative_url }}">{{ item.homepage_title }}</a>
{% endif %}
<br>
<span style="font-size: .75rem">
{{ item.homepage_description }}
</span>
</td>
</tr>
{% endfor %}
</table>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _layouts/about.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ layout: default
{% if page.current_roles %}
<div id="smiv">
<h2>
<a href="{{ '/resume/' | relative_url }}" style="color: inherit">current roles</a>
<a href="{{ '/resume/' | relative_url }}" style="color: inherit">work & education</a>
</h2>
{% include current_roles.liquid %}
</div>
Expand Down
2 changes: 1 addition & 1 deletion _pages/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: about
title: home
permalink: /
subtitle: developer & entrepreneur. cs @ <a href='https://directory.gatech.edu/directory/detail/Andrew/Boyer?dn=ZnUPgG7TRJIo1QcqJFfjAfNGjE%2BJf2zzmGiOToNIXG8YW6T9aPf9YRhnOHmk5oTS'>georgia tech</a>.
subtitle: developer & entrepreneur. cs @ <a href='https://directory.gatech.edu/directory/detail/Andrew/Boyer/ZnUPgG7TRJIo1QcqJFfjAfNGjE-Jf2zzmGiOToNIXG8YW6T9aPf9YRhnOHmk5oTS'>georgia tech</a>.

profile:
align: right
Expand Down
Binary file added assets/img/roles/intern/amazon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 28 additions & 6 deletions assets/json/resume.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
"image": "",
"email": "[email protected]",
"phone": "",
"url": "https://asboyer.com",
"summary": "Interested in all things computers and math. I am always looking for an opportunity to explore interests, express creativity, and learn. ",
"summary": "Full-stack developer with passion for building scalable, efficient, and user-friendly applications.",
"location": {
"city": "Atlanta",
"countryCode": "US",
Expand Down Expand Up @@ -141,14 +140,37 @@
"name": "Stealth AI Startup",
"position": "Software Engineering Intern",
"startDate": "2025-01-06",
"highlights": [],
"summary": "",
"endDate": "2025-05-16",
"highlights": [
"Worked with team to build and maintain full-stack web app for reviewers verifying LLM extractions",
"Built LLM-based service to identify bounding boxes within document pipeline",
"Integrated app with EHR API"
],
"summary": "React, Typescript, Python, PostgreSQL, Kubernetes, REST API, LLM",
"location": "Cambridge, MA",
"homepage_keyword": "Full-time",
"homepage_description": "Software Engineering Intern",
"homepage_title": "Stealth AI Startup",
"homepage": true,
"homepage": false,
"img": "assets/img/roles/intern/stealth.png"
},
{
"name": "Amazon",
"position": "Software Development Intern",
"startDate": "2025-05-27",
"endDate": "2025-08-16",
"highlights": [
"Architected full-stack enterprise tool to automate workflows, with authenticated onboarding, monitoring, and OE.",
"Tool reduces operational overhead by 99.8%, saving $300,000 annually, built to scale with company-wide adoption."
],
"summary": "Java, TypeScript, React, AWS, SQL, CDK, REST, CI/CD",
"location": "Dallas, TX",
"homepage_keyword": "Full-time",
"homepage_description": "Software Development Intern",
"homepage_title": "Amazon",
"homepage": true,
"url": "https://www.amazon.com/",
"img": "assets/img/roles/intern/amazon.png"
}
],
"education": [
Expand All @@ -175,7 +197,7 @@
"homepage": true,
"location": "Atlanta, GA",
"img": "assets/img/roles/edu/gatech.png",
"redirect": "https://directory.gatech.edu/directory/detail/Andrew/Boyer?dn=ZnUPgG7TRJIo1QcqJFfjAfNGjE%2BJf2zzmGiOToNIXG8YW6T9aPf9YRhnOHmk5oTS"
"redirect": "https://directory.gatech.edu/directory/detail/Andrew/Boyer/ZnUPgG7TRJIo1QcqJFfjAfNGjE-Jf2zzmGiOToNIXG8YW6T9aPf9YRhnOHmk5oTS"
},
{
"institution": "Arizona State University",
Expand Down
Binary file modified assets/pdf/resume.pdf
Binary file not shown.