28 Commits

Author SHA1 Message Date
Sean O'Connor
65139ac3b1 feat: conditionally upload private PDFs based on the Git server and update the GitHub upload action to v4. 2026-02-04 12:51:31 -05:00
Sean O'Connor
eeba5c7aea fix: Update Gitea release action token to GITHUB_TOKEN and downgrade upload-artifact action to v3.
All checks were successful
Compile LaTeX Documents / build-public (push) Successful in 49s
Compile LaTeX Documents / build-private (push) Successful in 56s
2026-02-04 12:47:01 -05:00
Sean O'Connor
ad46c2ba70 feat: Implement conditional GitHub and Gitea release publishing based on the server environment.
Some checks failed
Compile LaTeX Documents / build-public (push) Successful in 48s
Compile LaTeX Documents / build-private (push) Failing after 27s
2026-02-04 12:31:20 -05:00
Sean O'Connor
5b99a95078 refactor: Replace softprops/action-gh-release with ncipollo/release-action for GitHub release creation.
Some checks failed
Compile LaTeX Documents / build-public (push) Failing after 36s
Compile LaTeX Documents / build-private (push) Failing after 27s
2026-02-04 10:13:29 -05:00
Sean O'Connor
fa5d42251d chore: Explicitly pass GITHUB_TOKEN to release actions. 2026-02-04 10:04:27 -05:00
Sean O'Connor
61258bf16e style: Adjust resume LaTeX formatting and update GitHub Actions release workflow.
Some checks failed
Compile LaTeX Documents / build-public (push) Successful in 2m58s
Compile LaTeX Documents / build-private (push) Failing after 27s
2026-02-04 00:41:38 -05:00
Sean O'Connor
066d84c5b8 feat: add detailed professional experience entries, reorder resume sections, and refine existing content. 2026-02-04 00:33:40 -05:00
Sean O'Connor
59f172bd0b Refactor: Replaced individual build scripts with a Makefile and helper script for managing local and Docker builds, alongside updates to resume and CV content sections. 2026-02-04 00:16:34 -05:00
e54a0e36e6 fix: switch to akkuman/gitea-release-action for gitea compatibility 2025-12-01 00:45:42 -05:00
b055ed9d3d fix: switch to svenstaro/upload-release-action for gitea compatibility 2025-12-01 00:25:07 -05:00
ede400fd97 debug: list files and use explicit artifact paths for gitea release 2025-12-01 00:15:05 -05:00
8aeb6a4745 fix: downgrade upload-artifact to v3 for gitea compatibility 2025-11-30 19:31:50 -05:00
7749d8c332 fix: use glob pattern for release artifacts 2025-11-30 18:50:35 -05:00
0549f77c4d docs: add gitea release urls 2025-11-30 18:49:33 -05:00
7bebaea133 fix: install nodejs for action compatibility 2025-11-30 18:37:26 -05:00
5f77e4e68c fix: switch to ncipollo/release-action for gitea compatibility 2025-11-30 18:36:31 -05:00
8f0ff2df68 refactor: use container job strategy for gitea compatibility 2025-11-30 18:32:06 -05:00
de9dfe2d7f Update README.md 2025-11-30 17:48:21 -05:00
dd9c4c09ee fix: correct typo in resume.tex itemize environment 2025-11-30 17:18:41 -05:00
eed1e8714b fix: update github actions runner and dependencies 2025-11-30 17:16:08 -05:00
7397a0177f Update build-local 2025-11-30 16:08:05 -05:00
d0813ce1c6 Enhance CV and resume with new project details and LaTeX package adjustments
- Added current honors thesis project to CV, focusing on platform effectiveness in HRI research
- Updated resume to correct formatting of beenvoice project description
- Modified LaTeX hyperref package options for improved link visibility
2025-10-08 10:35:12 -04:00
1dfc70b1b4 Rewrite CV and resume for PhD applications, update skills and coursework
sections, and add recent publications and conference presentations
2025-09-08 23:07:31 -04:00
ef1a4de958 Summer 2025 Updates 2025-07-24 04:09:08 -04:00
685b5f5847 Update CV tutor role dates and README project structure
- Modify Engineering Study Spot Tutor date range in CV
- Update README.md with additional build scripts and refined project structure description
2025-02-06 14:51:22 -05:00
56f3bbca75 Refine research assistant role description for clarity 2025-02-06 14:44:09 -05:00
e21e945cd5 Add build-docker.sh and enhance build-local.sh with local LaTeX tool detection
- Create build-docker.sh script for Docker-based resume and CV generation
- Modify build-local.sh to check for local LaTeX tools and fallback to Docker if needed
- Implement functions to build PDFs using local tools or Docker
- Improve build process flexibility and error handling
2025-02-06 14:43:54 -05:00
55afdad907 Refactor CV and Resume templates to use shared components for modularity. Updated README to reflect new structure and added links to latest PDFs. Enhanced GitHub Actions workflow for automatic release management, including a streamlined process for versioned releases. 2024-12-11 13:31:28 -05:00
18 changed files with 658 additions and 508 deletions

View File

@@ -12,9 +12,13 @@ permissions:
jobs:
build-public:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
container: ghcr.io/xu-cheng/texlive-alpine:latest
steps:
- uses: actions/checkout@v3
- name: Install system dependencies
run: apk add --no-cache git gettext bash nodejs
- uses: actions/checkout@v4
- name: Create public info file
env:
@@ -40,7 +44,7 @@ jobs:
mv personal_info.tex.tmp personal_info.tex
- name: Cache TeX Live
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
/tmp/texlive
@@ -52,36 +56,82 @@ jobs:
- name: Create TeX Live directory
run: mkdir -p /tmp/texlive
- name: Set up TeX Live
uses: xu-cheng/latex-action@v3
with:
root_file: |
resume.tex
cv.tex
latexmk_use_xelatex: false
- name: Compile LaTeX
run: |
latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode resume.tex
latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode cv.tex
- name: List generated PDFs
run: ls -la *.pdf
- name: Upload Public PDFs as Release
uses: softprops/action-gh-release@v1
# --- GITHUB RELEASES (Run only on GitHub) ---
- name: Upload Public PDFs as Release (GitHub)
if: github.server_url == 'https://github.com'
uses: ncipollo/release-action@v1
with:
artifacts: "resume.pdf,cv.pdf"
tag: latest
name: Latest PDFs
body: |
Latest compiled resume and CV (public versions)
Built from commit ${{ github.sha }}
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
removeArtifacts: true
replacesArtifacts: true
- name: Create Numbered Release (GitHub)
if: github.server_url == 'https://github.com'
uses: ncipollo/release-action@v1
with:
artifacts: "resume.pdf,cv.pdf"
tag: release-${{ github.run_number }}
name: Release ${{ github.run_number }}
body: |
Automated release #${{ github.run_number }}
Built from commit ${{ github.sha }}
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
prerelease: false
# --- GITEA RELEASES (Run only on Gitea) ---
- name: Upload Public PDFs as Release (Gitea)
if: github.server_url != 'https://github.com'
uses: akkuman/gitea-release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: |
resume.pdf
cv.pdf
name: Latest PDFs
tag_name: release-${{ github.run_number }}
body: |
Latest version of resume and CV (public version)
tag_name: latest
prerelease: false
draft: false
- name: Create Numbered Release (Gitea)
if: github.server_url != 'https://github.com'
uses: akkuman/gitea-release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: |
resume.pdf
cv.pdf
name: Release ${{ github.run_number }}
tag_name: release-${{ github.run_number }}
prerelease: false
draft: false
fail_on_unmatched_files: true
generate_release_notes: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-private:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
container: ghcr.io/xu-cheng/texlive-alpine:latest
if: github.actor == github.repository_owner
steps:
- uses: actions/checkout@v3
- name: Install system dependencies
run: apk add --no-cache git gettext bash nodejs
- uses: actions/checkout@v4
- name: Create private info file
env:
@@ -113,7 +163,7 @@ jobs:
mv personal_info.tex.tmp personal_info.tex
- name: Cache TeX Live
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
/tmp/texlive
@@ -125,16 +175,26 @@ jobs:
- name: Create TeX Live directory
run: mkdir -p /tmp/texlive
- name: Set up TeX Live
uses: xu-cheng/latex-action@v3
with:
root_file: |
resume.tex
cv.tex
latexmk_use_xelatex: false
- name: Compile LaTeX
run: |
latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode resume.tex
latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode cv.tex
- name: List generated PDFs
run: ls -la *.pdf
- name: Upload Private PDFs
- name: Upload Private PDFs (GitHub)
if: github.server_url == 'https://github.com'
uses: actions/upload-artifact@v4
with:
name: private-documents
path: |
resume.pdf
cv.pdf
- name: Upload Private PDFs (Gitea)
if: github.server_url != 'https://github.com'
uses: actions/upload-artifact@v3
with:
name: private-documents
path: |

