1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
% build with `xelatex cv.tex`
\documentclass[12pt, a4paper]{article}
\usepackage[slantfont, boldfont]{xeCJK}
\usepackage{fontspec}
\setmainfont{CMU Bright}
\usepackage{enumitem}
\usepackage[margin=2cm]{geometry}
\usepackage{hyperref}
\hypersetup{
pdftex,
pdfauthor={Yihang Yin},
pdftitle={Yihang Yin | 尹奕航},
colorlinks=true,
linkcolor=blue,
filecolor=blue,
citecolor = black,
urlcolor=blue,
}
\usepackage{lastpage}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\chead{
{\bf\underline{\huge{Yihang Yin} | 尹奕航}}
\vspace{2ex}
173 0216 6140 |
\href{mailto:fred.yin@sjtu.edu.cn}{fred.yin@sjtu.edu.cn} |
\href{https://fkfd.me}{https://fkfd.me} |
he/they
}
% \cfoot{\thepage\hspace{1pt} OF \pageref*{LastPage}}
\usepackage{titlesec}
\titleformat{\section}{\bf}{}{0em}{}[\hrule]
\linespread{1.1}
\setlength{\parskip}{-1.5ex}
\setlength{\parindent}{0em}
\renewcommand\headrulewidth{0pt}
\setlength{\headheight}{1in}
\setlength{\footskip}{5ex}
\setlength{\headsep}{5ex}
\title{Yihang Yin | 尹奕航}
\begin{document}
\section{EDUCATION}
\textbf{University of Michigan}
\hfill Ann Arbor, MI \newline
B.S.E. in Computer Engineering
\hfill Sept 2023 -- Apr 2025 (expected)
\vspace{3ex}
\textbf{Shanghai Jiao Tong University}
\hfill Shanghai, China \newline
B.S.E. in Electrical and Computer Engineering
\hfill Sept 2021 -- Aug 2025 (expected)
\section{TECHNICAL SKILLS}
\begin{itemize}[leftmargin=1.5em]\itemsep -0.5ex
\item \textbf{Programming Languages} — C, C++, Python, JavaScript, MATLAB, Haskell
\item \textbf{Microcontrollers} — ESP32, Arduino, AVR
\item \textbf{Software} — KiCad, FreeCAD, Vivado, Multisim
\item \textbf{Linux} — Arch Linux (desktop), Ubuntu (server)
\end{itemize}
\section{PROJECTS}
\begin{itemize}[leftmargin=1.5em]\itemsep -0.5ex
\item \href{https://fkfd.me/projects/sirtet/}{\textbf{SIRTET}}
— Tetris-inspired game in C, running in ncurses
\item \href{https://fkfd.me/projects/one_top_song/}{\textbf{one tøp song}}
— Scraped data and made web game all in 8 hours
\item \href{https://fkfd.me/projects/bikeblinkers/}{\textbf{Bikeblinkers}}
— PCBs designed from scratch as bicycle-mounted blinkers
\item \textbf{Byseekel}
— Sequel to Bikeblinkers, programmed ATmega328P with avr-glibc
\item \href{https://fkfd.me/projects/nand2tetris_1/}{\textbf{Nand to Tetris}}
— Open course on Coursera, built a computer from NAND gates
\item \textbf{vim-clutch}
— AVR project with V-USB library
\end{itemize}
\section{TEACHING EXPERIENCE}
\textbf{Shanghai Jiao Tong University}
\hfill Shanghai, China \newline
Teaching Assistant
\hfill Sept 2022 -- Dec 2022
\begin{itemize}[leftmargin=1.5em]\itemsep -0.5ex
\item Course: ENGR1510J,
Accelerated Introduction to Computers and Programming
\item Maintained Python grader script for assignments
\item Automated tasks with Bash for TA team
\end{itemize}
\section{STUDENT WORK}
\textbf{Director of TechJI} \hfill Aug 2022 -- present
\begin{itemize}[leftmargin=1.5em]\itemsep -0.5ex
\item Leads volunteer team in Student Union
\item Workshops (co-)hosted: mechanical keyboard, Bash, Vim, reflow, \LaTeX
\end{itemize}
\end{document}
|