mirror of
https://github.com/soconnor0919/resume-cv.git
synced 2025-12-15 07:24:43 -05:00
Compare commits
2 Commits
1dfc70b1b4
...
7397a0177f
| Author | SHA1 | Date | |
|---|---|---|---|
| 7397a0177f | |||
| d0813ce1c6 |
@@ -1,5 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Check if building specific CV variant
|
||||
CV_VARIANT=""
|
||||
if [ "$1" = "cv-upenn" ]; then
|
||||
CV_VARIANT="cv-upenn"
|
||||
echo "Building UPenn-optimized CV..."
|
||||
fi
|
||||
|
||||
# Source secrets if the file exists
|
||||
if [ -f .secrets ]; then
|
||||
source .secrets
|
||||
@@ -78,7 +85,7 @@ EOL
|
||||
|
||||
build_local resume.tex
|
||||
build_local cv.tex
|
||||
|
||||
|
||||
mv resume.pdf output/resume-private.pdf 2>/dev/null || true
|
||||
mv cv.pdf output/cv-private.pdf 2>/dev/null || true
|
||||
fi
|
||||
@@ -99,12 +106,19 @@ cat > personal_info.tex << EOL
|
||||
\newcommand{\personalSchoolAddressLineThree}{~}
|
||||
EOL
|
||||
|
||||
build_local resume.tex
|
||||
build_local cv.tex
|
||||
# Build specific CV variant if requested
|
||||
if [ "$CV_VARIANT" = "cv-upenn" ]; then
|
||||
build_local cv-upenn.tex
|
||||
mv cv-upenn.pdf output/cv-upenn.pdf
|
||||
echo "UPenn CV build complete! Generated: output/cv-upenn.pdf"
|
||||
else
|
||||
build_local resume.tex
|
||||
build_local cv.tex
|
||||
|
||||
mv resume.pdf output/resume-public.pdf
|
||||
mv cv.pdf output/cv-public.pdf
|
||||
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/
|
||||
echo "Build complete!"
|
||||
echo "Generated files in output/:"
|
||||
ls -l output/
|
||||
fi
|
||||
|
||||
1
cv.tex
1
cv.tex
@@ -32,6 +32,7 @@ I'm passionate about human-robot interaction and developing technologies that ma
|
||||
\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 Designed modular architecture enabling cross-platform robot control without specialized programming knowledge, lowering technical barriers for HRI researchers across disciplines
|
||||
\item Implemented comprehensive data logging and playback capabilities for experimental analysis, supporting rigorous scientific methodology in human-robot interaction studies
|
||||
\item Currently developing honors thesis evaluating platform effectiveness and impact on interdisciplinary HRI research accessibility
|
||||
\item Conducted literature review identifying key challenges in WoZ methodology reproducibility, informing platform design decisions and feature prioritization
|
||||
\end{itemize}
|
||||
|
||||
|
||||
@@ -64,8 +64,8 @@
|
||||
|
||||
\textbf{beenvoice - Professional Invoicing Application} \hfill \textbf{TypeScript/Next.js}
|
||||
\begin{itemize}[noitemsep,topsep=2pt]
|
||||
\item Built full-stack invoicing app with secure authentication, client management, and invoice generation deployed at beenvoice.vercel.app
|
||||
\end{itemize}
|
||||
\item Built full-stack invoicing app with secure authentication, client management, and invoice generation
|
||||
\end{itemize>
|
||||
|
||||
\textbf{Formula One Performance Prediction Using Machine Learning} \hfill \textbf{Python/ML}
|
||||
\begin{itemize}[noitemsep,topsep=2pt]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
\setlength{\parindent}{0pt}
|
||||
\setlength{\parskip}{0em}
|
||||
\usepackage{enumitem}
|
||||
\usepackage{hyperref}
|
||||
\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}
|
||||
|
||||
Reference in New Issue
Block a user