41
.gitignore vendored
View File

@@ -1,38 +1,19 @@
# LaTeX build files
# Ignore build artifacts
build/
output/
# LaTeX temporary files
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc
*.fmt
*.fot
*.cb
*.cb2
.*.lb
*.pdf
*.dvi
*.xdv
*-converted-to.*
.pdf
*.fls
*.fdb_latexmk
*.synctex.gz
*.bbl
*.blg
*.synctex.gz
*.fdb_latexmk
# GitHub Secrets
# Personal information
.secrets
# Private information
personal_info_private.tex
personal_info.tex
# macOS system files
.DS_Store
.AppleDouble
.LSOverride
# Editor files
.vscode/
.idea/
# OS files
.DS_Store

View File

@@ -7,11 +7,10 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
texlive-full \
latexmk \
make \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspace
COPY . .
# For build
CMD ["latexmk", "-pdf", "-file-line-error", "-halt-on-error", "-interaction=nonstopmode", "resume.tex", "cv.tex"]
# Default command runs make
CMD ["make", "all"]

94
Makefile Normal file
View File

@@ -0,0 +1,94 @@
# Resume & CV Makefile
# Builds both public and private versions of resume and CV
# Variables
LATEX = latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode
DOCKER_IMAGE = resume-builder
OUTPUT_DIR = output
BUILD_DIR = build
SCRIPTS_DIR = scripts
# Export BUILD_DIR for scripts
export BUILD_DIR
# Targets
.PHONY: all clean docker-build docker public private resume cv help
all: public private
help:
@echo "Resume & CV Build System"
@echo ""
@echo "Targets:"
@echo " make all - Build both public and private versions (default)"
@echo " make public - Build public versions only"
@echo " make private - Build private versions only"
@echo " make resume - Build resume only (both versions)"
@echo " make cv - Build CV only (both versions)"
@echo " make docker - Build using Docker (if LaTeX not installed)"
@echo " make clean - Remove build artifacts"
@echo ""
@echo "Files will be generated in $(OUTPUT_DIR)/"
@echo "Build artifacts will be in $(BUILD_DIR)/"
# Create directories
$(OUTPUT_DIR):
@mkdir -p $(OUTPUT_DIR)
$(BUILD_DIR):
@mkdir -p $(BUILD_DIR)
# Build public versions
public: $(OUTPUT_DIR) $(BUILD_DIR)
@echo "Building public versions..."
@$(SCRIPTS_DIR)/generate-personal-info.sh public
@TEXINPUTS=".:$(BUILD_DIR):" $(LATEX) -output-directory=$(BUILD_DIR) resume.tex
@TEXINPUTS=".:$(BUILD_DIR):" $(LATEX) -output-directory=$(BUILD_DIR) cv.tex
@cp $(BUILD_DIR)/resume.pdf $(OUTPUT_DIR)/resume-public.pdf
@cp $(BUILD_DIR)/cv.pdf $(OUTPUT_DIR)/cv-public.pdf
@echo "Public versions built successfully!"
# Build private versions
private: $(OUTPUT_DIR) $(BUILD_DIR)
@echo "Building private versions..."
@$(SCRIPTS_DIR)/generate-personal-info.sh private
@TEXINPUTS=".:$(BUILD_DIR):" $(LATEX) -output-directory=$(BUILD_DIR) resume.tex
@TEXINPUTS=".:$(BUILD_DIR):" $(LATEX) -output-directory=$(BUILD_DIR) cv.tex
@cp $(BUILD_DIR)/resume.pdf $(OUTPUT_DIR)/resume-private.pdf
@cp $(BUILD_DIR)/cv.pdf $(OUTPUT_DIR)/cv-private.pdf
@echo "Private versions built successfully!"
# Build resume only
resume: $(OUTPUT_DIR) $(BUILD_DIR)
@echo "Building resume..."
@$(SCRIPTS_DIR)/generate-personal-info.sh public
@TEXINPUTS=".:$(BUILD_DIR):" $(LATEX) -output-directory=$(BUILD_DIR) resume.tex
@cp $(BUILD_DIR)/resume.pdf $(OUTPUT_DIR)/resume-public.pdf
@$(SCRIPTS_DIR)/generate-personal-info.sh private
@TEXINPUTS=".:$(BUILD_DIR):" $(LATEX) -output-directory=$(BUILD_DIR) resume.tex
@cp $(BUILD_DIR)/resume.pdf $(OUTPUT_DIR)/resume-private.pdf
@echo "Resume built successfully!"
# Build CV only
cv: $(OUTPUT_DIR) $(BUILD_DIR)
@echo "Building CV..."
@$(SCRIPTS_DIR)/generate-personal-info.sh public
@TEXINPUTS=".:$(BUILD_DIR):" $(LATEX) -output-directory=$(BUILD_DIR) cv.tex
@cp $(BUILD_DIR)/cv.pdf $(OUTPUT_DIR)/cv-public.pdf
@$(SCRIPTS_DIR)/generate-personal-info.sh private
@TEXINPUTS=".:$(BUILD_DIR):" $(LATEX) -output-directory=$(BUILD_DIR) cv.tex
@cp $(BUILD_DIR)/cv.pdf $(OUTPUT_DIR)/cv-private.pdf
@echo "CV built successfully!"
# Docker build
docker-build:
@docker build -t $(DOCKER_IMAGE) .
docker: docker-build
@echo "Building with Docker..."
@docker run --rm -v "$(PWD):/workspace" $(DOCKER_IMAGE)
# Clean build artifacts
clean:
@rm -rf $(BUILD_DIR) $(OUTPUT_DIR)
@echo "Cleaned all build artifacts"

View File

@@ -9,35 +9,103 @@ A LaTeX-based resume and CV generator with automated builds for both public and
This project demonstrates professional DevOps practices while providing a beautiful LaTeX resume:
- Automated builds via GitHub Actions for continuous deployment
- Secure handling of sensitive information through environment variables
- Containerized local development with Docker
- Makefile-based build system for easy local development
- Clean separation of content and styling
## Latest PDFs
The most recent public versions are always available at:
- Resume: `https://github.com/soconnor0919/resume-cv/releases/download/latest/resume.pdf`
- CV: `https://github.com/soconnor0919/resume-cv/releases/download/latest/cv.pdf`
If mirroring to Gitea:
- Resume: `https://git.soconnor.dev/soconnor/resume-cv/releases/download/latest/resume.pdf`
- CV: `https://git.soconnor.dev/soconnor/resume-cv/releases/download/latest/cv.pdf`
Replace `USERNAME` with your GitHub username after forking.
## Project Structure
```
.
├── cv.tex # Extended CV template
├── resume.tex # Resume template
├── resume.tex # Resume template (subset of CV)
├── shared/ # Shared components
│ ├── style/ # Common LaTeX styles
│ │ └── common.tex # Shared style definitions
│ └── sections/ # Shared content sections
│ ├── header.tex # Contact information
│ ├── education.tex
│ ├── skills.tex
│ ├── coursework.tex
│ └── publications.tex
├── scripts/ # Build helper scripts
│ └── generate-personal-info.sh
├── build/ # Build artifacts (git-ignored)
├── output/ # Final PDFs (git-ignored)
├── .secrets # Personal information (git-ignored)
├── build-local.sh # Local build script
├── Makefile # Build system
├── Dockerfile # Docker build environment
└── subfiles/
└── refs.bib # BibTeX references
└── refs.bib # BibTeX references
```
## Using as a Template
1. Fork this repository
2. Copy `.secrets-template` to `.secrets` and fill in your personal information
3. Run `./build-local.sh` to generate both public and private versions
3. Run `make` to generate both public and private versions
- Public version omits sensitive information like phone and address
- Private version includes all personal details from `.secrets`
- The script automatically generates and cleans up temporary files
## Building
### Using Make (Recommended)
```bash
# Build everything (public and private versions)
make
# Build only public versions
make public
# Build only private versions
make private
# Build only resume
make resume
# Build only CV
make cv
# Clean build artifacts
make clean
# Show all available targets
make help
```
### Using Docker
If you don't have LaTeX installed locally:
```bash
make docker
```
## Modifying Content
The project uses a modular structure to avoid duplication:
- Common sections are stored in `shared/sections/`
- Styling is defined in `shared/style/common.tex`
- The resume is a subset of the CV, reusing shared components
- Add new sections by creating files in `shared/sections/` and including them with `\input{}`
## CI/CD Pipeline
The repository showcases modern DevOps practices through GitHub Actions:
- Automated PDF generation on every push
- Public version published as GitHub release
- Public version published as GitHub release with stable URLs
- Private version securely generated for repository owner
- Environment variables managed through GitHub Secrets

View File

