···11+# CV
22+33+This is my CV and is adapted from the [jitinnair1/autoCV](https://github.com/jitinnair1/autoCV) project.
44+55+
66+77+### Setup
88+99+For this to work you need `latexmk` installed which can be done with `brew` on darwin:
1010+1111+```bash
1212+brew install latexmk
1313+```
1414+1515+then just run the following to rebuild the pdf each time you change something
1616+1717+```bash
1818+make # build the pd
1919+make clean # rm the latex steps
2020+make distclean # rm the output
2121+```
···11+\documentclass[10pt,letterpaper]{article}
22+33+\usepackage[utf8]{inputenc}
44+\usepackage[margin=0.6in]{geometry}
55+\usepackage{enumitem}
66+\usepackage{titlesec}
77+\usepackage{hyperref}
88+99+% Format section titles
1010+\titleformat{\section}{\large\bfseries\uppercase}{}{0em}{}[\titlerule]
1111+\titlespacing*{\section}{0pt}{10pt}{6pt}
1212+1313+% Remove page numbers
1414+\pagestyle{empty}
1515+1616+% Customize itemize spacing - use dashes
1717+\setlist[itemize]{label=--, leftmargin=*, nosep, itemsep=1pt, topsep=3pt}
1818+1919+\begin{document}
2020+2121+% Header
2222+\begin{center}
2323+ {\LARGE \textbf{Jasper Mayone}} \\[2pt]
2424+ me@jaspermayone.com | Boston, MA | \href{https://linkedin.com/in/jaspermayone}{linkedin.com/in/jaspermayone}
2525+\end{center}
2626+2727+\vspace{-2pt}
2828+2929+% Education
3030+\section{Education}
3131+\noindent
3232+\textbf{Wentworth Institute of Technology | Boston, MA} \hfill Expected Graduation: 08/2025 \\
3333+Bachelor of Science in Computer Science \\
3434+% Overall GPA 3.0/4.0, Major GPA 3.2/4.0 \\
3535+\textit{Related Courses:} Computer Science I, Discrete Math, Foundations of Calculus
3636+3737+\vspace{2pt}
3838+3939+% Skills
4040+\section{Skills}
4141+\noindent
4242+\textbf{Programming Languages:} Javascript, Typescript, Ruby on Rails, Swift, Node.js, Next.js, SQL \\
4343+\textbf{Software:} Visual Studio Code, Eclipse, Xcode, Adobe Creative Suite, Stripe
4444+4545+\vspace{2pt}
4646+4747+% Projects
4848+\section{Projects}
4949+\noindent
5050+\textbf{Slack Profile CLI | Open Source Tool (Individual)} \hfill 10/2025
5151+\begin{itemize}
5252+ \item Built command-line tool for managing Slack user profiles programmatically using Node.js and Ruby
5353+ \item Published to npm and RubyGems package registries with Homebrew distribution support
5454+ \item Implemented interactive mode with autocomplete and batch operations for workspace administrators
5555+\end{itemize}
5656+5757+\vspace{4pt}
5858+\noindent
5959+\textbf{Obsidian AI Note Tagger | Obsidian Plugin (Individual)} \hfill 03/2025
6060+\begin{itemize}
6161+ \item Developed TypeScript plugin that uses AI to automatically tag notes based on content analysis
6262+ \item Integrated with Obsidian's API to provide seamless note organization for users
6363+ \item Published as open source project with 6+ GitHub stars
6464+\end{itemize}
6565+6666+\vspace{4pt}
6767+\noindent
6868+\textbf{Personal Website | Portfolio \& Blog (Individual)} \hfill 06/2024 -- Present
6969+\begin{itemize}
7070+ \item Built full-stack personal website using Next.js, TypeScript, and Tailwind CSS
7171+ \item Implemented dynamic routing, SEO optimization, and responsive design
7272+ \item Deployed with continuous integration using GitHub Actions
7373+\end{itemize}
7474+7575+% Experience
7676+\section{Experience}
7777+\noindent
7878+\textbf{Major League Hacking | New York, NY | Summer Engineering Intern} \hfill 05/2025 -- 08/2025
7979+\begin{itemize}
8080+ \item Developed and implemented technical integrations between MyMLH identity platform and Discord using Ruby on Rails, enhancing user experience and data synchronization.
8181+ \item Attended daily standups and bi-weekly sprint planning meetings and retrospectives, collaborating with cross-functional teams to ensure project alignment and timely delivery.
8282+ \item Implemented automated testing solutions to improve code quality and reduce regression issues.
8383+ \item Participated in retrospectives, providing feedback and suggestions for process improvements.
8484+\end{itemize}
8585+8686+\vspace{4pt}
8787+\noindent
8888+\textbf{The Hack Foundation | Shelburne, VT | Gap Year / Software Engineer} \hfill 10/2023 -- 07/2024
8989+\begin{itemize}
9090+ \item Led and mentored a cross-functional team of developers across several major software projects.
9191+ \item Designed and developed custom software solutions.
9292+ \item Built and led community management team of 10, with the goal of improving the number of active members.
9393+\end{itemize}
9494+9595+\vspace{4pt}
9696+\noindent
9797+\textbf{Signal Kitchen | Burlington, VT | Bookshop Manager \& Assistant to Events Director} \hfill 02/2023 -- 02/2024
9898+\begin{itemize}
9999+ \item Leveraged event platforms to coordinate registration and check-in for thousands of attendees at flagship events.
100100+ \item Streamlined pre/post event operations through database management and organization.
101101+ \item Coordination of vendor relationships while managing shipping logistics for event bookstore.
102102+ \item Developed and maintained inventory management and point of sale system for bookstore.
103103+ \item Assist guests during event, as well as on-site support for overnight VIP guests.
104104+\end{itemize}
105105+106106+107107+% future note - hackwit start 10/2025
108108+109109+% Activities
110110+\section{Activities}
111111+\noindent
112112+\textbf{WITCC (Wentworth's student run coding club) | Treasurer \& Member} \hfill 09/2025 - Present
113113+\begin{itemize}
114114+ \item Managed Club budget
115115+ \item Sat on E-Board which included event/meeting coordination and other leadership tasks
116116+\end{itemize}
117117+118118+\end{document}