Compare commits
10 Commits
78e705c3dc
...
d34da8ddd4
| Author | SHA1 | Date | |
|---|---|---|---|
| d34da8ddd4 | |||
| 4e1e5f6a77 | |||
| 381b287cd7 | |||
| 7a50003748 | |||
| 3f2414e92c | |||
| 6e4e40cf16 | |||
| 2ee5d5c14a | |||
| e8bc19c8b6 | |||
| ed77062aa8 | |||
| b43cf71c54 |
31
404.html
Normal file
31
404.html
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Document</title>
|
||||||
|
<style>
|
||||||
|
html, body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
iframe, embed, object {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<!-- Try iframe first -->
|
||||||
|
<iframe src="resume/main.pdf"></iframe>
|
||||||
|
|
||||||
|
<!-- If iframe fails, fallback viewer -->
|
||||||
|
<object data="resume/main.pdf" type="application/pdf"></object>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
BIN
brag-sheet-rsi/main.pdf
Normal file
BIN
brag-sheet-rsi/main.pdf
Normal file
Binary file not shown.
406
brag-sheet-rsi/main.tex
Normal file
406
brag-sheet-rsi/main.tex
Normal file
@@ -0,0 +1,406 @@
|
|||||||
|
\documentclass[10pt, letterpaper]{article}
|
||||||
|
|
||||||
|
% Packages:
|
||||||
|
\usepackage[
|
||||||
|
ignoreheadfoot, % set margins without considering header and footer
|
||||||
|
top=2 cm, % seperation between body and page edge from the top
|
||||||
|
bottom=2 cm, % seperation between body and page edge from the bottom
|
||||||
|
left=2 cm, % seperation between body and page edge from the left
|
||||||
|
right=2 cm, % seperation between body and page edge from the right
|
||||||
|
footskip=1.0 cm, % seperation between body and footer
|
||||||
|
% showframe % for debugging
|
||||||
|
]{geometry} % for adjusting page geometry
|
||||||
|
\usepackage{titlesec} % for customizing section titles
|
||||||
|
\usepackage{tabularx} % for making tables with fixed width columns
|
||||||
|
\usepackage{array} % tabularx requires this
|
||||||
|
\usepackage[dvipsnames]{xcolor} % for coloring text
|
||||||
|
\definecolor{primaryColor}{RGB}{0, 79, 144} % define primary color
|
||||||
|
\usepackage{enumitem} % for customizing lists
|
||||||
|
\usepackage{fontawesome5} % for using icons
|
||||||
|
\usepackage{amsmath} % for math
|
||||||
|
\usepackage[
|
||||||
|
pdftitle={Keshav Anand's Brag Sheet},
|
||||||
|
pdfauthor={Keshav Anand},
|
||||||
|
pdfcreator={LaTeX with RenderCV},
|
||||||
|
colorlinks=true,
|
||||||
|
urlcolor=primaryColor
|
||||||
|
]{hyperref} % for links, metadata and bookmarks
|
||||||
|
\usepackage[pscoord]{eso-pic} % for floating text on the page
|
||||||
|
\usepackage{calc} % for calculating lengths
|
||||||
|
\usepackage{bookmark} % for bookmarks
|
||||||
|
\usepackage{lastpage} % for getting the total number of pages
|
||||||
|
\usepackage{changepage} % for one column entries (adjustwidth environment)
|
||||||
|
\usepackage{paracol} % for two and three column entries
|
||||||
|
\usepackage{ifthen} % for conditional statements
|
||||||
|
\usepackage{needspace} % for avoiding page brake right after the section title
|
||||||
|
\usepackage{iftex} % check if engine is pdflatex, xetex or luatex
|
||||||
|
|
||||||
|
% Ensure that generate pdf is machine readable/ATS parsable:
|
||||||
|
\ifPDFTeX
|
||||||
|
\input{glyphtounicode}
|
||||||
|
\pdfgentounicode=1
|
||||||
|
% \usepackage[T1]{fontenc} % this breaks sb2nov
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage{lmodern}
|
||||||
|
\fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
% Some settings:
|
||||||
|
\AtBeginEnvironment{adjustwidth}{\partopsep0pt} % remove space before adjustwidth environment
|
||||||
|
\pagestyle{empty} % no header or footer
|
||||||
|
\setcounter{secnumdepth}{0} % no section numbering
|
||||||
|
\setlength{\parindent}{0pt} % no indentation
|
||||||
|
\setlength{\topskip}{0pt} % no top skip
|
||||||
|
\setlength{\columnsep}{0cm} % set column seperation
|
||||||
|
\makeatletter
|
||||||
|
\let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle
|
||||||
|
\patchcmd{\ps@customFooterStyle}{\thepage}{
|
||||||
|
\color{gray}\textit{\small Keshav Anand - Page \thepage{} of \pageref*{LastPage}}
|
||||||
|
}{}{} % replace number by desired string
|
||||||
|
\makeatother
|
||||||
|
\pagestyle{customFooterStyle}
|
||||||
|
|
||||||
|
\titleformat{\section}{\needspace{4\baselineskip}\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule]
|
||||||
|
|
||||||
|
\titlespacing{\section}{
|
||||||
|
% left space:
|
||||||
|
-1pt
|
||||||
|
}{
|
||||||
|
% top space:
|
||||||
|
0.3 cm
|
||||||
|
}{
|
||||||
|
% bottom space:
|
||||||
|
0.2 cm
|
||||||
|
} % section title spacing
|
||||||
|
|
||||||
|
\renewcommand\labelitemi{$\circ$} % custom bullet points
|
||||||
|
\newenvironment{highlights}{
|
||||||
|
\begin{itemize}[
|
||||||
|
topsep=0.10 cm,
|
||||||
|
parsep=0.10 cm,
|
||||||
|
partopsep=0pt,
|
||||||
|
itemsep=0pt,
|
||||||
|
leftmargin=0.4 cm + 10pt
|
||||||
|
]
|
||||||
|
}{
|
||||||
|
\end{itemize}
|
||||||
|
} % new environment for highlights
|
||||||
|
|
||||||
|
\newenvironment{highlightsforbulletentries}{
|
||||||
|
\begin{itemize}[
|
||||||
|
topsep=0.10 cm,
|
||||||
|
parsep=0.10 cm,
|
||||||
|
partopsep=0pt,
|
||||||
|
itemsep=0pt,
|
||||||
|
leftmargin=10pt
|
||||||
|
]
|
||||||
|
}{
|
||||||
|
\end{itemize}
|
||||||
|
} % new environment for highlights for bullet entries
|
||||||
|
|
||||||
|
|
||||||
|
\newenvironment{onecolentry}{
|
||||||
|
\begin{adjustwidth}{
|
||||||
|
0.2 cm + 0.00001 cm
|
||||||
|
}{
|
||||||
|
0.2 cm + 0.00001 cm
|
||||||
|
}
|
||||||
|
}{
|
||||||
|
\end{adjustwidth}
|
||||||
|
} % new environment for one column entries
|
||||||
|
|
||||||
|
\newenvironment{twocolentry}[2][]{
|
||||||
|
\onecolentry
|
||||||
|
\def\secondColumn{#2}
|
||||||
|
\setcolumnwidth{\fill, 4.5 cm}
|
||||||
|
\begin{paracol}{2}
|
||||||
|
}{
|
||||||
|
\switchcolumn \raggedleft \secondColumn
|
||||||
|
\end{paracol}
|
||||||
|
\endonecolentry
|
||||||
|
} % new environment for two column entries
|
||||||
|
|
||||||
|
\newenvironment{header}{
|
||||||
|
\setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5}
|
||||||
|
}{
|
||||||
|
\par\kern\topsep
|
||||||
|
} % new environment for the header
|
||||||
|
|
||||||
|
\newcommand{\placelastupdatedtext}{% \placetextbox{<horizontal pos>}{<vertical pos>}{<stuff>}
|
||||||
|
\AddToShipoutPictureFG*{% Add <stuff> to current page foreground
|
||||||
|
\put(
|
||||||
|
\LenToUnit{\paperwidth-2 cm-0.2 cm+0.05cm},
|
||||||
|
\LenToUnit{\paperheight-1.0 cm}
|
||||||
|
){\vtop{{\null}\makebox[0pt][c]{
|
||||||
|
\small\color{gray}\textit{Last updated in November 2025}\hspace{\widthof{Last updated in November 2025}}
|
||||||
|
}}}%
|
||||||
|
}%
|
||||||
|
}%
|
||||||
|
|
||||||
|
% save the original href command in a new command:
|
||||||
|
\let\hrefWithoutArrow\href
|
||||||
|
|
||||||
|
% new command for external links:
|
||||||
|
\renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\newcommand{\AND}{\unskip
|
||||||
|
\cleaders\copy\ANDbox\hskip\wd\ANDbox
|
||||||
|
\ignorespaces
|
||||||
|
}
|
||||||
|
\newsavebox\ANDbox
|
||||||
|
\sbox\ANDbox{}
|
||||||
|
|
||||||
|
\placelastupdatedtext
|
||||||
|
\begin{header}
|
||||||
|
\textbf{\fontsize{24 pt}{24 pt}\selectfont Keshav Anand — Brag Sheet}
|
||||||
|
|
||||||
|
% \vspace{0.3 cm}
|
||||||
|
|
||||||
|
% \normalsize
|
||||||
|
% \mbox{{\color{black}\footnotesize\faMapMarker*}\hspace*{0.13cm}Your Location}%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \AND%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \mbox{\hrefWithoutArrow{mailto:youremail@yourdomain.com}{\color{black}{\footnotesize\faEnvelope[regular]}\hspace*{0.13cm}youremail@yourdomain.com}}%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \AND%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \mbox{\hrefWithoutArrow{tel:+90-541-999-99-99}{\color{black}{\footnotesize\faPhone*}\hspace*{0.13cm}0541 999 99 99}}%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \AND%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \mbox{\hrefWithoutArrow{https://yourwebsite.com/}{\color{black}{\footnotesize\faLink}\hspace*{0.13cm}yourwebsite.com}}%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \AND%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \mbox{\hrefWithoutArrow{https://linkedin.com/in/yourusername}{\color{black}{\footnotesize\faLinkedinIn}\hspace*{0.13cm}yourusername}}%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \AND%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \mbox{\hrefWithoutArrow{https://github.com/yourusername}{\color{black}{\footnotesize\faGithub}\hspace*{0.13cm}yourusername}}%
|
||||||
|
|
||||||
|
\end{header}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Program Information}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
Application for Research and Science Institute (RSI), and ultra-selective (3\%) program at MiT for science research
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
Admission into this program results in auto-admission into \textbf{practically any US College} (due to selectivity)
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
I am applying for RSI so I can promote my \textbf{computer science and engineering} research that I have done
|
||||||
|
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.15 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item \href{https://math.mit.edu/research/highschool/rsi/}{RSI Program Page} — top program in the US for high school research
|
||||||
|
\item I am applying in computer science and robotics as research disciplines
|
||||||
|
\item My acceptance is dependent on my prior research, accolades, and the strength of my recommendations
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Character Traits and Personality}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlightsforbulletentries}
|
||||||
|
|
||||||
|
|
||||||
|
\item \textbf{Honest} and high \textbf{integrity}: helped catch cheaters in school multiple times.
|
||||||
|
\item \textbf{Inquisitive and Curious}: always asking questions and trying to learn more
|
||||||
|
\item \textbf{Hardworking and Determined}: Pushing myself to perfection in everything I do
|
||||||
|
\item \textbf{Creative Problem Solver}: Able to think outside the box and come up with innovative solutions
|
||||||
|
\item \textbf{Character Weaknesses:}
|
||||||
|
\subitem Can tend to overthink problems and overcomplicated solutions
|
||||||
|
\subitem Sometimes take on too much at once and struggle to prioritize tasks
|
||||||
|
\subitem Sometimes struggle with delegation and asking for help when needed
|
||||||
|
\subitem Can be overly critical of myself and others at times
|
||||||
|
\end{highlightsforbulletentries}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\section{Education}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{August 2023 – May 2027}}
|
||||||
|
\textbf{Plano East Senior High School, Plano}
|
||||||
|
|
||||||
|
\textit{STEM and Multidisciplinary Endorsement}
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item GPA: 4.73/4.0 (\href{https://resume.keshavanand.net/docs/transcript}{View Unnoficial Transcript})
|
||||||
|
\item Class Rank: \textbf{1/1273}
|
||||||
|
\item \textbf{Current Coursework:} AP Chemistry, American Studies (AP US History + AP English Language), Digital Electronics, AP Physics I, Calculus III (via Collin College)
|
||||||
|
\item SAT: 1550/1600 — Reading 760/800, Maths 790/800
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\section{GaitGuardian: Highlight Research Project}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
\textit{\href{https://isef.net/project/robo011t-ml-imu-processing-and-visual-monitoring-for-pd}{Project Portfolio}}}
|
||||||
|
\textbf{Lead Researcher}
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item Built \textbf{GaitGuardian}, an end-to-end ML system aiding advanced Parkinson’s Disease patients.
|
||||||
|
\item Designed a \textbf{custom PCB} and embedded stack with a 6-DoF IMU and ESP32-S3 for real-time sensing.
|
||||||
|
\item Developed a \textbf{dual-attention CNN + biLSTM} model predicting Freezing-of-Gait up to 2s early.
|
||||||
|
\item Created real-time algorithms for \textbf{fall detection} and \textbf{tremor classification} using IMU signals.
|
||||||
|
\item Implemented a cloud-based \textbf{visual navigation module} with transformer object detection, depth estimation, and multimodal LLM scene descriptions.
|
||||||
|
\item Optimized sensor pipelines via \textbf{signal filtering, feature engineering, oversampling}, and model tuning.
|
||||||
|
\item Built two wearable devices (trunk and wrist) plus a BLE-connected \textbf{forehead camera} for vision tasks.
|
||||||
|
\item Demonstrated performance exceeding existing FoG, fall, and tremor detection systems.
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.1cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
Won 3rd Place at \textbf{The International Science and Engineering Fair}, 2nd OVERALL in Dallas $\to$ over \$1500 won
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Simply Stir: Highlight Research Project}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
\textit{\href{https://isef.net/project/etsd012-self-stirring-pot-using-the-seebeck-effect}{Project Portfolio}}}
|
||||||
|
\textbf{Sole Researcher}
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item Developed a thermoelectric energy-harvesting system using a TEG for autonomous stirring.
|
||||||
|
\item Designed a compact aluminum enclosure enabling efficient heat transfer and stable thermal gradients.
|
||||||
|
\item Implemented electrical conditioning and load-matching to maximize TEG power extraction.
|
||||||
|
\item Tested power delivery across various $R_Loads$ using Vernier Probes
|
||||||
|
\item Performed thermal, electrical, and mechanical characterization across multiple cooking conditions.
|
||||||
|
\item Conducted viscosity-based stirring tests and identified mechanical design improvements for high-torque fluids.
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
\vspace{0.1cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
Qualified to \textbf{The International Science and Engineering Fair}, 1st in Engineering @ Dallas
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
\section{FTC Robotics}
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
\textit{\href{https://technicalturbulence.org}{Website}, \href{https://github.com/KeshavAnandCode/2024_Main.git}{Code Repo}}}
|
||||||
|
\textbf{Lead Software Developer – Technical Turbulence} (2023–Present)
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item Designed and implemented \textbf{custom inverse kinematics and path-planning algorithms} for precise autonomous navigation.
|
||||||
|
\item Integrated \textbf{computer vision pipelines} for object classification using TensorFlow Lite
|
||||||
|
\item Developed novel driver control enhancements to improve driver performance
|
||||||
|
\item Optimized accuracy and real-time performance through efficient sensor usage
|
||||||
|
\item Lead software \textbf{Top 30 Worldwide} for autonomous programming; reached FTC State Finals.
|
||||||
|
\item Led software development, version control, and testing for a programming team of 4 members.
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\section{Skills}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Programming Languages:} Java, Python, Bash, C++ (Arduino), Kotlin (FTC), Limited HTML, JS, CSS
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Programming Applications:} Machine Learning, Signal Processing, Tensor Flow, Computer Vision
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Miscellaneous:} Public Speaking, CAD, PCB Design, Electrical, Competition Math
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\section{Other Activities}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Vice President, LASER:} Guiding and instructing 120+ students for Science Fair
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Founder, Cricket Club:} Former USA U15 Cricketer $\to$ Formed Plano East's first cricket team
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Technology Officer, NHS:} Coded and maintained React-based portal for largest NHS chapter in the US
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{\href{https://music.keshavanand.net/}{Original Music Library}}}
|
||||||
|
\textbf{Indian Film Music:} Bass, Keys, and Arrangement, member of High Octavez
|
||||||
|
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\end{document}
|
||||||
31
docs/brag-sheets/rsi/index.html
Normal file
31
docs/brag-sheets/rsi/index.html
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Document</title>
|
||||||
|
<style>
|
||||||
|
html, body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
iframe, embed, object {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<!-- Try iframe first -->
|
||||||
|
<iframe src="../../brag-sheet-rsi/main.pdf"></iframe>
|
||||||
|
|
||||||
|
<!-- If iframe fails, fallback viewer -->
|
||||||
|
<object data="../../brag-sheet-rsi/main.pdf" type="application/pdf"></object>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -22,10 +22,10 @@
|
|||||||
<body>
|
<body>
|
||||||
|
|
||||||
<!-- Try iframe first -->
|
<!-- Try iframe first -->
|
||||||
<iframe src="../resume/main.pdf"></iframe>
|
<iframe src="resume/main.pdf"></iframe>
|
||||||
|
|
||||||
<!-- If iframe fails, fallback viewer -->
|
<!-- If iframe fails, fallback viewer -->
|
||||||
<object data="../resume/main.pdf" type="application/pdf"></object>
|
<object data="resume/main.pdf" type="application/pdf"></object>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
BIN
resume/main.pdf
BIN
resume/main.pdf
Binary file not shown.
@@ -205,7 +205,7 @@
|
|||||||
\vspace{0.10 cm}
|
\vspace{0.10 cm}
|
||||||
\begin{onecolentry}
|
\begin{onecolentry}
|
||||||
\begin{highlights}
|
\begin{highlights}
|
||||||
\item GPA: 4.73/4.0 (\href{https://resume.keshavanand.net/misc/transcript}{View Unnoficial Transcript})
|
\item GPA: 4.73/4.0 (\href{https://resume.keshavanand.net/docs/transcript}{View Unnoficial Transcript})
|
||||||
\item Class Rank: \textbf{1/1273}
|
\item Class Rank: \textbf{1/1273}
|
||||||
\item \textbf{Current Coursework:} AP Chemistry, American Studies (AP US History + AP English Language), Digital Electronics, AP Physics I, Calculus III (via Collin College)
|
\item \textbf{Current Coursework:} AP Chemistry, American Studies (AP US History + AP English Language), Digital Electronics, AP Physics I, Calculus III (via Collin College)
|
||||||
\item SAT: 1550/1600 — Reading 760/800, Maths 790/800
|
\item SAT: 1550/1600 — Reading 760/800, Maths 790/800
|
||||||
@@ -364,11 +364,18 @@
|
|||||||
\vspace{0.2 cm}
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
|
||||||
\begin{onecolentry}
|
|
||||||
\textbf{Indian Film Music:} Bass Guitar, Keyboard, and Arrangement. Live concerts with profits going to charity
|
|
||||||
\end{onecolentry}
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{\href{https://music.keshavanand.net/}{Original Music Library}}}
|
||||||
|
\textbf{Indian Film Music:} Bass, Keys, and Arrangement, member of High Octavez
|
||||||
|
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
\section{Skills}
|
\section{Skills}
|
||||||
|
|||||||
BIN
templates/brag-sheet-template/main.pdf
Normal file
BIN
templates/brag-sheet-template/main.pdf
Normal file
Binary file not shown.
406
templates/brag-sheet-template/main.tex
Normal file
406
templates/brag-sheet-template/main.tex
Normal file
@@ -0,0 +1,406 @@
|
|||||||
|
\documentclass[10pt, letterpaper]{article}
|
||||||
|
|
||||||
|
% Packages:
|
||||||
|
\usepackage[
|
||||||
|
ignoreheadfoot, % set margins without considering header and footer
|
||||||
|
top=2 cm, % seperation between body and page edge from the top
|
||||||
|
bottom=2 cm, % seperation between body and page edge from the bottom
|
||||||
|
left=2 cm, % seperation between body and page edge from the left
|
||||||
|
right=2 cm, % seperation between body and page edge from the right
|
||||||
|
footskip=1.0 cm, % seperation between body and footer
|
||||||
|
% showframe % for debugging
|
||||||
|
]{geometry} % for adjusting page geometry
|
||||||
|
\usepackage{titlesec} % for customizing section titles
|
||||||
|
\usepackage{tabularx} % for making tables with fixed width columns
|
||||||
|
\usepackage{array} % tabularx requires this
|
||||||
|
\usepackage[dvipsnames]{xcolor} % for coloring text
|
||||||
|
\definecolor{primaryColor}{RGB}{0, 79, 144} % define primary color
|
||||||
|
\usepackage{enumitem} % for customizing lists
|
||||||
|
\usepackage{fontawesome5} % for using icons
|
||||||
|
\usepackage{amsmath} % for math
|
||||||
|
\usepackage[
|
||||||
|
pdftitle={Keshav Anand's Brag Sheet},
|
||||||
|
pdfauthor={Keshav Anand},
|
||||||
|
pdfcreator={LaTeX with RenderCV},
|
||||||
|
colorlinks=true,
|
||||||
|
urlcolor=primaryColor
|
||||||
|
]{hyperref} % for links, metadata and bookmarks
|
||||||
|
\usepackage[pscoord]{eso-pic} % for floating text on the page
|
||||||
|
\usepackage{calc} % for calculating lengths
|
||||||
|
\usepackage{bookmark} % for bookmarks
|
||||||
|
\usepackage{lastpage} % for getting the total number of pages
|
||||||
|
\usepackage{changepage} % for one column entries (adjustwidth environment)
|
||||||
|
\usepackage{paracol} % for two and three column entries
|
||||||
|
\usepackage{ifthen} % for conditional statements
|
||||||
|
\usepackage{needspace} % for avoiding page brake right after the section title
|
||||||
|
\usepackage{iftex} % check if engine is pdflatex, xetex or luatex
|
||||||
|
|
||||||
|
% Ensure that generate pdf is machine readable/ATS parsable:
|
||||||
|
\ifPDFTeX
|
||||||
|
\input{glyphtounicode}
|
||||||
|
\pdfgentounicode=1
|
||||||
|
% \usepackage[T1]{fontenc} % this breaks sb2nov
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage{lmodern}
|
||||||
|
\fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
% Some settings:
|
||||||
|
\AtBeginEnvironment{adjustwidth}{\partopsep0pt} % remove space before adjustwidth environment
|
||||||
|
\pagestyle{empty} % no header or footer
|
||||||
|
\setcounter{secnumdepth}{0} % no section numbering
|
||||||
|
\setlength{\parindent}{0pt} % no indentation
|
||||||
|
\setlength{\topskip}{0pt} % no top skip
|
||||||
|
\setlength{\columnsep}{0cm} % set column seperation
|
||||||
|
\makeatletter
|
||||||
|
\let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle
|
||||||
|
\patchcmd{\ps@customFooterStyle}{\thepage}{
|
||||||
|
\color{gray}\textit{\small Keshav Anand - Page \thepage{} of \pageref*{LastPage}}
|
||||||
|
}{}{} % replace number by desired string
|
||||||
|
\makeatother
|
||||||
|
\pagestyle{customFooterStyle}
|
||||||
|
|
||||||
|
\titleformat{\section}{\needspace{4\baselineskip}\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule]
|
||||||
|
|
||||||
|
\titlespacing{\section}{
|
||||||
|
% left space:
|
||||||
|
-1pt
|
||||||
|
}{
|
||||||
|
% top space:
|
||||||
|
0.3 cm
|
||||||
|
}{
|
||||||
|
% bottom space:
|
||||||
|
0.2 cm
|
||||||
|
} % section title spacing
|
||||||
|
|
||||||
|
\renewcommand\labelitemi{$\circ$} % custom bullet points
|
||||||
|
\newenvironment{highlights}{
|
||||||
|
\begin{itemize}[
|
||||||
|
topsep=0.10 cm,
|
||||||
|
parsep=0.10 cm,
|
||||||
|
partopsep=0pt,
|
||||||
|
itemsep=0pt,
|
||||||
|
leftmargin=0.4 cm + 10pt
|
||||||
|
]
|
||||||
|
}{
|
||||||
|
\end{itemize}
|
||||||
|
} % new environment for highlights
|
||||||
|
|
||||||
|
\newenvironment{highlightsforbulletentries}{
|
||||||
|
\begin{itemize}[
|
||||||
|
topsep=0.10 cm,
|
||||||
|
parsep=0.10 cm,
|
||||||
|
partopsep=0pt,
|
||||||
|
itemsep=0pt,
|
||||||
|
leftmargin=10pt
|
||||||
|
]
|
||||||
|
}{
|
||||||
|
\end{itemize}
|
||||||
|
} % new environment for highlights for bullet entries
|
||||||
|
|
||||||
|
|
||||||
|
\newenvironment{onecolentry}{
|
||||||
|
\begin{adjustwidth}{
|
||||||
|
0.2 cm + 0.00001 cm
|
||||||
|
}{
|
||||||
|
0.2 cm + 0.00001 cm
|
||||||
|
}
|
||||||
|
}{
|
||||||
|
\end{adjustwidth}
|
||||||
|
} % new environment for one column entries
|
||||||
|
|
||||||
|
\newenvironment{twocolentry}[2][]{
|
||||||
|
\onecolentry
|
||||||
|
\def\secondColumn{#2}
|
||||||
|
\setcolumnwidth{\fill, 4.5 cm}
|
||||||
|
\begin{paracol}{2}
|
||||||
|
}{
|
||||||
|
\switchcolumn \raggedleft \secondColumn
|
||||||
|
\end{paracol}
|
||||||
|
\endonecolentry
|
||||||
|
} % new environment for two column entries
|
||||||
|
|
||||||
|
\newenvironment{header}{
|
||||||
|
\setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5}
|
||||||
|
}{
|
||||||
|
\par\kern\topsep
|
||||||
|
} % new environment for the header
|
||||||
|
|
||||||
|
\newcommand{\placelastupdatedtext}{% \placetextbox{<horizontal pos>}{<vertical pos>}{<stuff>}
|
||||||
|
\AddToShipoutPictureFG*{% Add <stuff> to current page foreground
|
||||||
|
\put(
|
||||||
|
\LenToUnit{\paperwidth-2 cm-0.2 cm+0.05cm},
|
||||||
|
\LenToUnit{\paperheight-1.0 cm}
|
||||||
|
){\vtop{{\null}\makebox[0pt][c]{
|
||||||
|
\small\color{gray}\textit{Last updated in November 2025}\hspace{\widthof{Last updated in November 2025}}
|
||||||
|
}}}%
|
||||||
|
}%
|
||||||
|
}%
|
||||||
|
|
||||||
|
% save the original href command in a new command:
|
||||||
|
\let\hrefWithoutArrow\href
|
||||||
|
|
||||||
|
% new command for external links:
|
||||||
|
\renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\newcommand{\AND}{\unskip
|
||||||
|
\cleaders\copy\ANDbox\hskip\wd\ANDbox
|
||||||
|
\ignorespaces
|
||||||
|
}
|
||||||
|
\newsavebox\ANDbox
|
||||||
|
\sbox\ANDbox{}
|
||||||
|
|
||||||
|
\placelastupdatedtext
|
||||||
|
\begin{header}
|
||||||
|
\textbf{\fontsize{24 pt}{24 pt}\selectfont Keshav Anand — Brag Sheet}
|
||||||
|
|
||||||
|
% \vspace{0.3 cm}
|
||||||
|
|
||||||
|
% \normalsize
|
||||||
|
% \mbox{{\color{black}\footnotesize\faMapMarker*}\hspace*{0.13cm}Your Location}%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \AND%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \mbox{\hrefWithoutArrow{mailto:youremail@yourdomain.com}{\color{black}{\footnotesize\faEnvelope[regular]}\hspace*{0.13cm}youremail@yourdomain.com}}%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \AND%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \mbox{\hrefWithoutArrow{tel:+90-541-999-99-99}{\color{black}{\footnotesize\faPhone*}\hspace*{0.13cm}0541 999 99 99}}%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \AND%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \mbox{\hrefWithoutArrow{https://yourwebsite.com/}{\color{black}{\footnotesize\faLink}\hspace*{0.13cm}yourwebsite.com}}%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \AND%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \mbox{\hrefWithoutArrow{https://linkedin.com/in/yourusername}{\color{black}{\footnotesize\faLinkedinIn}\hspace*{0.13cm}yourusername}}%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \AND%
|
||||||
|
% \kern 0.25 cm%
|
||||||
|
% \mbox{\hrefWithoutArrow{https://github.com/yourusername}{\color{black}{\footnotesize\faGithub}\hspace*{0.13cm}yourusername}}%
|
||||||
|
|
||||||
|
\end{header}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Program Information}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
Application for Research and Science Institute (RSI), and ultra-selective (3\%) program at MiT for science research
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
Admission into this program results in auto-admission into \textbf{practically any US College} (due to selectivity)
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
I am applying for RSI so I can promote my \textbf{computer science and engineering} research that I have done
|
||||||
|
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.15 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item \href{https://math.mit.edu/research/highschool/rsi/}{RSI Program Page} — top program in the US for high school research
|
||||||
|
\item I am applying in computer science and robotics as research disciplines
|
||||||
|
\item My acceptance is dependent on my prior research, accolades, and the strength of my recommendations
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Character Traits and Personality}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlightsforbulletentries}
|
||||||
|
|
||||||
|
|
||||||
|
\item \textbf{Honest} and high \textbf{integrity}: helped catch cheaters in school multiple times.
|
||||||
|
\item \textbf{Inquisitive and Curious}: always asking questions and trying to learn more
|
||||||
|
\item \textbf{Hardworking and Determined}: Pushing myself to perfection in everything I do
|
||||||
|
\item \textbf{Creative Problem Solver}: Able to think outside the box and come up with innovative solutions
|
||||||
|
\item \textbf{Character Weaknesses:}
|
||||||
|
\subitem Can tend to overthink problems and overcomplicated solutions
|
||||||
|
\subitem Sometimes take on too much at once and struggle to prioritize tasks
|
||||||
|
\subitem Sometimes struggle with delegation and asking for help when needed
|
||||||
|
\subitem Can be overly critical of myself and others at times
|
||||||
|
\end{highlightsforbulletentries}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\section{Education}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{August 2023 – May 2027}}
|
||||||
|
\textbf{Plano East Senior High School, Plano}
|
||||||
|
|
||||||
|
\textit{STEM and Multidisciplinary Endorsement}
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item GPA: 4.73/4.0 (\href{https://resume.keshavanand.net/docs/transcript}{View Unnoficial Transcript})
|
||||||
|
\item Class Rank: \textbf{1/1273}
|
||||||
|
\item \textbf{Current Coursework:} AP Chemistry, American Studies (AP US History + AP English Language), Digital Electronics, AP Physics I, Calculus III (via Collin College)
|
||||||
|
\item SAT: 1550/1600 — Reading 760/800, Maths 790/800
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\section{GaitGuardian: Highlight Research Project}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
\textit{\href{https://isef.net/project/robo011t-ml-imu-processing-and-visual-monitoring-for-pd}{Project Portfolio}}}
|
||||||
|
\textbf{Lead Researcher}
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item Built \textbf{GaitGuardian}, an end-to-end ML system aiding advanced Parkinson’s Disease patients.
|
||||||
|
\item Designed a \textbf{custom PCB} and embedded stack with a 6-DoF IMU and ESP32-S3 for real-time sensing.
|
||||||
|
\item Developed a \textbf{dual-attention CNN + biLSTM} model predicting Freezing-of-Gait up to 2s early.
|
||||||
|
\item Created real-time algorithms for \textbf{fall detection} and \textbf{tremor classification} using IMU signals.
|
||||||
|
\item Implemented a cloud-based \textbf{visual navigation module} with transformer object detection, depth estimation, and multimodal LLM scene descriptions.
|
||||||
|
\item Optimized sensor pipelines via \textbf{signal filtering, feature engineering, oversampling}, and model tuning.
|
||||||
|
\item Built two wearable devices (trunk and wrist) plus a BLE-connected \textbf{forehead camera} for vision tasks.
|
||||||
|
\item Demonstrated performance exceeding existing FoG, fall, and tremor detection systems.
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.1cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
Won 3rd Place at \textbf{The International Science and Engineering Fair}, 2nd OVERALL in Dallas $\to$ over \$1500 won
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Simply Stir: Highlight Research Project}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
\textit{\href{https://isef.net/project/etsd012-self-stirring-pot-using-the-seebeck-effect}{Project Portfolio}}}
|
||||||
|
\textbf{Sole Researcher}
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item Developed a thermoelectric energy-harvesting system using a TEG for autonomous stirring.
|
||||||
|
\item Designed a compact aluminum enclosure enabling efficient heat transfer and stable thermal gradients.
|
||||||
|
\item Implemented electrical conditioning and load-matching to maximize TEG power extraction.
|
||||||
|
\item Tested power delivery across various $R_Loads$ using Vernier Probes
|
||||||
|
\item Performed thermal, electrical, and mechanical characterization across multiple cooking conditions.
|
||||||
|
\item Conducted viscosity-based stirring tests and identified mechanical design improvements for high-torque fluids.
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
\vspace{0.1cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
Qualified to \textbf{The International Science and Engineering Fair}, 1st in Engineering @ Dallas
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
\section{FTC Robotics}
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
\textit{\href{https://technicalturbulence.org}{Website}, \href{https://github.com/KeshavAnandCode/2024_Main.git}{Code Repo}}}
|
||||||
|
\textbf{Lead Software Developer – Technical Turbulence} (2023–Present)
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item Designed and implemented \textbf{custom inverse kinematics and path-planning algorithms} for precise autonomous navigation.
|
||||||
|
\item Integrated \textbf{computer vision pipelines} for object classification using TensorFlow Lite
|
||||||
|
\item Developed novel driver control enhancements to improve driver performance
|
||||||
|
\item Optimized accuracy and real-time performance through efficient sensor usage
|
||||||
|
\item Lead software \textbf{Top 30 Worldwide} for autonomous programming; reached FTC State Finals.
|
||||||
|
\item Led software development, version control, and testing for a programming team of 4 members.
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\section{Skills}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Programming Languages:} Java, Python, Bash, C++ (Arduino), Kotlin (FTC), Limited HTML, JS, CSS
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Programming Applications:} Machine Learning, Signal Processing, Tensor Flow, Computer Vision
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Miscellaneous:} Public Speaking, CAD, PCB Design, Electrical, Competition Math
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\section{Other Activities}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Vice President, LASER:} Guiding and instructing 120+ students for Science Fair
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Founder, Cricket Club:} Former USA U15 Cricketer $\to$ Formed Plano East's first cricket team
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Technology Officer, NHS:} Coded and maintained React-based portal for largest NHS chapter in the US
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{\href{https://music.keshavanand.net/}{Original Music Library}}}
|
||||||
|
\textbf{Indian Film Music:} Bass, Keys, and Arrangement, member of High Octavez
|
||||||
|
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\end{document}
|
||||||
BIN
templates/resume-template/main.pdf
Normal file
BIN
templates/resume-template/main.pdf
Normal file
Binary file not shown.
407
templates/resume-template/main.tex
Normal file
407
templates/resume-template/main.tex
Normal file
@@ -0,0 +1,407 @@
|
|||||||
|
\documentclass[10pt, letterpaper]{article}
|
||||||
|
|
||||||
|
% Packages:
|
||||||
|
\usepackage[
|
||||||
|
ignoreheadfoot, % set margins without considering header and footer
|
||||||
|
top=2 cm, % seperation between body and page edge from the top
|
||||||
|
bottom=1 cm, % seperation between body and page edge from the bottom
|
||||||
|
left=2 cm, % seperation between body and page edge from the left
|
||||||
|
right=2 cm, % seperation between body and page edge from the right
|
||||||
|
footskip=0 cm, % seperation between body and footer
|
||||||
|
% showframe % for debugging
|
||||||
|
]{geometry} % for adjusting page geometry
|
||||||
|
\usepackage{titlesec} % for customizing section titles
|
||||||
|
\usepackage{tabularx} % for making tables with fixed width columns
|
||||||
|
\usepackage{array} % tabularx requires this
|
||||||
|
\usepackage[dvipsnames]{xcolor} % for coloring text
|
||||||
|
\definecolor{primaryColor}{RGB}{0, 79, 144} % define primary color
|
||||||
|
\usepackage{enumitem} % for customizing lists
|
||||||
|
\usepackage{fontawesome5} % for using icons
|
||||||
|
\usepackage{amsmath} % for math
|
||||||
|
\usepackage[
|
||||||
|
pdftitle={Keshav Anand's Resume},
|
||||||
|
pdfauthor={Keshav Anand},
|
||||||
|
pdfcreator={LaTeX with RenderCV},
|
||||||
|
colorlinks=true,
|
||||||
|
urlcolor=primaryColor
|
||||||
|
]{hyperref} % for links, metadata and bookmarks
|
||||||
|
\usepackage[pscoord]{eso-pic} % for floating text on the page
|
||||||
|
\usepackage{calc} % for calculating lengths
|
||||||
|
\usepackage{bookmark} % for bookmarks
|
||||||
|
\usepackage{lastpage} % for getting the total number of pages
|
||||||
|
\usepackage{changepage} % for one column entries (adjustwidth environment)
|
||||||
|
\usepackage{paracol} % for two and three column entries
|
||||||
|
\usepackage{ifthen} % for conditional statements
|
||||||
|
\usepackage{needspace} % for avoiding page brake right after the section title
|
||||||
|
\usepackage{iftex} % check if engine is pdflatex, xetex or luatex
|
||||||
|
|
||||||
|
% Ensure that generate pdf is machine readable/ATS parsable:
|
||||||
|
\ifPDFTeX
|
||||||
|
\input{glyphtounicode}
|
||||||
|
\pdfgentounicode=1
|
||||||
|
% \usepackage[T1]{fontenc} % this breaks sb2nov
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage{lmodern}
|
||||||
|
\fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
% Some settings:
|
||||||
|
\AtBeginEnvironment{adjustwidth}{\partopsep0pt} % remove space before adjustwidth environment
|
||||||
|
\pagestyle{empty} % no header or footer
|
||||||
|
\setcounter{secnumdepth}{0} % no section numbering
|
||||||
|
\setlength{\parindent}{0pt} % no indentation
|
||||||
|
\setlength{\topskip}{0pt} % no top skip
|
||||||
|
\setlength{\columnsep}{0cm} % set column seperation
|
||||||
|
\makeatletter
|
||||||
|
\let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle
|
||||||
|
\patchcmd{\ps@customFooterStyle}{\thepage}{
|
||||||
|
\color{gray}\textit{\small Keshav Anand - Page \thepage{} of \pageref*{LastPage}}
|
||||||
|
}{}{} % replace number by desired string
|
||||||
|
\makeatother
|
||||||
|
\pagestyle{customFooterStyle}
|
||||||
|
|
||||||
|
\titleformat{\section}{\needspace{4\baselineskip}\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule]
|
||||||
|
|
||||||
|
\titlespacing{\section}{
|
||||||
|
% left space:
|
||||||
|
-1pt
|
||||||
|
}{
|
||||||
|
% top space:
|
||||||
|
0.3 cm
|
||||||
|
}{
|
||||||
|
% bottom space:
|
||||||
|
0.2 cm
|
||||||
|
} % section title spacing
|
||||||
|
|
||||||
|
\renewcommand\labelitemi{$\circ$} % custom bullet points
|
||||||
|
\newenvironment{highlights}{
|
||||||
|
\begin{itemize}[
|
||||||
|
topsep=0.10 cm,
|
||||||
|
parsep=0.10 cm,
|
||||||
|
partopsep=0pt,
|
||||||
|
itemsep=0pt,
|
||||||
|
leftmargin=0.4 cm + 10pt
|
||||||
|
]
|
||||||
|
}{
|
||||||
|
\end{itemize}
|
||||||
|
} % new environment for highlights
|
||||||
|
|
||||||
|
\newenvironment{highlightsforbulletentries}{
|
||||||
|
\begin{itemize}[
|
||||||
|
topsep=0.10 cm,
|
||||||
|
parsep=0.10 cm,
|
||||||
|
partopsep=0pt,
|
||||||
|
itemsep=0pt,
|
||||||
|
leftmargin=10pt
|
||||||
|
]
|
||||||
|
}{
|
||||||
|
\end{itemize}
|
||||||
|
} % new environment for highlights for bullet entries
|
||||||
|
|
||||||
|
|
||||||
|
\newenvironment{onecolentry}{
|
||||||
|
\begin{adjustwidth}{
|
||||||
|
0.2 cm + 0.00001 cm
|
||||||
|
}{
|
||||||
|
0.2 cm + 0.00001 cm
|
||||||
|
}
|
||||||
|
}{
|
||||||
|
\end{adjustwidth}
|
||||||
|
} % new environment for one column entries
|
||||||
|
|
||||||
|
\newenvironment{twocolentry}[2][]{
|
||||||
|
\onecolentry
|
||||||
|
\def\secondColumn{#2}
|
||||||
|
\setcolumnwidth{\fill, 4.5 cm}
|
||||||
|
\begin{paracol}{2}
|
||||||
|
}{
|
||||||
|
\switchcolumn \raggedleft \secondColumn
|
||||||
|
\end{paracol}
|
||||||
|
\endonecolentry
|
||||||
|
} % new environment for two column entries
|
||||||
|
|
||||||
|
\newenvironment{header}{
|
||||||
|
\setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5}
|
||||||
|
}{
|
||||||
|
\par\kern\topsep
|
||||||
|
} % new environment for the header
|
||||||
|
|
||||||
|
\newcommand{\placelastupdatedtext}{% \placetextbox{<horizontal pos>}{<vertical pos>}{<stuff>}
|
||||||
|
\AddToShipoutPictureFG*{% Add <stuff> to current page foreground
|
||||||
|
\put(
|
||||||
|
\LenToUnit{\paperwidth-2 cm-0.2 cm+0.05cm},
|
||||||
|
\LenToUnit{\paperheight-1.0 cm}
|
||||||
|
){\vtop{{\null}\makebox[0pt][c]{
|
||||||
|
\small\color{gray}\textit{Updated November 2025}\hspace{\widthof{Updated November 2025}}
|
||||||
|
}}}%
|
||||||
|
}%
|
||||||
|
}%
|
||||||
|
|
||||||
|
% save the original href command in a new command:
|
||||||
|
\let\hrefWithoutArrow\href
|
||||||
|
|
||||||
|
% new command for external links:
|
||||||
|
\renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\newcommand{\AND}{\unskip
|
||||||
|
\cleaders\copy\ANDbox\hskip\wd\ANDbox
|
||||||
|
\ignorespaces
|
||||||
|
}
|
||||||
|
\newsavebox\ANDbox
|
||||||
|
\sbox\ANDbox{}
|
||||||
|
|
||||||
|
\placelastupdatedtext
|
||||||
|
\begin{header}
|
||||||
|
\textbf{\fontsize{24 pt}{24 pt}\selectfont Keshav Anand}
|
||||||
|
|
||||||
|
\vspace{0.3 cm}
|
||||||
|
|
||||||
|
\normalsize
|
||||||
|
\mbox{{\color{black}\footnotesize\faMapMarker*}\hspace*{0.13cm}DFW Metroplex, Texas}%
|
||||||
|
\kern 0.25 cm%
|
||||||
|
\AND%
|
||||||
|
\kern 0.25 cm%
|
||||||
|
\mbox{\hrefWithoutArrow{mailto:keshavanandofficial@gmail.com}{\color{black}{\footnotesize\faEnvelope[regular]}\hspace*{0.13cm}keshavanandofficial@gmail.com}}%
|
||||||
|
\kern 0.25 cm%
|
||||||
|
\AND%
|
||||||
|
\kern 0.25 cm%
|
||||||
|
\mbox{\hrefWithoutArrow{tel:+1-972-520-4390}{\color{black}{\footnotesize\faPhone*}\hspace*{0.13cm}(972) 520-4390}}%
|
||||||
|
\kern 0.25 cm%
|
||||||
|
%TODO: Fix website link
|
||||||
|
%\AND%
|
||||||
|
%\kern 0.25 cm%
|
||||||
|
%\mbox{\hrefWithoutArrow{https://yourwebsite.com/}{\color{black}{\footnotesize\faLink}\hspace*{0.13cm}yourwebsite.com}}%
|
||||||
|
%\kern 0.25 cm%
|
||||||
|
\AND%
|
||||||
|
\kern 0.25 cm%
|
||||||
|
\mbox{\hrefWithoutArrow{https://linkedin.com/in/keshavganand}{\color{black}{\footnotesize\faLinkedinIn}\hspace*{0.13cm}keshavganand}}%
|
||||||
|
\kern 0.25 cm%
|
||||||
|
\AND%
|
||||||
|
\kern 0.25 cm%
|
||||||
|
\mbox{\hrefWithoutArrow{https://github.com/keshavanandcode}{\color{black}{\footnotesize\faGithub}\hspace*{0.13cm}keshavanandcode}}%
|
||||||
|
\end{header}
|
||||||
|
|
||||||
|
\vspace{0.3 cm - 0.3 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\section{Education}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{August 2023 – May 2027}}
|
||||||
|
\textbf{Plano East Senior High School, Plano}
|
||||||
|
|
||||||
|
\textit{STEM and Multidisciplinary Endorsement}
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item GPA: 4.73/4.0 (\href{https://resume.keshavanand.net/docs/transcript}{View Unnoficial Transcript})
|
||||||
|
\item Class Rank: \textbf{1/1273}
|
||||||
|
\item \textbf{Current Coursework:} AP Chemistry, American Studies (AP US History + AP English Language), Digital Electronics, AP Physics I, Calculus III (via Collin College)
|
||||||
|
\item SAT: 1550/1600 — Reading 760/800, Maths 790/800
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\section{Key Projects and Work}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{\href{https://isef.net/project/etsd012-self-stirring-pot-using-the-seebeck-effect}{Project Portfolio}}}
|
||||||
|
\textbf{TEG Powered Self-Stirring Device} (2023-2024)
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item Built novel prototype to harvest thermal energy for automatic stirring while cooking
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{\href{https://isef.net/project/robo011t-ml-imu-processing-and-visual-monitoring-for-pd}{Project Portfolio}}}
|
||||||
|
\textbf{GaitGuardian: IMU Processing for Parkinson's Disease} (2024-Present)
|
||||||
|
\end{twocolentry}
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item Constructed novel hybrid biLSTM + CNN architecture for Freezing of Gait prediction
|
||||||
|
\item Signal processing and segmentation to reduce subject-dependence
|
||||||
|
\item State-of-the-art metric performance while being end-to-end functional
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{\href{https://github.com/KeshavAnandCode/2024_Main.git}{2024-25 Github Repo}}}
|
||||||
|
\textbf{FTC Technical Turbulence Lead Software Developer} (2023-Present)
|
||||||
|
\end{twocolentry}
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item Custom inverse kinematics pathing and Computer Vision for Autonomous Navigation
|
||||||
|
\item World top-30 FTC team for autonomous software, FTC State Finalist
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\section{Awards and Honors}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{2024}}
|
||||||
|
\textbf{Thermoelectric Generator Research Project}
|
||||||
|
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item Dallas Fair: 1st in Engineering, US Air Force Recognition, USMA Best SI Units
|
||||||
|
\item \textbf{International Science and Engineering Fair (ISEF) Finalist}
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.20 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{2025}}
|
||||||
|
\textbf{GaitGuardian: ML and Signal Processing for PD Research}
|
||||||
|
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.10 cm}
|
||||||
|
\begin{onecolentry}
|
||||||
|
\begin{highlights}
|
||||||
|
\item Dallas Fair: 1st in Systems Software, \textbf{Grand Prize} Runner-Up, TI Best Computing Project 2nd
|
||||||
|
\item ISEF Finalist, \textbf{ISEF 3rd in Robotics and Intelligent Systems} (\$1200)
|
||||||
|
\end{highlights}
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\vspace{0.20 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{2024}}
|
||||||
|
\textbf{FTC Technical Turbulence}, State Division Finalist, Innovate Award Winner
|
||||||
|
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\vspace{0.20 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{2025}}
|
||||||
|
\textbf{National Speech \& Debate Impromptu Quarterfinalist}, State Quarterfinalist
|
||||||
|
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.20 cm}
|
||||||
|
|
||||||
|
|
||||||
|
\section{Other Activities}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Vice President, LASER:} Guiding and instructing 120+ students for Science Fair
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Founder, Cricket Club:} Former USA U15 Cricketer $\to$ Formed Plano East's first cricket team
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Technology Officer, NHS:} Coded and maintained React-based portal for largest NHS chapter in the US
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{twocolentry}{
|
||||||
|
|
||||||
|
|
||||||
|
\textit{\href{https://music.keshavanand.net/}{Original Music Library}}}
|
||||||
|
\textbf{Indian Film Music:} Bass, Keys, and Arrangement, member of High Octavez
|
||||||
|
|
||||||
|
\end{twocolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\section{Skills}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Programming Languages:} Java, Python, Bash, C++ (Arduino), Kotlin (FTC), Limited HTML, JS, CSS
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Programming Applications:} Machine Learning, Signal Processing, Tensor Flow, Computer Vision
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
\vspace{0.2 cm}
|
||||||
|
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{Miscellaneous:} Public Speaking, CAD, PCB Design, Electrical, Competition Math
|
||||||
|
\end{onecolentry}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
\end{document}
|
||||||
Reference in New Issue
Block a user