Skip to content

Instantly share code, notes, and snippets.

@vivekjoshy
Created June 6, 2025 18:14
Show Gist options
  • Save vivekjoshy/ad64855d97c625d8eea443aaa2f5dc73 to your computer and use it in GitHub Desktop.
Save vivekjoshy/ad64855d97c625d8eea443aaa2f5dc73 to your computer and use it in GitHub Desktop.
Vivek Joshy's Resume
\documentclass[11pt]{article}
% Document Setup and Fonts
\usepackage[T1]{fontenc}
\usepackage{inter}
\renewcommand*\familydefault{\sfdefault}
% Page Geometry Settings
\usepackage{geometry}
\geometry{
a4paper,
top=1.8cm,
bottom=1.8cm,
left=2.2cm,
right=2.2cm
}
% Document Configuration
\setcounter{secnumdepth}{0}
\pdfgentounicode=1
% List Formatting Settings
\usepackage{enumitem}
\setlist[itemize]{
noitemsep,
topsep=0.5ex,
leftmargin=1.25em
}
\setlist[description]{
itemsep=0.5ex,
leftmargin=0pt
}
% Color Definitions
\usepackage[dvipsnames]{xcolor}
\definecolor{primary}{RGB}{70, 70, 70}
\definecolor{accent}{RGB}{128, 0, 32}
\definecolor{subheading}{RGB}{90, 90, 90}
% Section Formatting
\usepackage{titlesec}
\titlespacing{\section}{0pt}{*2.5}{*1}
\titlespacing{\subsection}{0pt}{*1}{*0.2}
\titlespacing{\subsubsection}{0pt}{*0.3}{*0.1}
\titleformat{\section}
{\color{accent}\large\fontseries{bold}\selectfont\uppercase}
{}{0em}
{\ruleafter}[\global\RemVStrue]
\titleformat{\subsection}
{\color{primary}\normalsize\fontseries{semibold}\selectfont}
{}{0em}
{\rvs}
\titleformat{\subsubsection}
{\color{subheading}\normalsize\fontseries{medium}\selectfont}
{}{0em}
{}
% Horizontal Rule Settings
\usepackage{xhfill}
\newcommand\ruleafter[1]{#1~\xrfill[.4ex]{1pt}[accent]}
% Vertical Space Control
\newif\ifRemVS
\newcommand{\rvs}{
\ifRemVS
\vspace{-0.8ex}
\fi
\global\RemVSfalse
}
% Icons and Hyperlinks
\usepackage{fontawesome5}
\usepackage[hidelinks]{hyperref}
\hypersetup{
colorlinks=true,
urlcolor=accent,
pdftitle={Vivek Joshy - Resume},
}
% Page Numbering and Headers
\usepackage[page]{totalcount}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\fancyhf{}
\begin{document}
% Header Section
\begin{center}
{\fontsize{28}{32}\selectfont\interthin VIVEK\interheavy JOSHY}\\[0.3cm]
{\color{subheading}
\href{mailto:[email protected]}{\faEnvelope[regular][email protected]} ~\textbullet~
\href{tel:+919207024069}{\faIcon{mobile-alt}~+91-9207024069} ~\textbullet~
\href{https://www.github.com/vivekjoshy}{\faGithub~github.com/vivekjoshy}
}
\end{center}
\section{Professional Experience}
\subsection{Vairified Corp \hspace*{\fill} January 2024 -- Present}
\subsubsection{Data Scientist \hspace*{\fill} Naples, Florida}
\begin{itemize}
\item Built VAIR rating system for competitive player assessment.
\item Created REST APIs and dashboards for real-time analysis.
\end{itemize}
\subsection{Pickleball Players Network \hspace*{\fill} October 2023 -- December 2024}
\subsubsection{Data Scientist \hspace*{\fill} Los Angeles, California}
\begin{itemize}
\item Created matchmaking algorithms and skill assessment models.
\item Built prototype system using Python and PostgreSQL.
\end{itemize}
\subsection{Open Source Development \hspace*{\fill} 2016 -- Present}
\begin{itemize}
\item Built IRC servers and web apps on shared hosting platforms.
\item Created CI/CD pipelines and infrastructure solutions.
\end{itemize}
\section{Technical Projects}
\subsection{BELKA Molecular Interaction Challenge \hspace*{\fill} 2024}
\begin{itemize}
\item Won Kaggle silver medal in BELKA protein-molecule interaction challenge.
\item Implemented domain adversarial training with gradient reversal.
\item Designed a custom molecular data processing architecture.
\end{itemize}
\subsection{SAT/SMT Solver \hspace*{\fill} 2024}
\begin{itemize}
\item Built CDCL-based reinforcement learning system for SAT/SMT problems.
\item Custom rewards created for efficient solution space exploration.
\end{itemize}
\subsection{Prompt Ensemble Framework \hspace*{\fill} 2024}
\begin{itemize}
\item Built an entropy-based framework for token evidence aggregation.
\item Created logarithmic pooling for confidence scoring.
\end{itemize}
\section{Publications}
\subsection{OpenSkill: Multi-team Rating System \hspace*{\fill} 2024}
Journal of Open Source Software (\href{https://doi.org/10.21105/joss.05901}{DOI: 10.21105/joss.05901})
\subsection{The Hitchhiker's Guide to Python \hspace*{\fill} 2017}
Contributed to Common Gotchas chapter (\href{https://docs.python-guide.org/writing/gotchas/}{docs.python-guide.org})
\section{Skills}
\begin{description}
\item[Technologies:] PyTorch, TensorFlow, Pandas/Polars, BioPython, Ray/RLLIB, FastAPI
\item[DevOps \& Data:] Git, Docker, AWS, GCP, PostgreSQL, MongoDB, TypeDB, RDF/SPARQL
\item[Core:] Deep Learning, Reinforcement Learning, Bioinformatics, Mathematical Logic
\end{description}
\section{Education}
\subsection{Mahatma Gandhi University \hspace*{\fill} 2024}
{\normalfont\textit{Bachelor of Science in Bioinformatics}} \hfill Aluva, India
\vspace{1.0em}
\begin{center}
{\color{subheading}\small References available on request}
\end{center}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment