summaryrefslogtreecommitdiff
path: root/resume.tex
blob: b0195608562b5cd305968b9ee15922aa33f9cc45 (plain)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
\documentclass[11pt]{article}

% margins
\usepackage[margin=0.5in]{geometry}

% file font
\usepackage{palatino}
%\usepackage{inconsolata}

% section naming
\usepackage{titlesec}
\usepackage{titling}

% icons
\usepackage[fixed]{fontawesome5}
\usepackage{blindtext}

% hyperref and link colors
\usepackage{xcolor}
\usepackage{hyperref}

\titleformat{\section}
{\Large \bfseries}
{}
{0.5em}
{}[\titlerule]

\titleformat{\subsection}[runin]
{\bfseries}
{}
{0em}
{$\bullet$ }

\titlespacing{\subsection}
{0em}{0.5em}{1em}

\titlespacing{\section}
{0em}{1em}{1em}

\title{R\'esum\'e}
\author{Brahmajit Das}
\date{}

% changing `maketitle` command
\renewcommand{\maketitle}{
	\begin{center}
		{
			\huge \bfseries
			\theauthor
		}

		\vspace{0.25em}

		\faEnvelope \href{mailto:brahmajit.xyz@gmail.com}{brahmajit.xyz@gmail.com}
		---
		\faGitlab \href{https://gitlab.com/listout}{listout}
		---
		\faGithub \href{https://github.com/listout/}{listout}
		---
		\faLinkedin
		\href{https://www.linkedin.com/in/brahmajit-xyz}{brahmajit}
	\end{center}
}

% no page numbering
\pagestyle{empty}

\begin{document}

	% spacing between words
	\newdimen\origiwspc%
	\newdimen\origiwstr%
	\origiwspc=\fontdimen2\font % original inter word space
	\origiwstr=\fontdimen3\font % original inter word stretch
	\fontdimen2\font=0.5em      %0.5em spacing between spaces

	\maketitle

	\section{Education}

	\subsection{Gurudas College}
	\hfill
	Kolkata, India
	\newline
	\textit{B.Sc. with Honors -- Computer Science; last SGPA: 9.01}
	\hfill
	\textit{2018 -- 2021 \textit{Exp.} }
	\newline
	\textit{
		\small
		\textbf{Courses:} Operating Systems, Data Structures, Algorithms
		Design and Analysis, Databases, Networking, Machine Learning
	}

	\section{Skills Summary}

	\setlength{\tabcolsep}{1.5em}
	\renewcommand{\arraystretch}{1.3}
	%\vspace{-1em}
	\begin{table}[h!]
		\begin{tabular}{@{}ll}
			\textbf{Programming Languages}: & C, C++, Python, JAVA, Bash, SQL,
			PHP\\
			\textbf{Tools}: & Git, Docker, MySQL, SSH, PlatformIO, \LaTeX,
			FreeRTOS \\
			\textbf{Frameworks}: & OpenCV, Tensorflow, Keras, NumPy\\
			\textbf{Platforms}: & Linux, BSDs, Windows, Arduino, STM32 Cube,
			Google Colaboratory\\
			\textbf{Micro Processors}: & Atmega328p, ARM STM32 (Cortex M3)
		\end{tabular}
	\end{table}

	%\vspace{-1em}
	\section{Personal Projects}

	\subsection{Interfacing with sonar module using Atmega328p:}
	Using \textit{AVR C} and \textbf{Atmega328p} to interface with
	\textbf{HC-SR04} (sonar module).
	\textbf{UART} was used as the communication protocol.
	\href{https://gitlab.com/listout/avr_programming/-/tree/sonar_module} {Link
	to project}.

	\subsection{FreeRTOS on ARM STM32F103:}
	Ported the FreeRTOS to ARM STM32F103C8T6 (Cortex M3), known as
	\textbf{Bluepill}. Then used to generate a PWM with Timer 2 as test case.
	\href{https://gitlab.com/listout/arm_programming/-/tree/pwm}{Link to
	project}

	\subsection{My Compiler Writing Journey:}
	Writing a C compiler from scratch, using the \textbf{acwj} as the base
	starting point.
	\href{https://gitlab.com/listout/mcwj.git}{Link to project}.

	\subsection{Brain Tumor Detection:}
	Using image classification algorithms (\textbf{CNN}, \textbf{VGG 16} and
	\textbf{ResNet 50}) to predict the presence of tumorous cells. Achieved up
	to \textbf{98\%} accuracy.
	\href{https://raw.githubusercontent.com/listout/project_paper/paper/paper.pdf}
	{ \textit{(Project paper)}  }

	\subsection{Python Path Visualizer:}
	A \textit{path visualizer} program written in \textbf{Pygame}.
	User can set start-end point and obstacle.
	\textbf{BFS} and \textbf{DFS} was used as the algorithms of choice.
	\href{https://github.com/listout/python_pathvisualizer.git}{Link to
	project}.

	\section{Open Source Contributions}

	\subsection{Gitlab Shell}
	Changed the default logging format to \textbf{JSON} from plain text, was part of the
	\textbf{14.1 release}.
	GitLab Shell handles git \textbf{SSH sessions for GitLab} and modifies the list of
	authorized keys.
	\href{https://gitlab.com/gitlab-org/gitlab-shell/-/merge_requests/476}{Merge
	Request 467}.

	\subsection{Gitlab Runner}
	Updated test case names for \texttt{TestBuildJobStatusEnvVars}.
	GitLab Runner is the open source project that is used to run CI/CD jobs and
	send the results back to GitLab.
	\href{https://gitlab.com/gitlab-org/gitlab-runner/-/merge_requests/2907}
	{Merge Request 2907}

	\subsection{DevOps Guide}
	Contributed to \textbf{several chapters} of this popular DevOps guide (\textbf{3.8k
	stars}), including chapters for Virtual Machines, Linux commands and tools
	for DevOps and Firewall.
	\href{https://github.com/Tikam02/DevOps-Guide/pulls?q=is%3Apr+is%3Aclosed+author%3Alistout}{\textit{Link
to all my contributions.}}

	\section{Achievements}

	\subsection{HacktoberFest 2020:}
	Was among 70,000 participants.
	Was awarded goodies and cash prize.

	\subsection{College Seminar:} First position in college seminar.
	Using Arduino and HC SR04 module, created a sonar with GUI feedback.

\end{document}