feat: add Pommersheim Award, Magna Cum Laude, update GPA, add first-ascent resume
Compile LaTeX Documents / build-public (push) Successful in 51s
Compile LaTeX Documents / build-private-github (push) Has been skipped
Compile LaTeX Documents / build-private-gitea (push) Successful in 47s

- Add Pommersheim Award and Magna Cum Laude to education section (propagates to all docs)
- Update overall GPA to 3.71 across resume, CV, and first-ascent
- Update cv.tex honors section with Magna Cum Laude
- Add first-ascent.tex targeted 2-page resume for First Ascent USA application
- Add first-ascent Makefile target

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-19 12:55:44 -04:00
parent dbb4dbef4d
commit e9c96e288b
4 changed files with 140 additions and 3 deletions
+9 -1
View File
@@ -12,7 +12,7 @@ SCRIPTS_DIR = scripts
export BUILD_DIR
# Targets
.PHONY: all clean docker-build docker public private resume cv help
.PHONY: all clean docker-build docker public private resume cv first-ascent help
all: public private
@@ -80,6 +80,14 @@ cv: $(OUTPUT_DIR) $(BUILD_DIR)
@cp $(BUILD_DIR)/cv.pdf $(OUTPUT_DIR)/cv-private.pdf
@echo "CV built successfully!"
# First Ascent USA application (2-page targeted version)
first-ascent: $(OUTPUT_DIR) $(BUILD_DIR)
@echo "Building First Ascent resume..."
@$(SCRIPTS_DIR)/generate-personal-info.sh private
@TEXINPUTS=".:$(BUILD_DIR):" $(LATEX) -output-directory=$(BUILD_DIR) first-ascent.tex
@cp $(BUILD_DIR)/first-ascent.pdf $(OUTPUT_DIR)/first-ascent.pdf
@echo "Built output/first-ascent.pdf"
# Docker build
docker-build:
@docker build -t $(DOCKER_IMAGE) .