@jaimanm/resumake 1.0.0 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/npm-publish.yml +0 -2
- package/CONTRIBUTING.md +14 -1
- package/package.json +5 -1
- package/src/commands/config.js +5 -2
- package/src/commands/setup.js +6 -4
- package/src/index.js +4 -2
- package/templates/awesome-cv/.github/workflows/build-resume.yml +65 -0
- package/templates/awesome-cv/README.md +1 -0
- package/templates/awesome-cv/awesome-cv.cls +885 -0
- package/templates/awesome-cv/build_all.sh +12 -0
- package/templates/awesome-cv/cv/certificates.tex +111 -0
- package/templates/awesome-cv/cv/committees.tex +48 -0
- package/templates/awesome-cv/cv/education.tex +25 -0
- package/templates/awesome-cv/cv/experience.tex +186 -0
- package/templates/awesome-cv/cv/extracurricular.tex +81 -0
- package/templates/awesome-cv/cv/honors.tex +181 -0
- package/templates/awesome-cv/cv/presentation.tex +50 -0
- package/templates/awesome-cv/cv/skills.tex +38 -0
- package/templates/awesome-cv/cv/writing.tex +37 -0
- package/templates/awesome-cv/cv.tex +114 -0
- package/templates/jakes-cv/.github/workflows/build-resume.yml +65 -0
- package/templates/jakes-cv/README.md +29 -0
- package/templates/jakes-cv/build_all.sh +22 -0
- package/templates/jakes-cv/cv-sections/certificates.tex +8 -0
- package/templates/jakes-cv/cv-sections/committees.tex +19 -0
- package/templates/jakes-cv/cv-sections/education.tex +10 -0
- package/templates/jakes-cv/cv-sections/experience.tex +22 -0
- package/templates/jakes-cv/cv-sections/extracurricular.tex +20 -0
- package/templates/jakes-cv/cv-sections/honors.tex +10 -0
- package/templates/jakes-cv/cv-sections/presentation.tex +19 -0
- package/templates/jakes-cv/cv-sections/projects.tex +15 -0
- package/templates/jakes-cv/cv-sections/skills.tex +10 -0
- package/templates/jakes-cv/cv-sections/writing.tex +19 -0
- package/templates/jakes-cv/cv.tex +174 -0
- package/templates/jakes-cv/fonts/Roboto-Bold.ttf +0 -0
- package/templates/jakes-cv/fonts/Roboto-BoldItalic.ttf +0 -0
- package/templates/jakes-cv/fonts/Roboto-Italic.ttf +0 -0
- package/templates/jakes-cv/fonts/Roboto-Light.ttf +0 -0
- package/templates/jakes-cv/fonts/Roboto-LightItalic.ttf +0 -0
- package/templates/jakes-cv/fonts/Roboto-Medium.ttf +0 -0
- package/templates/jakes-cv/fonts/Roboto-MediumItalic.ttf +0 -0
- package/templates/jakes-cv/fonts/Roboto-Regular.ttf +0 -0
- package/templates/jakes-cv/fonts/Roboto-Thin.ttf +0 -0
- package/templates/jakes-cv/fonts/Roboto-ThinItalic.ttf +0 -0
- package/templates/jakes-resume/.github/workflows/build-resume.yml +65 -0
- package/templates/jakes-resume/README.md +1 -0
- package/templates/jakes-resume/build_all.sh +7 -0
- package/templates/jakes-resume/resume.tex +218 -0
- package/templates/modular-multi/.github/workflows/build-resume.yml +65 -0
- package/templates/modular-multi/README.md +1 -0
- package/templates/modular-multi/build_all.sh +23 -0
- package/templates/modular-multi/resume_aiml.tex +5 -0
- package/templates/modular-multi/resume_backend.tex +5 -0
- package/templates/modular-multi/resume_content.tex +136 -0
- package/templates/modular-multi/resume_preamble.tex +87 -0
- package/templates/modular-multi/resume_quantum.tex +5 -0
- package/templates/modular-multi/test.txt +80 -0
- package/tests/index.test.js +22 -90
- package/tests/setup.test.js +8 -4
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
%-------------------------------------------------------------------------------
|
|
2
|
+
% SECTION TITLE
|
|
3
|
+
%-------------------------------------------------------------------------------
|
|
4
|
+
\cvsection{Presentation}
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
%-------------------------------------------------------------------------------
|
|
8
|
+
% CONTENT
|
|
9
|
+
%-------------------------------------------------------------------------------
|
|
10
|
+
\begin{cventries}
|
|
11
|
+
|
|
12
|
+
%---------------------------------------------------------
|
|
13
|
+
\cventry
|
|
14
|
+
{Presenter for <Hosting Web Application for Free utilizing GitHub, Netlify and CloudFlare>} % Role
|
|
15
|
+
{DevFest Seoul by Google Developer Group Korea} % Event
|
|
16
|
+
{Seoul, S.Korea} % Location
|
|
17
|
+
{Nov. 2017} % Date(s)
|
|
18
|
+
{
|
|
19
|
+
\begin{cvitems} % Description(s)
|
|
20
|
+
\item {Introduced the history of web technology and the JAM stack which is for the modern web application development.}
|
|
21
|
+
\item {Introduced how to freely host the web application with high performance utilizing global CDN services.}
|
|
22
|
+
\end{cvitems}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
%---------------------------------------------------------
|
|
26
|
+
\cventry
|
|
27
|
+
{Presenter for <DEFCON 20th : The way to go to Las Vegas>} % Role
|
|
28
|
+
{6th CodeEngn (Reverse Engineering Conference)} % Event
|
|
29
|
+
{Seoul, S.Korea} % Location
|
|
30
|
+
{Jul. 2012} % Date(s)
|
|
31
|
+
{
|
|
32
|
+
\begin{cvitems} % Description(s)
|
|
33
|
+
\item {Introduced CTF(Capture the Flag) hacking competition and advanced techniques and strategy for CTF}
|
|
34
|
+
\end{cvitems}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
%---------------------------------------------------------
|
|
38
|
+
\cventry
|
|
39
|
+
{Presenter for <Metasploit 101>} % Role
|
|
40
|
+
{6th Hacking Camp - S.Korea} % Event
|
|
41
|
+
{S.Korea} % Location
|
|
42
|
+
{Sep. 2012} % Date(s)
|
|
43
|
+
{
|
|
44
|
+
\begin{cvitems} % Description(s)
|
|
45
|
+
\item {Introduced basic procedure for penetration testing and how to use Metasploit}
|
|
46
|
+
\end{cvitems}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
%---------------------------------------------------------
|
|
50
|
+
\end{cventries}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
%-------------------------------------------------------------------------------
|
|
2
|
+
% SECTION TITLE
|
|
3
|
+
%-------------------------------------------------------------------------------
|
|
4
|
+
\cvsection{Skills}
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
%-------------------------------------------------------------------------------
|
|
8
|
+
% CONTENT
|
|
9
|
+
%-------------------------------------------------------------------------------
|
|
10
|
+
\begin{cvskills}
|
|
11
|
+
|
|
12
|
+
%---------------------------------------------------------
|
|
13
|
+
\cvskill
|
|
14
|
+
{DevOps} % Category
|
|
15
|
+
{AWS, Docker, Kubernetes, Rancher, Vagrant, Packer, Terraform, Jenkins, CircleCI} % Skills
|
|
16
|
+
|
|
17
|
+
%---------------------------------------------------------
|
|
18
|
+
\cvskill
|
|
19
|
+
{Back-end} % Category
|
|
20
|
+
{Koa, Express, Django, REST API} % Skills
|
|
21
|
+
|
|
22
|
+
%---------------------------------------------------------
|
|
23
|
+
\cvskill
|
|
24
|
+
{Front-end} % Category
|
|
25
|
+
{Hugo, Redux, React, HTML5, LESS, SASS} % Skills
|
|
26
|
+
|
|
27
|
+
%---------------------------------------------------------
|
|
28
|
+
\cvskill
|
|
29
|
+
{Programming} % Category
|
|
30
|
+
{Node.js, Python, JAVA, OCaml, LaTeX} % Skills
|
|
31
|
+
|
|
32
|
+
%---------------------------------------------------------
|
|
33
|
+
\cvskill
|
|
34
|
+
{Languages} % Category
|
|
35
|
+
{Korean, English, Japanese} % Skills
|
|
36
|
+
|
|
37
|
+
%---------------------------------------------------------
|
|
38
|
+
\end{cvskills}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
%-------------------------------------------------------------------------------
|
|
2
|
+
% SECTION TITLE
|
|
3
|
+
%-------------------------------------------------------------------------------
|
|
4
|
+
\cvsection{Writing}
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
%-------------------------------------------------------------------------------
|
|
8
|
+
% CONTENT
|
|
9
|
+
%-------------------------------------------------------------------------------
|
|
10
|
+
\begin{cventries}
|
|
11
|
+
|
|
12
|
+
%---------------------------------------------------------
|
|
13
|
+
\cventry
|
|
14
|
+
{Founder \& Writer} % Role
|
|
15
|
+
{A Guide for Developers in Start-up} % Title
|
|
16
|
+
{Facebook Page} % Location
|
|
17
|
+
{Jan. 2015 - PRESENT} % Date(s)
|
|
18
|
+
{
|
|
19
|
+
\begin{cvitems} % Description(s)
|
|
20
|
+
\item {Drafted daily news for developers in Korea about IT technologies, issues about start-up.}
|
|
21
|
+
\end{cvitems}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
%---------------------------------------------------------
|
|
25
|
+
\cventry
|
|
26
|
+
{Undergraduate Student Reporter} % Role
|
|
27
|
+
{AhnLab} % Title
|
|
28
|
+
{S.Korea} % Location
|
|
29
|
+
{Oct. 2012 - Jul. 2013} % Date(s)
|
|
30
|
+
{
|
|
31
|
+
\begin{cvitems} % Description(s)
|
|
32
|
+
\item {Drafted reports about IT trends and Security issues on AhnLab Company magazine.}
|
|
33
|
+
\end{cvitems}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
%---------------------------------------------------------
|
|
37
|
+
\end{cventries}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
%!TEX TS-program = xelatex
|
|
2
|
+
%!TEX encoding = UTF-8 Unicode
|
|
3
|
+
% Awesome CV LaTeX Template for CV/Resume
|
|
4
|
+
%
|
|
5
|
+
% This template has been downloaded from:
|
|
6
|
+
% https://github.com/posquit0/Awesome-CV
|
|
7
|
+
%
|
|
8
|
+
% Author:
|
|
9
|
+
% Claud D. Park <posquit0.bj@gmail.com>
|
|
10
|
+
% http://www.posquit0.com
|
|
11
|
+
%
|
|
12
|
+
% Template license:
|
|
13
|
+
% CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)
|
|
14
|
+
%
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
%-------------------------------------------------------------------------------
|
|
18
|
+
% CONFIGURATIONS
|
|
19
|
+
%-------------------------------------------------------------------------------
|
|
20
|
+
% A4 paper size by default, use 'letterpaper' for US letter
|
|
21
|
+
\documentclass[11pt, a4paper]{awesome-cv}
|
|
22
|
+
|
|
23
|
+
% Configure page margins with geometry
|
|
24
|
+
\geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}
|
|
25
|
+
|
|
26
|
+
% Color for highlights
|
|
27
|
+
% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange
|
|
28
|
+
% awesome-nephritis, awesome-concrete, awesome-darknight
|
|
29
|
+
\colorlet{awesome}{awesome-red}
|
|
30
|
+
% Uncomment if you would like to specify your own color
|
|
31
|
+
% \definecolor{awesome}{HTML}{CA63A8}
|
|
32
|
+
|
|
33
|
+
% Colors for text
|
|
34
|
+
% Uncomment if you would like to specify your own color
|
|
35
|
+
% \definecolor{darktext}{HTML}{414141}
|
|
36
|
+
% \definecolor{text}{HTML}{333333}
|
|
37
|
+
% \definecolor{graytext}{HTML}{5D5D5D}
|
|
38
|
+
% \definecolor{lighttext}{HTML}{999999}
|
|
39
|
+
% \definecolor{sectiondivider}{HTML}{5D5D5D}
|
|
40
|
+
|
|
41
|
+
% Set false if you don't want to highlight section with awesome color
|
|
42
|
+
\setbool{acvSectionColorHighlight}{true}
|
|
43
|
+
|
|
44
|
+
% If you would like to change the social information separator from a pipe (|) to something else
|
|
45
|
+
\renewcommand{\acvHeaderSocialSep}{\quad\textbar\quad}
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
%-------------------------------------------------------------------------------
|
|
49
|
+
% PERSONAL INFORMATION
|
|
50
|
+
% Comment any of the lines below if they are not required
|
|
51
|
+
%-------------------------------------------------------------------------------
|
|
52
|
+
% Available options: circle|rectangle,edge/noedge,left/right
|
|
53
|
+
% \photo{./examples/profile.png}
|
|
54
|
+
\name{Claud D.}{Park}
|
|
55
|
+
\position{DevOps Engineer{\enskip\cdotp\enskip}Software Architect}
|
|
56
|
+
\address{Mapo-gu, Seoul, Republic of Korea}
|
|
57
|
+
|
|
58
|
+
\mobile{(+82) 10-9030-1843}
|
|
59
|
+
%\whatsapp{(+82) 10-9030-1843}
|
|
60
|
+
\email{posquit0.bj@gmail.com}
|
|
61
|
+
%\dateofbirth{January 1st, 1970}
|
|
62
|
+
\homepage{www.posquit0.com}
|
|
63
|
+
\github{posquit0}
|
|
64
|
+
\linkedin{posquit0}
|
|
65
|
+
% \gitlab{gitlab-id}
|
|
66
|
+
% \stackoverflow{SO-id}{SO-name}
|
|
67
|
+
% \twitter{@twit}
|
|
68
|
+
% \x{x-id}
|
|
69
|
+
% \skype{skype-id}
|
|
70
|
+
% \reddit{reddit-id}
|
|
71
|
+
% \medium{medium-id}
|
|
72
|
+
% \kaggle{kaggle-id}
|
|
73
|
+
% \hackerrank{hackerrank-id}
|
|
74
|
+
% \telegram{telegram-username}
|
|
75
|
+
% \googlescholar{googlescholar-id}{name-to-display}
|
|
76
|
+
%% \firstname and \lastname will be used
|
|
77
|
+
% \googlescholar{googlescholar-id}{}
|
|
78
|
+
% \extrainfo{extra information}
|
|
79
|
+
|
|
80
|
+
\quote{``Be the change that you want to see in the world."}
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
%-------------------------------------------------------------------------------
|
|
84
|
+
\begin{document}
|
|
85
|
+
|
|
86
|
+
% Print the header with above personal information
|
|
87
|
+
% Give optional argument to change alignment(C: center, L: left, R: right)
|
|
88
|
+
\makecvheader
|
|
89
|
+
|
|
90
|
+
% Print the footer with 3 arguments(<left>, <center>, <right>)
|
|
91
|
+
% Leave any of these blank if they are not needed
|
|
92
|
+
\makecvfooter
|
|
93
|
+
{\today}
|
|
94
|
+
{Claud D. Park~~~·~~~Curriculum Vitae}
|
|
95
|
+
{\thepage}
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
%-------------------------------------------------------------------------------
|
|
99
|
+
% CV/RESUME CONTENT
|
|
100
|
+
% Each section is imported separately, open each file in turn to modify content
|
|
101
|
+
%-------------------------------------------------------------------------------
|
|
102
|
+
\input{cv/education.tex}
|
|
103
|
+
\input{cv/skills.tex}
|
|
104
|
+
\input{cv/experience.tex}
|
|
105
|
+
\input{cv/extracurricular.tex}
|
|
106
|
+
\input{cv/honors.tex}
|
|
107
|
+
\input{cv/certificates.tex}
|
|
108
|
+
\input{cv/presentation.tex}
|
|
109
|
+
\input{cv/writing.tex}
|
|
110
|
+
\input{cv/committees.tex}
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
%-------------------------------------------------------------------------------
|
|
114
|
+
\end{document}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
name: Build, Sync, and Release Official PDFs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build-and-release:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
|
|
15
|
+
steps:
|
|
16
|
+
- name: Checkout repository
|
|
17
|
+
uses: actions/checkout@v4
|
|
18
|
+
|
|
19
|
+
- name: Install LaTeX environment (Cached)
|
|
20
|
+
uses: awalsh128/cache-apt-pkgs-action@latest
|
|
21
|
+
with:
|
|
22
|
+
packages: texlive-latex-base texlive-latex-extra texlive-fonts-recommended texlive-fonts-extra texlive-science latexmk
|
|
23
|
+
version: 1.0
|
|
24
|
+
|
|
25
|
+
- name: Build Official PDFs
|
|
26
|
+
run: |
|
|
27
|
+
chmod +x build_all.sh
|
|
28
|
+
./build_all.sh
|
|
29
|
+
|
|
30
|
+
# ---------------------------------------------------------
|
|
31
|
+
# STEP 1: SYNC TO GOOGLE DRIVE (FINDER)
|
|
32
|
+
# ---------------------------------------------------------
|
|
33
|
+
- name: Install and Configure rclone
|
|
34
|
+
run: |
|
|
35
|
+
sudo apt-get install -y rclone
|
|
36
|
+
mkdir -p ~/.config/rclone
|
|
37
|
+
echo '${{ secrets.RCLONE_CONF }}' > ~/.config/rclone/rclone.conf
|
|
38
|
+
|
|
39
|
+
- name: Sync to Google Drive
|
|
40
|
+
run: |
|
|
41
|
+
# The sync command makes the Google Drive 'Resumes' folder exactly match the local PDF_Exports folder
|
|
42
|
+
# It will delete files in the drive that are not in PDF_Exports
|
|
43
|
+
rclone sync PDF_Exports/ gdrive:Resumes/
|
|
44
|
+
|
|
45
|
+
# ---------------------------------------------------------
|
|
46
|
+
# STEP 2: HISTORICAL RELEASE (ZIP)
|
|
47
|
+
# ---------------------------------------------------------
|
|
48
|
+
- name: Generate Release Version
|
|
49
|
+
id: version
|
|
50
|
+
run: |
|
|
51
|
+
DATE=$(date +'%Y-%m-%d')
|
|
52
|
+
echo "tag=${DATE}_v${{ github.run_number }}" >> $GITHUB_OUTPUT
|
|
53
|
+
echo "name=Release ${DATE} (Build ${{ github.run_number }})" >> $GITHUB_OUTPUT
|
|
54
|
+
|
|
55
|
+
- name: Zip for Release
|
|
56
|
+
run: zip -r Official_Resumes.zip PDF_Exports/
|
|
57
|
+
|
|
58
|
+
- name: Create GitHub Release
|
|
59
|
+
uses: softprops/action-gh-release@v2
|
|
60
|
+
with:
|
|
61
|
+
tag_name: ${{ steps.version.outputs.tag }}
|
|
62
|
+
name: ${{ steps.version.outputs.name }}
|
|
63
|
+
files: Official_Resumes.zip
|
|
64
|
+
env:
|
|
65
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# ResuMake
|
|
2
|
+
|
|
3
|
+
A magical, fully-automated LaTeX resume workflow. Write your resume in LaTeX, and automatically compile it, release it, and sync it to Google Drive every time you push.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
- 🚀 **Interactive CLI Setup:** Automatically scaffolds a private GitHub repo and sets up Google Drive Sync.
|
|
7
|
+
- 🔄 **Live Reloading:** Watch mode that automatically recompiles your PDFs instantly on file save.
|
|
8
|
+
- ☁️ **Cloud CI/CD & Sync:** Uses GitHub actions to safely store your compiled PDF resume in Google Drive and create GitHub releases!
|
|
9
|
+
- 🎨 **Multiple Templates:** Choose from Modular Multi-Resume, Awesome-CV, and Jake's Resume!
|
|
10
|
+
|
|
11
|
+
## Getting Started
|
|
12
|
+
|
|
13
|
+
1. Clone this repository to bootstrap your environment:
|
|
14
|
+
```bash
|
|
15
|
+
git clone https://github.com/jaimanm/resumake.git
|
|
16
|
+
cd resumake
|
|
17
|
+
```
|
|
18
|
+
2. Run the interactive setup wizard:
|
|
19
|
+
```bash
|
|
20
|
+
./cli setup
|
|
21
|
+
```
|
|
22
|
+
3. Follow the CLI instructions to authenticate with Google Drive, pick a template, and it will scaffold your new private resume repository!
|
|
23
|
+
|
|
24
|
+
## Local Development
|
|
25
|
+
After setup, navigate to your **newly created private repository** and run:
|
|
26
|
+
```bash
|
|
27
|
+
./cli dev
|
|
28
|
+
```
|
|
29
|
+
This will start a watcher that instantly rebuilds your `.pdf` using local LaTeX tools every time you save a `.tex` file.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
# Remove existing PDF export directories to ensure a clean build
|
|
4
|
+
rm -rf PDF_Exports
|
|
5
|
+
|
|
6
|
+
mkdir -p PDF_Exports
|
|
7
|
+
|
|
8
|
+
# Dynamically extract first and last name from cv.tex
|
|
9
|
+
FIRST=$(grep '\\newcommand{\\firstname}' cv.tex | grep -o '{[^}]*}$' | tr -d '{}')
|
|
10
|
+
LAST=$(grep '\\newcommand{\\lastname}' cv.tex | grep -o '{[^}]*}$' | tr -d '{}')
|
|
11
|
+
JOBNAME="${FIRST}_${LAST}_CV"
|
|
12
|
+
|
|
13
|
+
echo "Building ${FIRST} ${LAST}'s CV..."
|
|
14
|
+
latexmk -pdf -interaction=nonstopmode -halt-on-error -jobname="$JOBNAME" -output-directory="PDF_Exports" cv.tex
|
|
15
|
+
|
|
16
|
+
# Clean up auxiliary build files
|
|
17
|
+
find PDF_Exports -type f ! -name "*.pdf" -delete
|
|
18
|
+
|
|
19
|
+
echo "Done! Your PDFs are organized in the PDF_Exports directory."
|
|
20
|
+
|
|
21
|
+
# Clean up auxiliary build folders to keep the workspace clean
|
|
22
|
+
rm -rf cv_build
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
%-----------CERTIFICATES-----------
|
|
2
|
+
\section{Certificates}
|
|
3
|
+
\resumeSubHeadingListStart
|
|
4
|
+
\resumeProjectHeading
|
|
5
|
+
{\textbf{Certificate Name} $|$ \emph{Issuing Organization}}{Year}
|
|
6
|
+
\resumeProjectHeading
|
|
7
|
+
{\textbf{Certificate Name} $|$ \emph{Issuing Organization}}{Year}
|
|
8
|
+
\resumeSubHeadingListEnd
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
%-----------COMMITTEES-----------
|
|
2
|
+
\section{Committees}
|
|
3
|
+
\resumeSubHeadingListStart
|
|
4
|
+
|
|
5
|
+
\resumeSubheading
|
|
6
|
+
{Role (e.g. Chair, Member)}{Start Date -- End Date}
|
|
7
|
+
{Committee Name}{Organization}
|
|
8
|
+
\resumeItemListStart
|
|
9
|
+
\resumeItem{Describe your role and contributions}
|
|
10
|
+
\resumeItemListEnd
|
|
11
|
+
|
|
12
|
+
\resumeSubheading
|
|
13
|
+
{Role}{Start Date -- End Date}
|
|
14
|
+
{Committee Name}{Organization}
|
|
15
|
+
\resumeItemListStart
|
|
16
|
+
\resumeItem{Describe your role and contributions}
|
|
17
|
+
\resumeItemListEnd
|
|
18
|
+
|
|
19
|
+
\resumeSubHeadingListEnd
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
%-----------EDUCATION-----------
|
|
2
|
+
\section{Education}
|
|
3
|
+
\resumeSubHeadingListStart
|
|
4
|
+
\resumeSubheading
|
|
5
|
+
{University Name}{City, State}
|
|
6
|
+
{Degree, Major}{Start Date -- End Date}
|
|
7
|
+
\resumeSubheading
|
|
8
|
+
{Another University}{City, State}
|
|
9
|
+
{Degree, Major}{Start Date -- End Date}
|
|
10
|
+
\resumeSubHeadingListEnd
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
%-----------EXPERIENCE-----------
|
|
2
|
+
\section{Experience}
|
|
3
|
+
\resumeSubHeadingListStart
|
|
4
|
+
|
|
5
|
+
\resumeSubheading
|
|
6
|
+
{Job Title}{Start Date -- End Date}
|
|
7
|
+
{Company Name}{City, State}
|
|
8
|
+
\resumeItemListStart
|
|
9
|
+
\resumeItem{Describe your accomplishment or responsibility}
|
|
10
|
+
\resumeItem{Another accomplishment with measurable impact}
|
|
11
|
+
\resumeItem{One more key contribution}
|
|
12
|
+
\resumeItemListEnd
|
|
13
|
+
|
|
14
|
+
\resumeSubheading
|
|
15
|
+
{Job Title}{Start Date -- End Date}
|
|
16
|
+
{Company Name}{City, State}
|
|
17
|
+
\resumeItemListStart
|
|
18
|
+
\resumeItem{Describe your accomplishment or responsibility}
|
|
19
|
+
\resumeItem{Another accomplishment with measurable impact}
|
|
20
|
+
\resumeItemListEnd
|
|
21
|
+
|
|
22
|
+
\resumeSubHeadingListEnd
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
%-----------EXTRACURRICULAR-----------
|
|
2
|
+
\section{Extracurricular Activities}
|
|
3
|
+
\resumeSubHeadingListStart
|
|
4
|
+
|
|
5
|
+
\resumeSubheading
|
|
6
|
+
{Role / Position}{Start Date -- End Date}
|
|
7
|
+
{Organization Name}{City, State}
|
|
8
|
+
\resumeItemListStart
|
|
9
|
+
\resumeItem{Describe your involvement or leadership}
|
|
10
|
+
\resumeItem{Another contribution or achievement}
|
|
11
|
+
\resumeItemListEnd
|
|
12
|
+
|
|
13
|
+
\resumeSubheading
|
|
14
|
+
{Role / Position}{Start Date -- End Date}
|
|
15
|
+
{Organization Name}{City, State}
|
|
16
|
+
\resumeItemListStart
|
|
17
|
+
\resumeItem{Describe your involvement or leadership}
|
|
18
|
+
\resumeItemListEnd
|
|
19
|
+
|
|
20
|
+
\resumeSubHeadingListEnd
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
%-----------HONORS & AWARDS-----------
|
|
2
|
+
\section{Honors \& Awards}
|
|
3
|
+
\resumeSubHeadingListStart
|
|
4
|
+
\resumeAwardItem
|
|
5
|
+
{Award Name}{Competition or Organization}{Location}{Year}
|
|
6
|
+
\resumeAwardItem
|
|
7
|
+
{Award Name}{Competition or Organization}{Location}{Year}
|
|
8
|
+
\resumeAwardItem
|
|
9
|
+
{Award Name}{Competition or Organization}{Location}{Year}
|
|
10
|
+
\resumeSubHeadingListEnd
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
%-----------PRESENTATIONS-----------
|
|
2
|
+
\section{Presentations}
|
|
3
|
+
\resumeSubHeadingListStart
|
|
4
|
+
|
|
5
|
+
\resumeSubheading
|
|
6
|
+
{Presentation Title}{Date}
|
|
7
|
+
{Event / Conference Name}{City, State}
|
|
8
|
+
\resumeItemListStart
|
|
9
|
+
\resumeItem{Brief description of the talk or key topics covered}
|
|
10
|
+
\resumeItemListEnd
|
|
11
|
+
|
|
12
|
+
\resumeSubheading
|
|
13
|
+
{Presentation Title}{Date}
|
|
14
|
+
{Event / Conference Name}{City, State}
|
|
15
|
+
\resumeItemListStart
|
|
16
|
+
\resumeItem{Brief description of the talk or key topics covered}
|
|
17
|
+
\resumeItemListEnd
|
|
18
|
+
|
|
19
|
+
\resumeSubHeadingListEnd
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
%-----------PROJECTS-----------
|
|
2
|
+
\section{Technical Projects}
|
|
3
|
+
\resumeSubHeadingListStart
|
|
4
|
+
\resumeProjectHeading
|
|
5
|
+
{\textbf{Project Name} $|$ \emph{Technologies Used}}{Start Date -- End Date}
|
|
6
|
+
\resumeItemListStart
|
|
7
|
+
\resumeItem{Describe the project's purpose and your specific contributions}
|
|
8
|
+
\resumeItem{Highlight key technical achievements or metrics}
|
|
9
|
+
\resumeItemListEnd
|
|
10
|
+
\resumeProjectHeading
|
|
11
|
+
{\textbf{Another Project} $|$ \emph{Technologies Used}}{Start Date -- End Date}
|
|
12
|
+
\resumeItemListStart
|
|
13
|
+
\resumeItem{Describe the project's purpose and your specific contributions}
|
|
14
|
+
\resumeItemListEnd
|
|
15
|
+
\resumeSubHeadingListEnd
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
%-----------TECHNICAL SKILLS-----------
|
|
2
|
+
\section{Technical Skills}
|
|
3
|
+
\begin{itemize}[leftmargin=0.15in, label={}]
|
|
4
|
+
\small{\item{
|
|
5
|
+
\textbf{Languages}{: Java, Python, C/C++, SQL, JavaScript, HTML/CSS} \\
|
|
6
|
+
\textbf{Frameworks}{: React, Node.js, Flask, Django, FastAPI} \\
|
|
7
|
+
\textbf{Developer Tools}{: Git, Docker, Kubernetes, AWS, VS Code} \\
|
|
8
|
+
\textbf{Libraries}{: pandas, NumPy, Matplotlib}
|
|
9
|
+
}}
|
|
10
|
+
\end{itemize}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
%-----------WRITING & PUBLICATIONS-----------
|
|
2
|
+
\section{Writing \& Publications}
|
|
3
|
+
\resumeSubHeadingListStart
|
|
4
|
+
|
|
5
|
+
\resumeSubheading
|
|
6
|
+
{Role (e.g. Author, Co-Author)}{Start Date -- End Date}
|
|
7
|
+
{Publication or Blog Name}{Platform}
|
|
8
|
+
\resumeItemListStart
|
|
9
|
+
\resumeItem{Brief description of the publication or writing contribution}
|
|
10
|
+
\resumeItemListEnd
|
|
11
|
+
|
|
12
|
+
\resumeSubheading
|
|
13
|
+
{Role}{Start Date -- End Date}
|
|
14
|
+
{Publication or Blog Name}{Platform}
|
|
15
|
+
\resumeItemListStart
|
|
16
|
+
\resumeItem{Brief description of the publication or writing contribution}
|
|
17
|
+
\resumeItemListEnd
|
|
18
|
+
|
|
19
|
+
\resumeSubHeadingListEnd
|