1
0
Fork 0

Compare commits

...

6 Commits

13 changed files with 40 additions and 10 deletions

View File

@ -11,6 +11,6 @@
<code>heyainsleymae</code> on <a href="https://codeberg.org/heyainsleymae">Codeberg</a>, <a href="https://github.com/heyainsleymae">GitHub</a>, and <a href="https://npmjs.com/~heyainsleymae">npm</a>
</li>
</ul>
<p>America/New_York (NYC)<br />Remote or hybrid work, open to relocation</p>
<p>America/New_York (NYC)</p>
</address>
</header>

View File

@ -17,12 +17,12 @@
</head>
<body>
<main>
<xsl:copy-of select="document('./fragments/header-cv.xml')"/>
<xsl:copy-of select="document('../xml/base/header.xml')"/>
<!-- <xsl:copy-of select="/cv"/> -->
<section id="objective">
<h2>Objective</h2>
<!-- select specific objective from xml file -->
<xsl:copy-of select="document('./fragments/objectives.xml')/objectives/objective[@name='web-development']/node()"/>
<xsl:copy-of select="document('../xml/objectives.xml')/objectives/objective[@name='web-development']/node()"/>
</section>
<section id="work-history">
<h2>Work History</h2>

View File

@ -17,12 +17,12 @@
</head>
<body>
<main>
<xsl:copy-of select="document('./fragments/grad-school/header.xml')"/>
<xsl:copy-of select="document('../xml/grad-school/header.xml')"/>
<!-- <xsl:copy-of select="/cv"/> -->
<section id="motivation">
<h2>Motivation</h2>
<!-- select specific objective from xml file -->
<xsl:copy-of select="document('./fragments/objectives.xml')/objectives/objective[@name='grad-school']/node()"/>
<xsl:copy-of select="document('../xml/objectives.xml')/objectives/objective[@name='grad-school']/node()"/>
</section>
<section id="education">
<h2>Education</h2>

View File

@ -19,7 +19,7 @@
<link rel="stylesheet" href="../assets/css/print.css" media="print" />
</head>
<body class="letter">
<xsl:copy-of select="document('./fragments/header-letter.xml')"/>
<xsl:copy-of select="document('../xml/letter/header.xml')"/>
<hr />
<main id="main">
<header>

29
cv.xml
View File

@ -7,6 +7,7 @@
<title>Full-Stack Bootcamp Teaching Assistant</title>
<duration>
<start datetime="2021-06">June 2021</start>
<end datetime="2025-06">June 2025</end>
</duration>
<description type="full">
<p>
@ -32,6 +33,7 @@
<title>Senior Tutor</title>
<duration>
<start datetime="2021-10">October 2021</start>
<end datetime="2025-06">June 2025</end>
</duration>
<description type="full">
<p>
@ -205,6 +207,21 @@
</description>
</role>
</company>
<company>
<name>Trinity College Dublin</name>
<role>
<title>Lighting &amp; AudioVideo Operator</title>
<production>A Red Scare/Horse Girls</production>
<duration>
<start datetime="2025-10">October 2025</start>
<end datetime="2025-10">October 2025</end>
</duration>
<description type="brief">
<p>I stepped into the DU Players tech box on short notice to operate lights for one show and multimedia for another, quickly acclimating myself to the theatre's rules, capabilities, and procedures.</p>
</description>
<url></url>
</role>
</company>
<company>
<name>Romanian Cultural Institute</name>
<role>
@ -343,6 +360,18 @@
</project>
</foss-contributions>
<education>
<institution>
<name>Trinity College Dublin</name>
<location>Dublin, Co. Dublin, Ireland</location>
<degree>
<level>Master of Philosophy</level>
<concentration>Linguistics</concentration>
<school>School of Linguistic, Speech and Communication Sciences</school>
<duration>
<start datetime="2025-09">September 2025</start>
</duration>
</degree>
</institution>
<institution>
<name>New York University</name>
<location>New York, NY, United States</location>

View File

@ -0,0 +1 @@
/home/ame/Desktop/education/graduate/applications/personal-statment.md

View File

@ -3,5 +3,5 @@ hash="$(git rev-parse HEAD)"
mkdir -p ./dist
xsltproc --stringparam hash "$hash" ./templates/cv.xsl cv.xml > ./dist/cv.html
xsltproc --stringparam hash "$hash" ./assets/xsl/cv.xsl cv.xml > ./dist/cv.html
weasyprint --quiet ./dist/cv.html ./dist/cv.pdf

View File

@ -2,7 +2,7 @@
mkdir -p ./dist
# CV
xsltproc ./templates/grad-school.xsl cv.xml > ./dist/cv-grad-school.html
xsltproc ./assets/xsl/grad-school.xsl cv.xml > ./dist/cv-grad-school.html
weasyprint --quiet ./dist/cv-grad-school.html ./dist/cv-grad-school.pdf
# Personal Statement
@ -16,7 +16,7 @@ for school in "${schools[@]}";
do
name=$(echo $school | tr ' ' '-' | tr '[:upper:]' '[:lower:]')
temp_file=/tmp/$name-personal-statement.md
sed -e "s/\`INSTITUTION_NAME\`/$school/g" ./letters/personal-statement.md > $temp_file
sed -e "s/\`INSTITUTION_NAME\`/$school/g" ./letters/grad-school-personal-statement.md > $temp_file
sh ./scripts/letter.sh $temp_file "$school" "$school Admissions Team"
rm $temp_file

View File

@ -8,5 +8,5 @@ signature="$(base64 ./assets/signature.svg)"
mkdir -p ./dist
echo $body | xsltproc --stringparam company "$company" --stringparam date "$date" --stringparam addressee "$addressee" --stringparam signature "$signature" ./templates/letter.xsl - > ./dist/letter.html
echo $body | xsltproc --stringparam company "$company" --stringparam date "$date" --stringparam addressee "$addressee" --stringparam signature "$signature" ./assets/xsl/letter.xsl - > ./dist/letter.html
weasyprint --quiet ./dist/letter.html ./dist/letter.pdf