Merge pull request #12 from Tracolyte/master

Add Tracolyte resume files
This commit is contained in:
wlfmnstr 2024-04-21 19:47:11 -05:00 committed by GitHub
commit 44eb963291
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 171 additions and 0 deletions

View file

@ -0,0 +1,90 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> - Resume</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Tracolyte</h1>
<p>Brooklyn, NY | (XXX) XXX-XXXX | xxxxxxxxx@gmail.com</p>
</header>
<section id="education">
<h2>EDUCATION</h2>
<p><span>Graduate Degree | New York, NY | MBA (Finance) | GPA: 4.0</span> <span>May 2023</span></p>
<p><span>Undergraduate Degree | Albany, NY | BS in Biology, Minor: Neuroscience | GPA: 3.61</span> <span>May 2019</span></p>
<ul>
<li>Magna Cum Laude; Presidential Scholarship, Deans List</li>
<li>Award Recipient: Writing and Critical Inquiry Contest Winner: Analysis (i) and Argument (ii)</li>
</ul>
</section>
<section id="leadership">
<h2>LEADERSHIP & VOLUNTEER ACTIVITIES</h2>
<p><span>Not-for-Profit Organization | Albany, NY | Co-founder and Board Member</span> <span>October 2016 Present</span></p>
<p>XXXXX is a not-for-profit organization dedicated to assisting over 300 refugees resettling in New York State.</p>
<p>XXXXX has raised over $100,000, recruited over 50 volunteers, secured computers for 40+ families, and furnished 30+ homes. XXXXX provides 2000+ hours of tutoring per year, awareness trainings, and social/mental support. XXXXX also disseminates health information and provides employment assistance to refugee families.</p>
<ul>
<li>Developed plans to acquire resources and laid framework for organization</li>
<li>Conducted fundraisers that lead to the collection of significant donations, monetary and otherwise</li>
<li>Represented the organization at community meetings and events | Recruited volunteers</li>
<li>Tutored children from ages 6 to 17 in math, science, and English</li>
<li>Collaborated with a team to structure and create a catering business for refugee women</li>
<li>Formed and managed teams for the collection and distribution of donated goods</li>
<li>Provided emotional and mental support for peers struggling with trauma</li>
</ul>
</section>
<section id="experience">
<h2>EXPERIENCE</h2>
<p><span>Architecture + Design Firm | Concord, CA | Projects Manager</span> <span>March 2021 March 2022</span></p>
<ul>
<li>Designed and created company website</li>
<li>Coordinated with city planning and building departments for the submittal, processing, and acquisition of building permits</li>
<li>Managed client relations, interactions, and education throughout permitting process</li>
<li>Trained oncoming employees in firm procedures and permitting</li>
</ul>
<p><span>Surgical ICU | Albany, NY | PCA </span> <span>June 2018 March 2020</span></p>
<ul>
<li>Provided care to critically ill and debilitated patients</li>
</ul>
</section>
<section id="competitions">
<h2>COMPETITIONS</h2>
<p><span>Case Competition | Zurich, Switzerland | First Place</span> <span>July 2022 - December 2022</span></p>
<ul>
<li>Created a quantitative, qualitative, and sentiment-based model to identify, manage, and monitor Geopolitical and Economic Uncertainty and Instability Risk (GEUIR) for a Fortune 500 company.</li>
<li>Drafted management framework for the implementation of the model by decision-makers at the executive level</li>
</ul>
<p><span>Real Estate Innovation Competition | New York, NY | Second Place</span> <span> April 2022 - July 2022</span></p>
<ul>
<li>Ideated and presented a real estate startup idea to VC and angel investors</li>
<li>Identified market opportunity, developed revenue model & financial forecasts, built operating plan, and created risk mitigation strategy</li>
<li>Received commitment for $20K per property from investors</li>
</ul>
<p>Trading Challenge| Chicago, IL | Team Lead <span> October 2021 - November 2021</span></p>
<ul>
<li>Managed a group of peer traders in trading futures through the CME Group trading platform</li>
<li>Grew account from $100K to $135K in a period of twenty trading days</li>
</ul>
</section>
<section id="publications">
<h2>PUBLICATIONS</h2>
<p><span>Frontiers in Molecular Biosciences, Cellular Biochemistry </span><span> XX/XXXX</span></p>
<ul>
<li>XXX. et al. (2020). Silencing of...Frontiers in Molecular Biosciences, Cellular Biochemistry. Published online XX/20XX.</li>
</ul>
</section>
<footer>
<p>Published on: 3/29/2024</p>
</footer>
</body>
</html>

View file

@ -0,0 +1,81 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f9f9f9;
color: #333;
}
header {
background-color: #2e0610;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin-bottom: 10px;
font-size: 2.5em;
}
p {
margin-bottom: 15px;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
}
p span:last-child {
padding-right: 20px;
}
ul + p {
margin-top: 30px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
section {
background-color: #fff;
margin-bottom: 20px;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h2 {
margin-bottom: 15px;
font-size: 1.8em;
color: #2e0610;
}
ul {
list-style-type: none;
padding-left: 20px;
}
li {
margin-bottom: 5px;
padding-left: 5px;
list-style-type: disc;
}
footer {
background-color: #2e0610;
color: #fff;
padding: 20px;
text-align: center;
}