Skip to content

Commit 4ba3b2f

Browse files
committed
feat: add resume
1 parent dd6a176 commit 4ba3b2f

18 files changed

+720
-362
lines changed

_config.yml

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,20 @@ timezone: # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
3434

3535
include:
3636
- _pages
37+
- _latex
3738

3839
# Exclude from processing.
3940
# The following items will not be processed, by default. Create a custom list
4041
# to override the default setting.
41-
# exclude:
42-
# - Gemfile
43-
# - Gemfile.lock
44-
# - node_modules
45-
# - vendor/bundle/
46-
# - vendor/cache/
47-
# - vendor/gems/
48-
# - vendor/ruby/
42+
exclude:
43+
- _latex
44+
- Gemfile
45+
- Gemfile.lock
46+
- node_modules
47+
- vendor/bundle/
48+
- vendor/cache/
49+
- vendor/gems/
50+
- vendor/ruby/
4951

5052
# Plugins (previously gems:)
5153
plugins:
@@ -64,24 +66,12 @@ author:
6466
- label: "Email"
6567
icon: "fas fa-fw fa-envelope"
6668
url: "mailto:reednicolas@berkeley.edu"
67-
- label: "LinkedIn"
68-
icon: "fab fa-fw fa-linkedin"
69-
url: "https://linkedin.com/in/reed-nicolas"
7069
- label: "GitHub"
7170
icon: "fab fa-fw fa-github"
7271
url: "https://github.com/reed-nicolas"
73-
74-
footer:
75-
links:
76-
- label: "Email"
77-
icon: "fas fa-fw fa-envelope"
78-
url: "mailto:reednicolas@berkeley.edu"
7972
- label: "LinkedIn"
8073
icon: "fab fa-fw fa-linkedin"
8174
url: "https://linkedin.com/in/reed-nicolas"
82-
- label: "GitHub"
83-
icon: "fab fa-fw fa-github"
84-
url: "https://github.com/reed-nicolas"
8575

8676
defaults:
8777
# _posts

_data/navigation.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
main:
2-
- title: "Posts"
3-
url: /posts/
4-
- title: "Categories"
5-
url: /categories/
6-
- title: "Tags"
7-
url: /tags/
8-
- title: "About"
9-
url: /about/
2+
- title: "Resume"
3+
url: /resume/
4+
- title: "Coursework"
5+
url: /coursework/

_latex/resume.tex