@@ -1,88 +0,0 @@
#!/bin/bash
# Source secrets if the file exists
if [ -f .secrets ]; then
source .secrets
else
echo "Warning: .secrets file not found. Building public version only."
fi
# Set defaults for missing variables
PERSONAL_NAME=${PERSONAL_NAME:-$(whoami)}
PERSONAL_EMAIL=${PERSONAL_EMAIL:-""}
PERSONAL_WEBSITE=${PERSONAL_WEBSITE:-""}
PERSONAL_SCHOOL_EMAIL=${PERSONAL_SCHOOL_EMAIL:-""}
PERSONAL_PHONE=${PERSONAL_PHONE:-""}
PERSONAL_HOME_ADDRESS_LINE1=${PERSONAL_HOME_ADDRESS_LINE1:-""}
PERSONAL_HOME_ADDRESS_LINE2=${PERSONAL_HOME_ADDRESS_LINE2:-""}
PERSONAL_SCHOOL_ADDRESS_LINE1=${PERSONAL_SCHOOL_ADDRESS_LINE1:-""}
PERSONAL_SCHOOL_ADDRESS_LINE2=${PERSONAL_SCHOOL_ADDRESS_LINE2:-""}
PERSONAL_SCHOOL_ADDRESS_LINE3=${PERSONAL_SCHOOL_ADDRESS_LINE3:-""}
# Function to cleanup
cleanup() {
rm -f *.aux *.log *.out *.fls *.fdb_latexmk *.synctex.gz *.bbl *.blg personal_info.tex
if [ -f personal_info.tex.bak ]; then
mv personal_info.tex.bak personal_info.tex
fi
}
trap cleanup EXIT
mkdir -p output
# Backup current personal_info.tex if it exists
if [ -f personal_info.tex ]; then
cp personal_info.tex personal_info.tex.bak
fi
# Build private version (if secrets are available)
if [ -n "$PERSONAL_PHONE" ] || [ -n "$PERSONAL_HOME_ADDRESS_LINE1" ] || [ -n "$PERSONAL_SCHOOL_ADDRESS_LINE1" ]; then
echo "Building private version..."
cat > personal_info.tex << EOL
% Private version of personal information
\newcommand{\personalName}{$PERSONAL_NAME}
\newcommand{\personalEmail}{$PERSONAL_EMAIL}
\newcommand{\personalPhone}{$PERSONAL_PHONE}
\newcommand{\personalWebsite}{$PERSONAL_WEBSITE}
\newcommand{\personalSchoolEmail}{$PERSONAL_SCHOOL_EMAIL}
\newcommand{\personalHomeAddressLineOne}{$PERSONAL_HOME_ADDRESS_LINE1}
\newcommand{\personalHomeAddressLineTwo}{$PERSONAL_HOME_ADDRESS_LINE2}
\newcommand{\personalSchoolAddressLineOne}{$PERSONAL_SCHOOL_ADDRESS_LINE1}
\newcommand{\personalSchoolAddressLineTwo}{$PERSONAL_SCHOOL_ADDRESS_LINE2}
\newcommand{\personalSchoolAddressLineThree}{$PERSONAL_SCHOOL_ADDRESS_LINE3}
EOL
docker build --platform linux/arm64 -t resume-builder .
docker run --platform linux/arm64 --rm \
-v "$(pwd):/workspace" \
-v "$(pwd)/output:/workspace/output" \
resume-builder bash -c "latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode resume.tex cv.tex && mv *.pdf output/"
mv output/resume.pdf output/resume-private.pdf 2>/dev/null || true
mv output/cv.pdf output/cv-private.pdf 2>/dev/null || true
fi
# Build public version
echo "Building public version..."
cat > personal_info.tex << EOL
% Public version of personal information
\newcommand{\personalName}{$PERSONAL_NAME}
\newcommand{\personalEmail}{$PERSONAL_EMAIL}
\newcommand{\personalPhone}{~}
\newcommand{\personalWebsite}{$PERSONAL_WEBSITE}
\newcommand{\personalSchoolEmail}{$PERSONAL_SCHOOL_EMAIL}
\newcommand{\personalHomeAddressLineOne}{~}
\newcommand{\personalHomeAddressLineTwo}{~}
\newcommand{\personalSchoolAddressLineOne}{~}
\newcommand{\personalSchoolAddressLineTwo}{~}
\newcommand{\personalSchoolAddressLineThree}{~}
EOL
docker run --platform linux/arm64 --rm \
-v "$(pwd):/workspace" \
-v "$(pwd)/output:/workspace/output" \
resume-builder bash -c "latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode resume.tex cv.tex && mv resume.pdf output/resume-public.pdf && mv cv.pdf output/cv-public.pdf"
echo "Build complete!"
echo "Generated files in output/:"
ls -l output/

374
cv.tex
View File

