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
106
107
108
109
110
111
112
|
% build with `xelatex cv.tex`
\documentclass[10.5pt, a4paper]{article}
\usepackage[slantfont, boldfont]{xeCJK}
\usepackage{fontspec}
\setmainfont{CMU Bright}
\usepackage{enumitem}
\usepackage[margin=2.5cm]{geometry} % Document margins
\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{\large{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}
}
% \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}
\textbf{C Programming}
\begin{itemize}[leftmargin=1.5em]\itemsep -0.5ex
\item \href{https://fkfd.me/projects/sirtet/}{\textbf{sirtet}}
— Tetris-inspired game in ncurses
\end{itemize}
\textbf{ESP32}
\begin{itemize}[leftmargin=1.5em]\itemsep -0.5ex
\item Developed projects with ESP-IDF and MicroPython
\end{itemize}
\textbf{AVR}
\begin{itemize}[leftmargin=1.5em]\itemsep -0.5ex
\item Used avr-glibc and V-USB
\end{itemize}
\textbf{KiCad EDA}
\begin{itemize}[leftmargin=1.5em]\itemsep -0.5ex
\item 2 PCB projects from scratch
\item Through-hole, surface-mount and reflow soldering
\end{itemize}
\textbf{Linux \& Bash}
\begin{itemize}[leftmargin=1.5em]\itemsep -0.5ex
\item Linux user for 6 years (desktop \& server)
\item Wrote automation scripts using Bash, Git, and GNU Make
\end{itemize}
\textbf{Other Programming Languages}
\begin{itemize}[leftmargin=1.5em]\itemsep -0.5ex
\item Python, C++, JavaScript, MATLAB, Haskell
\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}
|