Lines changed: 197 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,197 @@
1+
%-------------------------
2+
% Resume in Latex
3+
% Author : Nicolas Reed (adapted from Jake Gutierrez template)
4+
% Based off of: https://github.com/sb2nov/resume
5+
% License : MIT
6+
%------------------------
7+
8+
\documentclass[letterpaper,11pt]{article}
9+
10+
\usepackage{latexsym}
11+
\usepackage[empty]{fullpage}
12+
\usepackage{titlesec}
13+
\usepackage{marvosym}
14+
\usepackage[usenames,dvipsnames]{color}
15+
\usepackage{verbatim}
16+
\usepackage{enumitem}
17+
\usepackage[hidelinks]{hyperref}
18+
\usepackage{fancyhdr}
19+
\usepackage[english]{babel}
20+
\usepackage{tabularx}
21+
\usepackage[usenames,dvipsnames]{xcolor} % gives access to RoyalBlue
22+
\input{glyphtounicode}
23+
24+
%----------FONT OPTIONS----------
25+
% Uncomment to change the font
26+
% \usepackage[sfdefault]{FiraSans}
27+
% \usepackage[default]{sourcesanspro}
28+
29+
\pagestyle{fancy}
30+
\fancyhf{} % clear all header and footer fields
31+
\fancyfoot{}
32+
\renewcommand{\headrulewidth}{0pt}
33+
\renewcommand{\footrulewidth}{0pt}
34+
35+
% Adjust margins
36+
\addtolength{\oddsidemargin}{-0.5in}
37+
\addtolength{\evensidemargin}{-0.5in}
38+
\addtolength{\textwidth}{1in}
39+
\addtolength{\topmargin}{-.5in}
40+
\addtolength{\textheight}{1.0in}
41+
42+
\urlstyle{same}
43+
44+
\raggedbottom
45+
\raggedright
46+
\setlength{\tabcolsep}{0in}
47+
48+
% Sections formatting
49+
\titleformat{\section}{
50+
\vspace{-9pt}\scshape\raggedright\large
51+
}{}{0em}{}[\color{black}\titlerule \vspace{-5pt}]
52+
53+
% Ensure that generated PDF is machine readable / ATS parsable
54+
\pdfgentounicode=1
55+
56+
%-------------------------
57+
% Custom commands
58+
\newcommand{\resumeItem}[1]{
59+
\item\small{
60+
{#1 \vspace{-2pt}}
61+
}
62+
}
63+
64+
\newcommand{\resumeSubheading}[4]{
65+
\vspace{-2pt}\item
66+
\begin{tabular*}{0.97\textwidth}[t]{l@{\extracolsep{\fill}}r}
67+
\textbf{#1} & #2 \\
68+
\textit{\small#3} & \textit{\small #4} \\
69+
\end{tabular*}\vspace{-5pt}
70+
}
71+
72+
\newcommand{\resumeSubSubheading}[2]{
73+
\item
74+
\begin{tabular*}{0.97\textwidth}{l@{\extracolsep{\fill}}r}
75+
\textit{\small#1} & \textit{\small #2} \\
76+
\end{tabular*}\vspace{-7pt}
77+
}
78+
79+
\newcommand{\resumeProjectHeading}[2]{
80+
\item
81+
\begin{tabular*}{0.97\textwidth}{l@{\extracolsep{\fill}}r}
82+
\small#1 & #2 \\
83+
\end{tabular*}\vspace{-7pt}
84+
}
85+
86+
\newcommand{\resumeSubItem}[1]{\resumeItem{#1}\vspace{-4pt}}
87+
88+
\renewcommand\labelitemii{$\vcenter{\hbox{\tiny$\bullet$}}$}
89+
90+
\newcommand{\resumeSubHeadingListStart}{\begin{itemize}[leftmargin=0.15in, label={}]}
91+
\newcommand{\resumeSubHeadingListEnd}{\end{itemize}}
92+
\newcommand{\resumeItemListStart}{\begin{itemize}}
93+
\newcommand{\resumeItemListEnd}{\end{itemize}\vspace{-5pt}}
94+
95+
%-------------------------------------------
96+
%%%%%% RESUME STARTS HERE %%%%%%%%%%%%%%%%%%%%%%%%%%%%
97+
98+
\begin{document}
99+
100+
%----------HEADING----------
101+
\begin{center}
102+
{\Huge \scshape Nicolas Reed} \\ \vspace{1pt}
103+
\small (669)~242{-}9012 $\vert$ \href{mailto:reednicolas@berkeley.edu}{\underline{reednicolas@berkeley.edu}} $\vert$
104+
\href{https://linkedin.com/in/reednicolas}{\underline{linkedin.com/in/reednicolas}}
105+
\end{center}
106+
107+
%-----------EDUCATION-----------
108+
\section{Education}
109+
\resumeSubHeadingListStart
110+
\resumeSubheading
111+
{University of California, Berkeley}{GPA: 3.66/4.00}
112+
{B.S.\ Electrical Engineering \& Computer Sciences (EECS)}{Expected May 2027}
113+
114+
%–– small vertical gap ––
115+
\vspace{5pt} % adjust to taste (1–2 pt works well)
116+
117+
{\small\textbf{Relevant coursework:} Digital Design and Integrated Circuits with FPGA Lab (in progress), Computer Architecture and Machine Structures, Operating Systems (in progress), Signals and Circuits~I~\&~II, Data Structures, Structure and Interpretation of Computer Programs, Foundations of Data Science}
118+
\resumeSubHeadingListEnd
119+
120+
%-----------EXPERIENCE-----------
121+
\section{Experience}
122+
\resumeSubHeadingListStart
123+
124+
\resumeSubheading
125+
{Sandisk}{Milpitas, CA}
126+
{Software Development Intern}{May 2025 -- Present}
127+
\resumeItemListStart
128+
\resumeItem{Analyzed and reconciled CMDB and inventory data for 40,000+ virtual machines using Pandas, enabling automated cleansing and transformation workflows that identified gaps, standardized records, and generated actionable migration plans for a cloud provider transition.}
129+
\resumeItem{Streamlined license management and contract summarization for 10,000 enterprise applications by developing an AI assistant using LlamaIndex and NLP, delivering actionable insights that improved compliance and reduced spend.}
130+
\resumeItemListEnd
131+
132+
\resumeSubheading
133+
{\href{https://slice.eecs.berkeley.edu/}{\underline{UC Berkeley SLICE Lab}}}{Berkeley, CA}
134+
{Undergraduate Research Assistant}{May 2025 -- Present}
135+
\resumeItemListStart
136+
\resumeItem{Researching under \href{https://sagark.org/}{\underline{Professor Sagar Karandikar}} to integrate AI tooling that improves the usability of Chipyard and FireSim frameworks for RISC{-}V hardware development.}
137+
\resumeItem{Extend RISC-V hardware components for architectural research by analyzing and simulating designs using Verilog and Chisel within the Chipyard toolchain.}
138+
\resumeItemListEnd
139+
140+
\resumeSubheading
141+
{UC Berkeley Electrical Engineering \& Computer Sciences (EECS)}{Berkeley, CA}
142+
{Head Teaching Assistant}{June 2024 -- Present}
143+
\resumeItemListStart
144+
\resumeItem{Support 1,200+ students with C, RISC-V, Python, and Logisim through office hours and an online forum.}
145+
\resumeItem{Host weekly lab sections for 50+ students, guiding programming exercises and problem-solving practice.}
146+
\resumeItem{Develop weekly homework and lab assignments, and maintain course infrastructure using GitHub and Docker.}
147+
\resumeItem{Earned a 4.67/5.00 average teaching rating and ranked third in student acknowledgements on course feedback.}
148+
\resumeItem{Answer 1{,}500+ student questions per semester to lead online forum engagement.}
149+
\resumeItemListEnd
150+
151+
\resumeSubheading
152+
{\href{https://www.micross.com/home/global/north-america/silicon-turnkey-solutions-milpitas-ca}{\underline{Micross Components - Silicon Turnkey Solutions}}}{Milpitas, CA}
153+
{Engineering Intern}{July 2023 -- Aug. 2023}
154+
\resumeItemListStart
155+
\resumeItem{Conducted mechanical and PCB testing on 1,000+ devices, translating results into actionable insights via Excel.}
156+
\resumeItem{Organized 500+ items and launched a project to boost Cleanroom productivity via preventative maintenance.}
157+
\resumeItem{Resolved a test issue by documenting compromised semiconductors and identifying the damage stage.}
158+
\resumeItem{Improved operational efficiency by creating setup sheets and updating data packages to ensure accuracy.}
159+
\resumeItemListEnd
160+
161+
\resumeSubHeadingListEnd
162+
163+
%-----------PROJECTS-----------
164+
\section{Projects}
165+
\resumeSubHeadingListStart
166+
\resumeProjectHeading
167+
{\textbf{Multistage Pipelined RISC{-}V CPU}}{2025}
168+
\resumeItemListStart
169+
\resumeItem{Designed a three-stage pipelined RISC-V CPU supporting 40+ I/R/B/S/J-type instructions for arithmetic, logic, memory, and control flow operations.}
170+
\resumeItem{Built the ALU, register file, and immediate generator to enable modular instruction execution.}
171+
\resumeItem{Implemented hazard detection and control logic to resolve data and control hazards and minimize stalls.}
172+
\resumeItemListEnd
173+
174+
\resumeProjectHeading
175+
{\textbf{Linguistic Data Analysis and Visualization Tools}}{2024}
176+
\resumeItemListStart
177+
\resumeItem{Developed a browser-based tool that visualizes word usage over time by processing large CSV datasets.}
178+
\resumeItem{Created a semantic network modeling word relationships using graph traversal for efficient lookup and analysis.}
179+
\resumeItem{Practiced test driven development to ensure correctness and performance across modular Java packages.}
180+
\resumeItemListEnd
181+
182+
\resumeProjectHeading
183+
{\textbf{Scheme Interpreter}}{2024}
184+
\resumeItemListStart
185+
\resumeItem{Implemented an interpreter for a subset of the Scheme language in Python, supporting core expressions and syntax}
186+
\resumeItem{Applied semantic and lexical analysis techniques that machines use to evaluate and execute code.}
187+
\resumeItemListEnd
188+
\resumeSubHeadingListEnd
189+
190+
%-----------TECHNICAL SKILLS-----------
191+
\section{Technical Skills}
192+
\begin{itemize}[leftmargin=0.15in, label={}]
193+
\small{\item{\textbf{Languages}: C, Python, Verilog, RISC{-}V, Chisel, SQL, MATLAB, Lisp (Scheme) \\
194+
\textbf{Tools \& Frameworks}: Git, GDB, Valgrind, Pandas, NumPy, Logisim, Digilent WaveForms, LTSpice, Matplotlib}}
195+
\end{itemize}
196+
197+
\end{document}

_pages/about.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

_pages/category-archive.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

_pages/coursework.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
permalink: /coursework/
3+
title: "Coursework"
4+
---
5+
6+
## Coursework
7+
8+
### Computer Science & Engineering
9+
10+
#### [Course Code] - [Course Name]
11+
*[Semester/Year]*
12+
- **Instructor:** [Professor Name]
13+
- **Description:** [Brief course description]
14+
- **Key Topics:** [Main topics covered]
15+
- **Projects:** [Notable projects or assignments]
16+
- **Grade:** [Your grade if you want to include it]
17+
18+
#### [Course Code] - [Course Name]
19+
*[Semester/Year]*
20+
- **Instructor:** [Professor Name]
21+
- **Description:** [Brief course description]
22+
- **Key Topics:** [Main topics covered]
23+
- **Projects:** [Notable projects or assignments]
24+
- **Grade:** [Your grade if you want to include it]
25+
26+
### Mathematics & Statistics
27+
28+
#### [Course Code] - [Course Name]
29+
*[Semester/Year]*
30+
- **Instructor:** [Professor Name]
31+
- **Description:** [Brief course description]
32+
- **Key Topics:** [Main topics covered]
33+
- **Projects:** [Notable projects or assignments]
34+
- **Grade:** [Your grade if you want to include it]
35+
36+
### Other Relevant Courses
37+
38+
#### [Course Code] - [Course Name]
39+
*[Semester/Year]*
40+
- **Instructor:** [Professor Name]
41+
- **Description:** [Brief course description]
42+
- **Key Topics:** [Main topics covered]
43+
- **Projects:** [Notable projects or assignments]
44+
- **Grade:** [Your grade if you want to include it]
45+
46+
---
47+
48+
## Current Courses
49+
50+
*[List any courses you're currently taking]*
51+
52+
---
53+
54+
## Planned Courses
55+
56+
*[List any courses you plan to take in upcoming semesters]*
57+
58+
---
59+
60+
*This is a placeholder - please customize this content to reflect your actual coursework, including course codes, names, descriptions, and any notable projects.*

_pages/tag-archive.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

_pages/year-archive.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

_posts/2010-01-07-post-modified.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)