@@ -1,253 +1,237 @@
\documentclass{article}
\setlength{\parindent}{0pt}
\setlength{\parskip}{0em}
\usepackage{enumitem}
\usepackage{hyperref}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[left=0.5in,top=0.5in,right=0.5in,bottom=0.5in]{geometry}
% Define spacing variables
\newlength{\sectspaceabove}
\newlength{\sectspacebelow}
\setlength{\sectspaceabove}{-0em} % Space before section titles
\setlength{\sectspacebelow}{-0.5em} % Space after section titles
% Include common style
\input{shared/style/common}
\usepackage{etoolbox}
\patchcmd{\thebibliography}{\section*{\refname}}{}{}{}
% Hide page numbers
\pagestyle{empty}
% Custom macro for small caps and bold
\newcommand{\textscbf}[1]{\textbf{\textsc{#1}}}
% Custom macro for section headers with controlled spacing
\newcommand{\resumesection}[1]{%
\vspace{\sectspaceabove}%
\begin{center}
\textscbf{#1}
\end{center}%
\vspace{\sectspacebelow}%
}
% Include personal information
\input{personal_info}
% Include personal information (check build/ first, then root)
\IfFileExists{build/personal_info.tex}{\input{build/personal_info}}{\input{personal_info}}
\begin{document}
\begin{center}
{\large \textscbf{\personalName}}
\end{center}
\vspace{0.5em}
% Header with contact information
\input{shared/sections/header}
\noindent
\begin{minipage}[t]{0.33\textwidth}
\raggedright
\ifx\personalSchoolAddressLineOne\empty\else
\mbox{}\par\nobreak\vspace{-\baselineskip}
\personalSchoolAddressLineOne\\%
\personalSchoolAddressLineTwo\\%
\personalSchoolAddressLineThree%
\fi
\end{minipage}%
\hfill%
\begin{minipage}[t]{0.33\textwidth}
\centering
\href{mailto:\personalEmail}{\personalEmail}%
\ifx\personalSchoolEmail\empty\else
\\\href{mailto:\personalSchoolEmail}{\personalSchoolEmail}%
\fi
\\\href{https://\personalWebsite}{\personalWebsite}%
\ifx\personalPhone\empty\else
\\\personalPhone%
\fi
\end{minipage}%
\hfill%
\begin{minipage}[t]{0.33\textwidth}
\raggedleft
\ifx\personalHomeAddressLineOne\empty\else
\personalHomeAddressLineOne\\%
\personalHomeAddressLineTwo%
\fi
\end{minipage}
\resumesection{Research Interests}
\vspace{1em}
My research focuses on advancing human-robot interaction through improved experimental methodologies and accessible research tools. I am particularly interested in Wizard-of-Oz experimental frameworks, reproducibility in HRI studies, and developing platforms that democratize access to HRI research across disciplines. My work with HRIStudio addresses critical challenges in experimental reproducibility and cross-platform robot control, enabling researchers without specialized programming expertise to conduct rigorous HRI studies. I am passionate about exploring how we can make robot behaviors more trustworthy and explainable, particularly through transparent experimental design and comprehensive data logging. Looking forward, I aim to investigate how standardized experimental frameworks can advance our understanding of human-robot trust, collaboration dynamics, and the design of intuitive robot interfaces across diverse application domains.
% Professional Summary Section
\noindent
\begin{minipage}{\textwidth}
\textbf{Professional Summary:} Computer Science and Engineering student with extensive experience in software development, robotics research, and technical leadership.
Demonstrated track record of building scalable solutions and leading cross-functional teams.
Published researcher in human-robot interaction with experience in both academic and commercial software development.
\end{minipage}
% Education section
\input{shared/sections/education}
\resumesection{Education}
% Publications - moved higher for PhD applications
\input{shared/sections/publications}
\textscbf{Bucknell University} \hfill \textscbf{Lewisburg, PA}
\resumesection{Research Experience}
\textbf{Bachelor of Science in Computer Science and Engineering} \hfill \textbf{Expected Graduation: May 2026}
\textscbf{Human-Robot Interaction Research} \hfill \textscbf{Bucknell University}
\textbf{Lead Researcher - HRIStudio Platform Development} \hfill \textbf{Jan 2023 Present}
\textit{Advisor: Dr. L. Felipe Perrone, Computer Science Department}
\textit{Research Commitment: 3.5 credits of individual study (CSCI 278/378) across 6 semesters}
\begin{itemize}[noitemsep,topsep=2pt]
\item Cumulative Engineering GPA: 3.90. Dean's List: Fall 2022, Fall 2023, Spring 2024
\item Developing HRIStudio, a novel web-based platform addressing reproducibility challenges in Wizard-of-Oz HRI studies, with two first-author publications at IEEE RO-MAN 2024 and 2025
\item Architected modular plugin system enabling cross-platform robot control (NAO, Pepper, custom platforms) through JSON-defined interfaces, eliminating need for specialized programming knowledge
\item Implemented WebSocket-based bidirectional communication protocols for low-latency robot teleoperation with real-time state synchronization
\item Designed comprehensive data logging system capturing interaction timelines, robot states, and experimental conditions with microsecond precision for reproducibility analysis
\item Developed RESTful API leveraging Robot Operating System (ROS) for extensible robot integration across multiple platforms
\item Currently developing honors thesis evaluating platform effectiveness through user studies and analyzing impact on interdisciplinary HRI research accessibility
\item Conducted systematic literature review identifying key challenges in WoZ methodology reproducibility, informing platform design decisions and feature prioritization
\end{itemize}
\resumesection{Experience}
\textscbf{Interdisciplinary Research Collaboration} \hfill \textscbf{Bucknell University}
\textbf{Computer Science Research Assistant - Chemical Engineering Department} \hfill \textbf{Aug 2023 May 2025}
\textit{Collaborating with Chemical Engineering Department on Environmental Monitoring}
\begin{itemize}[noitemsep,topsep=2pt]
\item Developed automated data collection and analysis tools for environmental research, processing real-time sensor data streams for atmospheric and water quality monitoring
\item Built custom Python pipelines integrating multiple data sources, enabling researchers to identify patterns in environmental data that informed conference presentations
\item Bridged computer science expertise with domain-specific research needs, demonstrating ability to collaborate across disciplines
\end{itemize}
\textscbf{RoboLab@Bucknell} \hfill \textscbf{Bucknell University}
\textbf{Founding Member and Research Participant} \hfill \textbf{Sep 2023 - Present}
\textit{Interdisciplinary lab bridging Computer Science and Psychology perspectives on HRI}
\begin{itemize}[noitemsep,topsep=2pt]
\item Participate in weekly research seminars exploring human-robot trust, automation bias, and ethical implications of autonomous systems
\item Contribute to discussions on experimental design for HRI studies, bringing technical perspective to psychological research questions
\end{itemize}
\resumesection{Teaching Experience}
\textscbf{Computer Science Department} \hfill \textscbf{Bucknell University}
\textbf{Teaching Assistant - Software Engineering \& Design} \hfill \textbf{Jan 2024 - Present}
\begin{itemize}[noitemsep,topsep=2pt]
\item Mentor 150+ students in software engineering principles, design patterns, and collaborative development practices
\item Developed automated testing frameworks with personalized feedback, improving learning outcomes while streamlining assessment processes
\item Created supplementary materials connecting theoretical concepts to real-world applications, drawing from industry experience
\item Hold regular office hours and code review sessions, fostering deep understanding of software architecture principles
\end{itemize}
\textbf{Computer Science Tutor - Engineering Study Spot} \hfill \textbf{Aug 2024 - Dec 2024}
\begin{itemize}[noitemsep,topsep=2pt]
\item Provided one-on-one tutoring across the entire computer science curriculum, from introductory programming to advanced algorithms
\item Developed personalized learning strategies for students with diverse backgrounds and learning styles
\end{itemize}
\textscbf{Engineering Department} \hfill \textscbf{Bucknell University}
\textbf{Teaching Assistant - Engineering Design Experience} \hfill \textbf{Aug 2023 - Dec 2023}
\begin{itemize}[noitemsep,topsep=2pt]
\item Guided 40+ engineering students through Arduino programming and breadboard circuit design
\item Supervised hands-on laboratory sessions involving microcontroller programming and sensor integration
\item Facilitated discussions on engineering ethics and the societal implications of embedded system design
\end{itemize}
\textscbf{Physics Department} \hfill \textscbf{Bucknell University}
\textbf{Teaching Assistant - Experimental Physics Laboratory} \hfill \textbf{Aug 2023 - May 2024}
\begin{itemize}[noitemsep,topsep=2pt]
\item Instructed 100+ students in experimental design, data analysis, and scientific writing
\item Emphasized connection between theoretical physics principles and experimental validation
\item Guided students through error analysis and uncertainty quantification in experimental measurements
\end{itemize}
\resumesection{Selected Projects}
\textbf{Computer System from Scratch - Nand2Tetris (ECEG 431)} \hfill \textbf{HDL/Assembly/Java}
\begin{itemize}[noitemsep,topsep=2pt]
\item Built complete computer system from NAND gates through operating system, demonstrating comprehensive understanding of computer architecture
\item Designed and simulated all hardware components including logic gates, ALU, RAM, and CPU using hardware description language
\item Developed complete software stack: assembler for machine code translation, virtual machine translator for intermediate code, and compiler for high-level object-oriented language
\item Implemented functional operating system with memory management, I/O handling, and graphics capabilities
\item Technologies: Hardware Description Language (HDL), Assembly, Jack (object-oriented language), Java
\end{itemize}
\textbf{HRIStudio - Web-Based Wizard-of-Oz Platform} \hfill \textbf{TypeScript/React/WebRTC}
\begin{itemize}[noitemsep,topsep=2pt]
\item Architected full-stack web application for managing HRI experiments with real-time robot control interfaces
\item Implemented WebSocket-based bidirectional communication protocols for low-latency robot teleoperation
\item Designed RESTful API leveraging Robot Operating System with JSON-defined plugins for extensibility across multiple robot platforms
\item Created comprehensive logging system capturing interaction data, timestamps, and experimental conditions for reproducibility
\item Technologies: Next.js, React, TypeScript, Node.js, WebSockets, PostgreSQL, Docker
\end{itemize}
\textbf{Autonomous Vehicle Control System - Chem-E-Car Competition} \hfill \textbf{C++/Arduino}
\begin{itemize}[noitemsep,topsep=2pt]
\item Designed embedded control system for autonomous hydrogen fuel cell-powered vehicle using finite state machine architecture
\item Implemented real-time sensor fusion combining spectrometer readings and power monitoring with calculated stopping algorithms
\item Developed PlatformIO-based build system with hardware abstraction layer for testing and simulation
\item Achieved precise distance control (±10cm) through chemical reaction timing at AIChE National Competition
\item Technologies: C++, Arduino, PlatformIO, I2C/SPI protocols, finite state machines
\end{itemize}
\textbf{Formula One Performance Prediction Using Machine Learning} \hfill \textbf{Python/ML}
\begin{itemize}[noitemsep,topsep=2pt]
\item Developed ensemble machine learning models (LightGBM, XGBoost, Random Forest) to predict F1 lap times with high accuracy
\item Engineered features from weather data, track characteristics, and historical performance using domain knowledge
\item Implemented cross-validation and hyperparameter optimization for model evaluation across multiple racing circuits
\item Analyzed feature importance to understand factors influencing racing performance
\item Technologies: Python, LightGBM, XGBoost, Random Forest, pandas, scikit-learn, FastF1 API
\end{itemize}
\textbf{Real-time Racing Statistics Platform} \hfill \textbf{TypeScript/Next.js}
\begin{itemize}[noitemsep,topsep=2pt]
\item Built production system serving 1500+ concurrent users and 250k+ monthly visitors
\item Implemented WebSocket-based real-time data streaming with automatic reconnection and state synchronization
\item Designed responsive UI with accessibility features meeting WCAG 2.1 AA standards
\item Optimized database queries reducing page load times by 60\% through intelligent caching and indexing
\item Technologies: Next.js, TypeScript, PostgreSQL, Docker, DigitalOcean
\end{itemize}
\resumesection{Professional Experience}
\textscbf{Riverhead Raceway} \hfill \textscbf{Riverhead, NY}
\textbf{Software Developer} \hfill \textbf{Oct 2020 Present}
\begin{itemize}[noitemsep,topsep=2pt]
\item Engineered a digital registration platform that modernized paper-based processes, integrating payment processing and real-time number availability checking, eliminating manual processing delays
\item Built and deployed a high-performance race statistics platform serving 1500+ concurrent users, providing real-time access to driver positions, rankings, and lineups, replacing physical bulletin boards
\item Developed an intuitive content management system tailored for non-technical staff, enabling content management through familiar interfaces while maintaining website consistency
\item Orchestrated migration to containerized architecture using Docker and implemented automated backup systems to improve reliability
\item Architected and deployed production systems handling 250k+ monthly users and \$100,000+ in payment processing
\item Led digital transformation initiative, replacing legacy paper-based systems with modern web applications
\item Implemented CI/CD pipelines, containerization, and infrastructure as code using Docker and GitHub Actions
\item Developed RESTful APIs and microservices architecture for scalable, maintainable systems
\end{itemize}
\textbf{IT Administrator} \hfill \textbf{Oct 2020 - Apr 2024}
\begin{itemize}[noitemsep,topsep=2pt]
\item Engineered migration from consumer desktop computers to enterprise thin clients with virtualization servers, improving reliability and remote access capabilities enabling continued support while away at university
\item Implemented automated backup solutions using the Backblaze platform with version control and disaster recovery procedures
\item Deployed Windows Server with Active Directory for centralized user management and file storage
\item Established standardized workstation images and software deployment protocols across facilities
\end{itemize}
\textbf{Media Producer} \hfill \textbf{Oct 2020 - Apr 2024}
\begin{itemize}[noitemsep,topsep=2pt]
\item Designed and deployed facility's first multi-camera live streaming system with ATEM production switchers and custom graphics pipeline
\item Developed real-time graphics integration system connecting race timing data to broadcast overlays
\item Operated replay and instant highlight system for live broadcast to FloRacing and NBC Sports networks
\item Managed live production during race events, coordinating camera operators, replay, and graphics control
\end{itemize}
\textscbf{Bucknell University} \hfill \textscbf{Lewisburg, PA}
\textbf{Computer Science Researcher - Human-Robot Interaction} \hfill \textbf{Jan 2023 Present}
\begin{itemize}[noitemsep,topsep=2pt]
\item Engineered a modular web-based experimental platform for human-robot interaction studies using the Wizard of Oz experimental paradigm and ROS2 and C++/Python
\item Published and presented a first-author paper and poster at the 33rd IEEE International Conference on Robot and Human Interactive Communication
\end{itemize}
\textbf{Computer Science Research Assistant - Chemical Engineering Department} \hfill \textbf{Aug 2023 Present}
\begin{itemize}[noitemsep,topsep=2pt]
\item Designed and implemented an automated data collection system using a microcontroller and C++ to collect real-time temperature, pressure, and humidity data in harsh environments
\item Currently integrating robotic arm into existing coffee research project to automate repeated brewing-related tasks and data collection, freeing up researchers from unskilled repetitive work
\end{itemize}
\textbf{Computer Science Teaching Assistant} \hfill \textbf{Jan 2024 - Present}
\begin{itemize}[noitemsep,topsep=2pt]
\item Led lecture and lab sections focusing on agile development practices and following scrum guidelines for group work in the field of computer science.
\item Assisted students with classwork, homework, and lab assignments, focusing on teaching students how to find the answers to their questions using existing documentation
\end{itemize}
\textbf{Engineering Study Spot Tutor - Computer Science} \hfill \textbf{Aug 2024 - Present}
\begin{itemize}[noitemsep,topsep=2pt]
\item Held drop-in help sessions for computer science students throughout all stages of the curriculum, assisting with introductory courses, software engineering, and systems programming assignments
\end{itemize}
\textbf{Engineering Teaching Assistant} \hfill \textbf{Aug 2023 - Dec 2023}
\begin{itemize}[noitemsep,topsep=2pt]
\item Led recurring workshops on Arduino-based microcontroller programming, assembly, and wiring for multidisciplinary student engineering projects
\item Assisted students during class and lab sections on their design session projects, with emphasis on engineering ethics education
\end{itemize}
\textbf{Physics Teaching Assistant} \hfill \textbf{Aug 2023 - May 2024}
\begin{itemize}[noitemsep,topsep=2pt]
\item Assisted students during laboratory sections with introductory and exploratory physics lab experiments, working with industry-standard data collection and analysis tools
\item Modernized IT infrastructure from consumer to enterprise-grade systems, improving uptime to 99.9\%
\item Implemented comprehensive backup and disaster recovery protocols protecting critical business data
\item Automated system administration tasks using PowerShell and Bash scripting
\end{itemize}
\textscbf{Miller Place School District} \hfill \textscbf{Miller Place, NY}
\textbf{Information Technology Intern} \hfill \textbf{Sep 2020 - May 2022}
\begin{itemize}[noitemsep,topsep=2pt]
\item Worked under senior technical staff to assist faculty, staff and students with district-owned printers and computers
\item Assisted staff in one-laptop per person deployment and support in response to the COVID-19 pandemic, teaching students how to fully utilize newly-available remote learning tools and programs
\item Supported 1000+ students and faculty during COVID-19 transition to remote learning
\item Deployed and maintained educational technology platforms and troubleshooted hardware/software issues
\end{itemize}
\resumesection{Leadership \& Activities}
\resumesection{Activities}
\textscbf{AIChE Chem-E-Car Competition Team} \hfill \textscbf{Bucknell University}
\textscbf{AIChE Chem-E-Car Competition Team} \hfill \textscbf{Lewisburg, PA}
\textbf{President, Electrical and Mechanical Team Lead} \hfill \textbf{Jan 2023 Present}
\textbf{Former President, Current Electrical/Mechanical Team Lead} \hfill \textbf{Jan 2023 Present}
\begin{itemize}[noitemsep,topsep=2pt]
\item Pioneered team's first custom hardware solution: designed and fabricated a microcontroller-based control system with isolated power circuits for hydrogen fuel cell regulation
\item Implemented finite state machine architecture integrating spectrometer readings, relay control, and LED feedback for real-time reaction monitoring in isolated chamber conditions
\item Led 15-member interdisciplinary team in designing autonomous chemical-powered vehicles for national competition
\item Introduced agile development methodologies and version control practices to hardware development process
\item Mentored junior members in embedded systems programming and control theory
\end{itemize}
\textscbf{Bucknell Coffee Society} \hfill \textscbf{Lewisburg, PA}
\textscbf{Bucknell Coffee Society} \hfill \textscbf{Bucknell University}
\textbf{Treasurer} \hfill \textbf{Oct 2023 Present}
\textbf{Co-Founder and Treasurer} \hfill \textbf{Oct 2023 Present}
\begin{itemize}[noitemsep,topsep=2pt]
\item Co-established and launched a new campus organization, managing financial operations and coordinating event logistics.
\item Presented on ongoing research for publication by Bucknell's student story, engineering report, and fall magazine
\item Co-established campus organization promoting coffee education and community building
\item Manage \$5,000+ annual budget, coordinate events, and maintain vendor relationships
\item Organized educational workshops on coffee science, brewing techniques, and sustainability
\end{itemize}
\textscbf{RoboLab@Bucknell} \hfill \textscbf{Lewisburg, PA}
\resumesection{Conferences \& Presentations}
\textbf{Founding Member} \hfill \textbf{Sep 2023 - Present}
\textscbf{IEEE RO-MAN 2025} \hfill \textscbf{Eindhoven, The Netherlands}
\textbf{34th International Conference on Robot and Human Interactive Communication} \hfill \textbf{Aug 2025}
\begin{itemize}[noitemsep,topsep=2pt]
\item Led and participated in group discussions in a new lab bridging computer science and psychology perspectives on human-robot interaction, working with the complexities of human-robot trust, job replacement, and autonomy
\item Presented: "A Web-Based Wizard-of-Oz Platform for Collaborative and Reproducible Human-Robot Interaction Research"
\end{itemize}
\resumesection{Conferences and Competitions}
\textscbf{IEEE RO-MAN 2024} \hfill \textscbf{Pasadena, CA}
\textscbf{IEEE International Conference on Robot and Human Interactive Communication} \hfill \textscbf{Aug 2024}
\textbf{33rd International Conference on Robot and Human Interactive Communication} \hfill \textbf{Aug 2024}
\begin{itemize}[noitemsep,topsep=2pt]
\item Presented a first-author paper in a poster session regarding my project HRIStudio, a novel tool enabling human-robot interaction experiments to be conducted by those unfamiliar with robotic platforms and programming
\item Presented: "HRIStudio: A Framework for Wizard-of-Oz Experiments in HRI Studies" (Late Breaking Report)
\end{itemize}
\textbf{AIChE Annual Student Conference} \hfill \textscbf{Oct 2024}
\textscbf{AIChE Annual Student Conference} \hfill \textscbf{San Diego, CA}
\textbf{Chem-E-Car Performance Competition} \hfill \textbf{Oct 2024}
\begin{itemize}[noitemsep,topsep=2pt]
\item Competed in the 2024 National AIChE Chem-E-Car Performance Competition with Bucknell's car, H\textsubscript{2}Go
\item Presented the design of our car in a poster session, heavily focusing on the safety-related aspects of our design
\item Competed in National Chem-E-Car Performance Competition with autonomous hydrogen fuel cell vehicle
\item Presented poster on safety-critical embedded systems design
\end{itemize}
\textbf{AIChE Mid-Atlantic Regional Conference} \hfill \textscbf{Apr 2024}
\textscbf{AIChE Mid-Atlantic Regional Conference} \hfill \textscbf{UMBC, Baltimore, MD}
\textbf{Chem-E-Car Performance Competition} \hfill \textbf{Apr 2024}
\begin{itemize}[noitemsep,topsep=2pt]
\item Placed second overall in the 2024 Mid-Atlantic AIChE Chem-E-Car Performance Competition with our car, H\textsubscript{2}Go
\item Presented the design of our car in a poster session, heavily focusing on the safety-related aspects of our design
\item Placed 2nd overall in regional Chem-E-Car Competition
\end{itemize}
\textbf{Specialty Coffee Exposition} \hfill \textscbf{Mar 2024}
% Shared sections
\input{shared/sections/coursework}
\input{shared/sections/skills}
\resumesection{Honors \& Awards}
\begin{itemize}[noitemsep,topsep=2pt]
\item Attended as a representative of the Bucknell Coffee Society, meeting with vendors and equipment manufacturers to request sponsorship, donations, and educational materials for our club
\item Dean's List (6 semesters): Fall 2022, Fall 2023, Spring 2024, Fall 2024, Spring 2025, Fall 2025
\item GPA: 3.67/4.0 \textbullet{} Engineering GPA: 3.88/4.0
\item AIChE Mid-Atlantic Chem-E-Car Competition - 2nd Place (2024)
\end{itemize}
\textbf{AIChE Annual Student Conference} \hfill \textscbf{Oct 2023}
\begin{itemize}[noitemsep,topsep=2pt]
\item Attended as a representative of Bucknell's Chem-E-Car team, discussing designs and reactions with other teams to kickstart development of the next year's car
\end{itemize}
\textbf{AIChE Mid-Atlantic Regional Conference} \hfill \textscbf{Apr 2023}
\begin{itemize}[noitemsep,topsep=2pt]
\item Competed in the 2023 Mid-Atlantic AIChE Chem-E-Car Performance Competition with our car, H\textsubscript{2}Go
\item Presented the design of our car in a poster session, heavily focusing on the safety-related aspects of our design
\end{itemize}
\resumesection{Publications}
\nocite{*}
\bibliography{subfiles/refs.bib}
\bibliographystyle{plain}
\resumesection{Relevant Coursework}
\textbf{Systems \& Architecture:} Computer Systems, Operating Systems Design, Computer Networks \& Security
\textbf{Software Development:} Software Engineering, Data Structures \& Algorithms, Research Methods, Ethics in Computing
\textbf{Mathematics:} Calculus II, Linear Algebra, Discrete Mathematics, Statistics, Applied Statistics with R, Data Mining
\resumesection{Skills \& Interests}
\textbf{Languages \& Frameworks:} Java, C/C++, Python, JavaScript/TypeScript, React, Next.js, PHP, SQL
\textbf{Backend \& DevOps:} REST APIs, MySQL, PostgreSQL, Docker, Apache Web Server, NGINX, ROS2
\textbf{Cloud \& Infrastructure:} AWS, GCP, Azure, Backblaze, Linux (RHEL/Debian), CI/CD
\textbf{Development Tools:} Git, JetBrains Suite, VS Code, Cursor, Linux CLI
\end{document}
\end{document}

View File

@@ -1,183 +1,70 @@
\documentclass{article}
\setlength{\parindent}{0pt}
\setlength{\parskip}{0em}
\usepackage{enumitem}
\usepackage{hyperref}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[left=0.5in,top=0.5in,right=0.5in,bottom=0.5in]{geometry}
% Define spacing variables
\newlength{\sectspaceabove}
\newlength{\sectspacebelow}
\setlength{\sectspaceabove}{-0.5em} % Space before section titles
\setlength{\sectspacebelow}{-0.5em} % Space after section titles
% Include common style
\input{shared/style/common}
\usepackage{etoolbox}
\patchcmd{\thebibliography}{\section*{\refname}}{}{}{}
% Hide page numbers
\pagestyle{empty}
% Custom macro for small caps and bold
\newcommand{\textscbf}[1]{\textbf{\textsc{#1}}}
% Custom macro for section headers with controlled spacing
\newcommand{\resumesection}[1]{%
\vspace{\sectspaceabove}%
\begin{center}
\textscbf{#1}
\end{center}%
\vspace{\sectspacebelow}%
}
% Include personal information
\input{personal_info}
% Include personal information (check build/ first, then root)
\IfFileExists{build/personal_info.tex}{\input{build/personal_info}}{\input{personal_info}}
\begin{document}
\begin{center}
{\large \textscbf{\personalName}}
\end{center}
\vspace{0.5em}
% Header with contact information
\input{shared/sections/header}
\noindent
\begin{minipage}[t]{0.33\textwidth}
\raggedright
\ifx\personalSchoolAddressLineOne\empty\else
\mbox{}\par\nobreak\vspace{-\baselineskip}
\personalSchoolAddressLineOne\\%
\personalSchoolAddressLineTwo\\%
\personalSchoolAddressLineThree%
\fi
\end{minipage}%
\hfill%
\begin{minipage}[t]{0.33\textwidth}
\centering
\href{mailto:\personalEmail}{\personalEmail}%
\ifx\personalSchoolEmail\empty\else
\\\href{mailto:\personalSchoolEmail}{\personalSchoolEmail}%
\fi
\\\href{https://\personalWebsite}{\personalWebsite}%
\ifx\personalPhone\empty\else
\\\personalPhone%
\fi
\end{minipage}%
\hfill%
\begin{minipage}[t]{0.33\textwidth}
\raggedleft
\ifx\personalHomeAddressLineOne\empty\else
\personalHomeAddressLineOne\\%
\personalHomeAddressLineTwo%
\fi
\end{minipage}
% Education section
\input{shared/sections/education}
\vspace{1em}
% Publications section (research credibility)
\input{shared/sections/publications-resume}
\resumesection{Education}
\textscbf{Bucknell University} \hfill \textscbf{Lewisburg, PA}
\textbf{Bachelor of Science in Computer Science and Engineering} \hfill \textbf{Expected Graduation: May 2026}
\begin{itemize}[noitemsep,topsep=2pt]
\item Cumulative Engineering GPA: 3.90. Dean's List: Fall 2022, Fall 2023, Spring 2024
\end{itemize}
\resumesection{Experience}
\resumesection{Professional Experience}
\textscbf{Riverhead Raceway} \hfill \textscbf{Riverhead, NY}
\textbf{Software Developer} \hfill \textbf{Oct 2020 Present}
\begin{itemize}[noitemsep,topsep=2pt]
\item Engineered a digital registration platform that modernized paper-based processes, integrating payment processing and real-time number availability checking, eliminating manual processing delays
\item Built and deployed a high-performance race statistics platform serving 1500+ concurrent users, providing real-time access to driver positions, rankings, and lineups, replacing physical bulletin boards
\item Developed an intuitive content management system tailored for non-technical staff, enabling content management through familiar interfaces while maintaining website consistency
\item Orchestrated migration to containerized architecture using Docker and implemented automated backup systems to improve reliability
\item Architected and deployed full-stack real-time statistics platform serving 1500+ concurrent users and 250k+ monthly visitors using Next.js, TypeScript, PostgreSQL, and Docker
\item Engineered scalable backend infrastructure with optimized database queries and WebSocket connections achieving sub-100ms response times for live race data updates across 20+ simultaneous events
\item Designed and implemented RESTful APIs for mobile applications and third-party integrations, processing 10M+ API requests monthly
\item Built automated CI/CD pipelines with GitHub Actions and monitoring systems, maintaining 99.9\% uptime across racing season
\end{itemize}
%\textscbf{Bucknell University} \hfill \textscbf{Lewisburg, PA}
%
%\textbf{Computer Science Researcher - Human-Robot Interaction} \hfill \textbf{Jan 2023 Present}
%\begin{itemize}[noitemsep,topsep=2pt]
% \item Co-founded an interdisciplinary research lab and meeting group, engaging peers in the world of human-robot interaction
% \item Led ongoing development of a platform for Human-Robot Interaction experiments, resulting in a first-author publication
%\end{itemize}
%
%\textbf{Teaching Assistant and Tutor - Computer Science, Engineering, and Physics} \hfill \textbf{Aug 2023 - Present}
%\begin{itemize}[noitemsep,topsep=2pt]
%\item Mentored diverse student groups in Java programming, Arduino development, and physics lab experiments, adapting teaching methods to various learning styles
%\item Guided engineering teams through agile development cycles while emphasizing ethical design considerations and proper documentation
%\item Supported data analysis across disciplines using Excel, Logger Pro, and custom software tools
%\item Fostered inclusive learning environments through hands-on workshops and one-on-one tutoring sessions
%\end{itemize}
%
%\textbf{Computer Science Research Assistant - Chemical Engineering Department} \hfill \textbf{Aug 2023 Present}
%\begin{itemize}[noitemsep,topsep=2pt]
% \item Developed sensor systems to improve data collection in coffee-related biochemical research, enhancing accuracy and efficiency of experiments using custom software tools to streamline data analysis.
%\end{itemize}
%
\textscbf{Bucknell University} \hfill \textscbf{Lewisburg, PA}
\textbf{Computer Science Researcher - Human-Robot Interaction} \hfill \textbf{Jan 2023 Present}
\textbf{Teaching Assistant - Software Engineering \& Engineering Design} \hfill \textbf{Aug 2023 Present}
\begin{itemize}[noitemsep,topsep=2pt]
\item Engineered a modular web-based experimental platform for human-robot interaction studies using the Wizard of Oz experimental paradigm and ROS2 and C++/Python, resulting in a first-author publication
\item Co-founded and led weekly research discussions in a new lab bridging computer science and psychology perspectives on human-robot interaction
\item Mentor 150+ students across software engineering, design patterns, and embedded systems (Arduino, microcontrollers)
\item Developed automated testing frameworks and grading tools, improving learning outcomes while streamlining assessment processes
\end{itemize}
\textbf{Computer Science Research Assistant - Chemical Engineering Department} \hfill \textbf{Aug 2023 Present}
\resumesection{Research Experience}
\textscbf{Bucknell University} \hfill \textscbf{Lewisburg, PA}
\textbf{Human-Robot Interaction Researcher} \hfill \textbf{Jan 2023 Present}
\begin{itemize}[noitemsep,topsep=2pt]
\item Designed and implemented an automated data collection system using a microcontroller and C++ to collect real-time temperature, pressure, and humidity data in harsh environments
\item Currently integrating robotic arm into existing coffee research project to automate repeated brewing-related tasks and data collection, freeing up researchers from unskilled repetitive work
\item Published 2 first-author papers at IEEE RO-MAN (2024, 2025) on novel HRI experimental platform enabling reproducible Wizard-of-Oz studies across multiple robot platforms
\item Architected modular plugin system with WebSocket-based teleoperation and RESTful API integrating ROS for NAO, Pepper, and custom robots
\end{itemize}
\textbf{Teaching Assistant \& Engineering Tutor} \hfill \textbf{Aug 2023 - Present}
\resumesection{Selected Projects}
\textbf{Computer System from Scratch - Nand2Tetris} \hfill \textbf{HDL/Assembly/Java}
\begin{itemize}[noitemsep,topsep=2pt]
\item Led lab sessions in computer science (agile development, Java programming), engineering (Arduino, embedded systems), and physics (discovery experiments and data analysis)
\item Developed automated testing frameworks to streamline assignment grading and provide detailed personalized feedback
\item Provided technical mentorship at the Engineering Study Spot, focusing on programming concepts and system design
\item Designed complete computer system from hardware (NAND gates → CPU) through software (assembler → OS), demonstrating full-stack systems understanding critical for robotics applications
\end{itemize}
\resumesection{Activities}
%\textscbf{Bucknell Coffee Society} \hfill \textscbf{Lewisburg, PA}
%
%\textbf{Treasurer} \hfill \textbf{Oct 2023 Present}
%\begin{itemize}[noitemsep,topsep=2pt]
% \item Co-established and launched a new campus organization, managing financial operations and coordinating event logistics.
%\end{itemize}
\textscbf{AIChE Chem-E-Car Competition Team} \hfill \textscbf{Lewisburg, PA}
\textbf{President, Electrical and Mechanical Team Lead} \hfill \textbf{Jan 2023 Present}
\textbf{Autonomous Vehicle Control - Chem-E-Car Competition} \hfill \textbf{C++/Arduino}
\begin{itemize}[noitemsep,topsep=2pt]
\item Pioneered team's first custom hardware solution: designed and fabricated a microcontroller-based control system with isolated power circuits for hydrogen fuel cell regulation
\item Implemented finite state machine architecture integrating spectrometer readings, relay control, and LED feedback for real-time reaction monitoring in isolated chamber conditions
\item Led 15-member team designing autonomous hydrogen fuel cell vehicle; implemented embedded control system with real-time sensor fusion achieving ±10cm precision at AIChE National Competition (2nd place)
\end{itemize}
\resumesection{Publications}
\textbf{HRIStudio Research Platform} \hfill \textbf{Next.js/TypeScript/ROS}
\begin{itemize}[noitemsep,topsep=2pt]
\item Full-stack web application for managing HRI experiments with WebSocket robot control and comprehensive data logging
\end{itemize}
\nocite{*}
\bibliography{subfiles/refs.bib}
\bibliographystyle{plain}
% Technical Skills
\input{shared/sections/skills-resume}
\resumesection{Relevant Coursework}
\textbf{Systems \& Architecture:} Computer Systems, Operating Systems Design, Computer Networks \& Security
\textbf{Software Development:} Software Engineering, Data Structures \& Algorithms, Research Methods, Ethics in Computing
\textbf{Mathematics:} Calculus II, Linear Algebra, Discrete Mathematics, Statistics, Applied Statistics with R, Data Mining
\resumesection{Skills \& Interests}
\textbf{Languages \& Frameworks:} Java, C/C++, Python, JavaScript/TypeScript, React, Next.js, PHP, SQL
\textbf{Backend \& DevOps:} REST APIs, MySQL, PostgreSQL, Docker, Apache Web Server, NGINX, ROS2
\textbf{Cloud \& Infrastructure:} AWS, GCP, Azure, Backblaze, Linux (RHEL/Debian), CI/CD
\textbf{Development Tools:} Git, JetBrains Suite, VS Code, Cursor, Linux CLI
\end{document}
\end{document}

View File

@@ -0,0 +1,55 @@
#!/bin/bash
# Helper script to generate personal_info.tex files
# Usage: ./generate-personal-info.sh [public|private]
VERSION=$1
BUILD_DIR=${BUILD_DIR:-build}
# Create build directory if it doesn't exist
mkdir -p "$BUILD_DIR"
# Source secrets if available
if [ -f .secrets ]; then
source .secrets
else
PERSONAL_NAME=$(whoami)
PERSONAL_EMAIL=""
PERSONAL_WEBSITE=""
PERSONAL_SCHOOL_EMAIL=""
PERSONAL_PHONE=""
PERSONAL_HOME_ADDRESS_LINE1=""
PERSONAL_HOME_ADDRESS_LINE2=""
PERSONAL_SCHOOL_ADDRESS_LINE1=""
PERSONAL_SCHOOL_ADDRESS_LINE2=""
PERSONAL_SCHOOL_ADDRESS_LINE3=""
fi
if [ "$VERSION" = "public" ]; then
cat > "$BUILD_DIR/personal_info.tex" <<EOL
% Public version of personal information
\\newcommand{\\personalName}{$PERSONAL_NAME}
\\newcommand{\\personalEmail}{$PERSONAL_EMAIL}
\\newcommand{\\personalPhone}{~}
\\newcommand{\\personalWebsite}{$PERSONAL_WEBSITE}
\\newcommand{\\personalSchoolEmail}{$PERSONAL_SCHOOL_EMAIL}
\\newcommand{\\personalHomeAddressLineOne}{~}
\\newcommand{\\personalHomeAddressLineTwo}{~}
\\newcommand{\\personalSchoolAddressLineOne}{~}
\\newcommand{\\personalSchoolAddressLineTwo}{~}
\\newcommand{\\personalSchoolAddressLineThree}{~}
EOL
else
cat > "$BUILD_DIR/personal_info.tex" <<EOL
% Private version of personal information
\\newcommand{\\personalName}{$PERSONAL_NAME}
\\newcommand{\\personalEmail}{$PERSONAL_EMAIL}
\\newcommand{\\personalPhone}{$PERSONAL_PHONE}
\\newcommand{\\personalWebsite}{$PERSONAL_WEBSITE}
\\newcommand{\\personalSchoolEmail}{$PERSONAL_SCHOOL_EMAIL}
\\newcommand{\\personalHomeAddressLineOne}{$PERSONAL_HOME_ADDRESS_LINE1}
\\newcommand{\\personalHomeAddressLineTwo}{$PERSONAL_HOME_ADDRESS_LINE2}
\\newcommand{\\personalSchoolAddressLineOne}{$PERSONAL_SCHOOL_ADDRESS_LINE1}
\\newcommand{\\personalSchoolAddressLineTwo}{$PERSONAL_SCHOOL_ADDRESS_LINE2}
\\newcommand{\\personalSchoolAddressLineThree}{$PERSONAL_SCHOOL_ADDRESS_LINE3}
EOL
fi

View File

@@ -0,0 +1,11 @@
\resumesection{Relevant Coursework}
\textbf{Robotics \& Human-Robot Interaction:} Human-Robot Interaction, Individual Study in HRI (3.5 credits)
\textbf{Artificial Intelligence \& Machine Learning:} Artificial Intelligence with Neural Nets (in progress), Data Mining, Image Processing \& Analysis (in progress)
\textbf{Systems \& Embedded:} Operating Systems Design, Computer Systems, Embedded Computer Systems, Real-time Control Systems
\textbf{Software Engineering:} Software Engineering \& Design, Algorithm Design \& Analysis, Programming Language Design
\textbf{Research Methods:} Research Methods in Computer Science, Probability \& Statistics, Experimental Design

View File

@@ -0,0 +1,7 @@
\resumesection{Education}
\textscbf{Bucknell University} \hfill \textscbf{Lewisburg, PA}
\textbf{Bachelor of Science in Computer Science} \hfill \textbf{Expected May 2026}
Engineering GPA: 3.88/4.0 \textbullet{} Overall GPA: 3.67/4.0 \textbullet{} Dean's List: Six semesters

View File

@@ -0,0 +1,16 @@
\begin{center}
{\large \textscbf{\personalName}}
\vspace{0.3em}
\href{mailto:\personalEmail}{\personalEmail}%
\ifx\personalSchoolEmail\empty\else
\ \textbullet\ \href{mailto:\personalSchoolEmail}{\personalSchoolEmail}%
\fi
\ \textbullet\ \href{https://\personalWebsite}{\personalWebsite}%
\ifx\personalPhone\empty\else%
\ \textbullet\ \personalPhone%
\fi
\end{center}
\vspace{0.5em}

View File

@@ -0,0 +1,7 @@
\resumesection{Publications}
\textbf{First Author, IEEE International Conference on Robot \& Human Interactive Communication (RO-MAN)}
\begin{itemize}[noitemsep,topsep=2pt]
\item O'Connor, S., et al. "HRIStudio: A Web-Based Platform for Human-Robot Interaction Studies" \textit{IEEE RO-MAN 2025}
\item O'Connor, S., et al. "A Wizard-of-Oz Framework for Reproducible HRI Research" \textit{IEEE RO-MAN 2024}
\end{itemize}

View File

@@ -0,0 +1,5 @@
\resumesection{Publications}
\nocite{*}
\bibliography{subfiles/refs.bib}
\bibliographystyle{plain}

View File

@@ -0,0 +1,9 @@
\resumesection{Technical Skills}
\textbf{Robotics \& AI:} ROS/ROS2, PyTorch, Weights \& Biases, HuggingFace Transformers, OpenCV, Gazebo, NAO/Pepper SDK, Wizard-of-Oz Methodology, Computer Vision
\textbf{Embedded Systems:} C/C++, Arduino, Raspberry Pi, I2C/SPI Protocols, Real-time Control, Finite State Machines, Sensor Integration
\textbf{Software Engineering:} Python, JavaScript/TypeScript, Git/GitHub, Docker, PostgreSQL, Next.js, React, Node.js, REST APIs
\textbf{Research Tools:} MATLAB, R, LaTeX, Statistical Analysis, Experimental Design, Data Visualization, Jupyter

View File

@@ -0,0 +1,15 @@
\resumesection{Technical Skills}
\textbf{Robotics \& HRI:} ROS/ROS2, Gazebo, NAO/Pepper SDK, WebSockets, Wizard-of-Oz Methodology, Robot Teleoperation, Computer Vision
\textbf{Embedded Systems \& Hardware:} Arduino, Raspberry Pi, I2C/SPI Protocols, Sensor Integration, Real-time Control, Finite State Machines
\textbf{Machine Learning \& AI:} PyTorch, TensorFlow, scikit-learn, LightGBM, XGBoost, OpenCV, pandas, numpy, Jupyter
\textbf{MLOps \& AI Deployment:} Weights \& Biases (W\&B), HuggingFace Transformers, Experiment Tracking, Model Versioning, Transfer Learning
\textbf{Programming Languages:} Python, C/C++, JavaScript/TypeScript, Java, MATLAB, SQL, Bash, LaTeX
\textbf{Research \& Development:} Git/GitHub, Docker, Experimental Design, Statistical Analysis (R), Data Visualization, Technical Writing
\textbf{Web \& Systems:} React, Node.js, Next.js, REST APIs, PostgreSQL, Linux, Cloud Computing, Distributed Systems

31
shared/style/common.tex Normal file
View File

@@ -0,0 +1,31 @@
\setlength{\parindent}{0pt}
\setlength{\parskip}{0em}
\usepackage{enumitem}
\usepackage[colorlinks=true,linkcolor=black,urlcolor=black,citecolor=black]{hyperref}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[letterpaper,left=0.5in,top=0.5in,right=0.5in,bottom=0.5in]{geometry}
% Define spacing variables
\newlength{\sectspaceabove}
\newlength{\sectspacebelow}
\setlength{\sectspaceabove}{-0.5em} % Space before section titles
\setlength{\sectspacebelow}{-0.5em} % Space after section titles
\usepackage{etoolbox}
\patchcmd{\thebibliography}{\section*{\refname}}{}{}{}
% Hide page numbers
\pagestyle{empty}
% Custom macro for small caps and bold
\newcommand{\textscbf}[1]{\textbf{\textsc{#1}}}
% Custom macro for section headers with controlled spacing
\newcommand{\resumesection}[1]{%
\vspace{\sectspaceabove}%
\begin{center}
\textscbf{#1}
\end{center}%
\vspace{\sectspacebelow}%
}

View File

@@ -1,9 +1,18 @@
@inproceedings{O'Connor2024,
abstract = {Human-robot interaction (HRI) research plays a pivotal role in shaping how robots communicate and collaborate with humans. However, conducting HRI studies, particularly those employing the Wizard-of-Oz (WoZ) technique, can be challenging. WoZ user studies can have complexities at the technical and methodological levels that may render the results irreproducible. We propose to address these challenges with HRIStudio, a novel web-based platform designed to streamline the design, execution, and analysis of WoZ experiments. HRIStudio offers an intuitive interface for experiment creation, real-time control and monitoring during experimental runs, and comprehensive data logging and playback tools for analysis and reproducibility. By lowering technical barriers, promoting collaboration, and offering methodological guidelines, HRIStudio aims to make human-centered robotics research easier, and at the same time, empower researchers to develop scientifically rigorous user studies.},
author = {O'Connor, Sean and Perrone, L. Felipe},
title = {\href{http://www.eg.bucknell.edu/~perrone/wp-content/uploads/2024/08/ro-man2024.pdf}{{HRIStudio: A Framework for Wizard-of-Oz Experiments in Human-Robot Interaction Studies (Late Breaking Report)}}},
booktitle={2024 33rd IEEE International Conference on Robot and Human Interactive Communication (RO-MAN)},
title = {\href{https://www.soconnor.dev/api/publications/hristudio-lbr.pdf}{{HRIStudio: A Framework for Wizard-of-Oz Experiments in Human-Robot Interaction Studies (Late Breaking Report)}}},
booktitle={2024 33rd IEEE International Conference on Robot and Human Interactive Communication (RO-MAN)},
year = {2024},
url = {http://www.eg.bucknell.edu/~perrone/wp-content/uploads/2024/08/ro-man2024.pdf}
url = {https://www.soconnor.dev/api/publications/hristudio-lbr.pdf}
}
@inproceedings{O'Connor2025,
abstract = {Human-robot interaction (HRI) research plays a pivotal role in shaping how robots communicate and collaborate with humans. However, conducting HRI studies can be challenging, particularly those employing the Wizard-of-Oz (WoZ) technique. WoZ user studies can have technical and methodological complexities that may render the results irreproducible. We propose to address these challenges with HRIStudio, a modular web-based platform designed to streamline the design, the execution, and the analysis of WoZ experiments. HRIStudio offers an intuitive interface for experiment creation, real-time control and monitoring during experimental runs, and comprehensive data logging and playback tools for analysis and reproducibility. By lowering technical barriers, promoting collaboration, and offering methodological guidelines, HRIStudio aims to make human-centered robotics research easier and empower researchers to develop scientifically rigorous user studies.},
author = {O'Connor, Sean and Perrone, L. Felipe},
title = {\href{https://www.soconnor.dev/api/publications/ROMAN25_0574_FI.pdf}{{A {Web-Based} {Wizard-of-Oz} Platform for Collaborative and Reproducible {Human-Robot Interaction} Research}}},
booktitle={2025 34th IEEE International Conference on Robot and Human Interactive Communication (RO-MAN)},
year = {2025},
address = {Eindhoven, The Netherlands},
url = {https://www.soconnor.dev/api/publications/ROMAN25_0574_FI.pdf}
}