Commit | Line | Data |
---|---|---|
d99d2f71 | 1 | %% cv.tex |
b3847ce3 | 2 | %% Copyright 2016-2019 Amin Bandali <bandali@gnu.org> |
8a25c428 | 3 | % |
d99d2f71 AB |
4 | % This work may be distributed and/or modified under the |
5 | % conditions of the LaTeX Project Public License, either version 1.3 | |
6 | % of this license or (at your option) any later version. | |
7 | % The latest version of this license is in | |
8 | % http://www.latex-project.org/lppl.txt | |
9 | % and version 1.3 or later is part of all distributions of LaTeX | |
10 | % version 2005/12/01 or later. | |
8a25c428 AB |
11 | % |
12 | % Based on Jason R. Blevins's Curriculum Vitae template, | |
13 | % Copyright (C) 2004-2016 Jason R. Blevins <jrblevin@sdf.org> | |
14 | % http://jblevins.org/ | |
8a25c428 AB |
15 | |
16 | \documentclass[12pt,letterpaper]{article} | |
17 | ||
18 | \usepackage{hyperref} | |
19 | \usepackage{geometry} | |
20 | \usepackage{enumitem} | |
e661759d AB |
21 | \usepackage{fancyhdr} |
22 | \usepackage{lastpage} | |
23 | % To enable correct spacing | |
24 | \usepackage{xspace} | |
25 | \pagestyle{fancy} | |
8a25c428 AB |
26 | |
27 | % Fonts | |
28 | \usepackage{graphicx} | |
29 | \usepackage{fontspec} | |
e661759d | 30 | \setmainfont[Scale=0.95,SmallCapsFont={Equity Caps A},RawFeature=+c2sc]{Equity Text A} |
b76edb03 | 31 | \setsansfont[SmallCapsFont={Concourse C4}]{Concourse T4} |
e661759d | 32 | \setmonofont[Scale=0.9]{Triplicate T4c} |
b76edb03 AB |
33 | \newfontfamily{\tallnums}[RawFeature={+ss02}]{Equity Text A} |
34 | \newfontfamily{\largersans}[Scale=1.05,SmallCapsFont={Concourse C4}]{Concourse T4} | |
e661759d | 35 | \newcommand{\amper}{{\fontspec[Scale=.9]{Equity Text A}\selectfont\itshape\&}} |
8a25c428 | 36 | |
beed9796 | 37 | \newcommand{\tla}{TLA${}^+$} |
8a25c428 AB |
38 | |
39 | \def\name{Amin Bandali} | |
40 | ||
41 | % The following metadata will show up in the PDF properties | |
42 | \hypersetup{ | |
43 | colorlinks = true, | |
44 | urlcolor = black, | |
45 | pdfauthor = {\name}, | |
b3847ce3 AB |
46 | pdfkeywords = {Formal Methods, Formal Logic, Model Checking, |
47 | Verification, Type Systems, Proof Systems, Interactive Provers, | |
beed9796 | 48 | Programming Languages, Functional Programming, Haskell, Rust}, |
8a25c428 AB |
49 | pdftitle = {\name: Curriculum Vitae}, |
50 | pdfsubject = {Curriculum Vitae}, | |
51 | pdfpagemode = UseNone | |
52 | } | |
53 | ||
54 | \geometry{ | |
55 | body={6.5in, 9.0in}, | |
56 | left=1.0in, | |
57 | top=1.0in | |
58 | } | |
59 | ||
e661759d AB |
60 | \pagestyle{fancy} |
61 | \fancyhf{}% to clear existing header/footer | |
62 | \renewcommand\headrulewidth{0pt} | |
6da83bf5 AB |
63 | \cfoot{\vspace*{-.25em}\textsc{Bandali CV --- page \thepage \xspace of |
64 | \pageref*{LastPage}}} | |
8a25c428 AB |
65 | |
66 | % Custom section fonts | |
67 | \usepackage{sectsty} | |
68 | \sectionfont{\rmfamily\mdseries\Large} | |
69 | \subsectionfont{\rmfamily\mdseries\itshape\large} | |
70 | ||
71 | % Other possible font commands include: | |
72 | % \ttfamily for teletype, | |
73 | % \sffamily for sans serif, | |
74 | % \bfseries for bold, | |
75 | % \scshape for small caps, | |
76 | % \normalsize, \large, \Large, \LARGE sizes. | |
77 | ||
78 | % Don't indent paragraphs. | |
79 | \setlength\parindent{0em} | |
80 | ||
81 | % Make lists without bullets and compact spacing | |
82 | \renewenvironment{itemize}{ | |
83 | \begin{list}{}{ | |
84 | \setlength{\leftmargin}{1.5em} | |
85 | \setlength{\itemsep}{0.25em} | |
86 | \setlength{\parskip}{0pt} | |
87 | \setlength{\parsep}{0.25em} | |
88 | } | |
89 | }{ | |
90 | \end{list} | |
91 | } | |
92 | \setlist[enumerate]{itemsep=0.25em} | |
93 | ||
94 | \begin{document} | |
95 | ||
b76edb03 | 96 | \vspace*{-3em} |
e661759d | 97 | |
8a25c428 AB |
98 | % Place name at left |
99 | {\huge \name} | |
100 | ||
101 | % Alternatively, print name centered and bold: | |
102 | %\centerline{\huge \bf \name} | |
103 | ||
e661759d | 104 | \medskip |
8a25c428 AB |
105 | |
106 | \begin{minipage}[t]{0.495\textwidth} | |
35b75740 | 107 | site: \href{https://bandali.eu.org}{https://bandali.eu.org} \\ |
beed9796 AB |
108 | email: \href{mailto:abandali@uwaterloo.ca}{abandali@uwaterloo.ca} \\ |
109 | phone: available upon request | |
8a25c428 AB |
110 | \end{minipage} |
111 | ||
e661759d AB |
112 | \vspace*{1em} |
113 | ||
8a25c428 AB |
114 | \section*{Education} |
115 | ||
116 | \begin{itemize} | |
9bbaaec3 | 117 | \setlength\itemsep{.75em} |
beed9796 AB |
118 | |
119 | \item {\large Master of Mathematics (Computer Science)}\, |\, {\small 2018--present} | |
120 | ||
121 | \textit{University of Waterloo}, Canada | |
122 | ||
123 | \begin{itemize} | |
124 | \item Supervised by Dr. Nancy Day | GPA: 3.7/4.0 | Expected | |
125 | completion: December 2019 | |
126 | \item Research focusing on formal logic, model checking, and verification. | |
127 | \end{itemize} | |
128 | ||
129 | \item {\large B.Sc. Honours Computer Science}\, |\, {\small 2013--2017} | |
8a25c428 | 130 | |
9bbaaec3 | 131 | \textit{York University}, Toronto, Canada |
8a25c428 AB |
132 | |
133 | \begin{itemize} | |
beed9796 | 134 | \item GPA: 7.84/9.0 |
c543f989 | 135 | \item Relevant courses: System Specification \amper\ |
2acab84b AB |
136 | Refinement, Software Requirements Eng., Software Design, Operating |
137 | Systems, Computational Complexity, Design \amper\ Analysis of Algorithms. | |
8a25c428 | 138 | \item Finished first year (2013-14) at \textit{Carleton University} with a GPA |
e661759d | 139 | of 11.0/12.0, then transferred to \textit{York University} in Fall 2014. |
8a25c428 | 140 | \end{itemize} |
9bbaaec3 | 141 | |
8a25c428 AB |
142 | \end{itemize} |
143 | ||
beed9796 | 144 | \section*{Publications} |
b76edb03 AB |
145 | |
146 | \begin{itemize} | |
beed9796 AB |
147 | \item {\large \tallnums MoDRE 2018} |
148 | ||
149 | \begin{itemize} | |
150 | \item {\largersans A Comparison of the Declarative Modelling | |
151 | Languages B, Dash, and \tla} | |
b3847ce3 | 152 | \textsf{\footnotesize |
35b75740 AB |
153 | (\href{https://bandali.eu.org/papers/2018-AbBaDaSe-modre.pdf}{pdf}, |
154 | \href{https://bandali.eu.org/papers/2018-AbBaDaSe-modre.bib}{bib})} | |
beed9796 | 155 | |
a3451096 | 156 | Ali Abbassi, Amin Bandali, Nancy A. Day, and Jose Serna\\ |
b3847ce3 AB |
157 | \textit{2018 IEEE 8th International Model-Driven Requirements |
158 | Engineering Workshop (MoDRE)} | |
beed9796 AB |
159 | \end{itemize} |
160 | ||
b76edb03 AB |
161 | \end{itemize} |
162 | ||
df70fc95 | 163 | \section*{Work \amper\ Research Experience} |
8a25c428 AB |
164 | |
165 | \begin{itemize} | |
beed9796 AB |
166 | |
167 | \item {\large Cheriton School of Computer Science, } University of Waterloo\, |\, {\small 2018--present} | |
168 | ||
169 | \textit{Teaching Assistant} | |
170 | ||
171 | \begin{itemize} | |
b3847ce3 | 172 | \item I was a TA for \textsf{\small SE 212}, Logic and |
beed9796 AB |
173 | Computation, taught by Dr. Day in Fall 2018. |
174 | \item I was a TA for \textsf{\small SE 463}, Software Requirements | |
175 | Specification and Analysis, taught by Prof. Atlee. | |
176 | \item I was a TA for \textsf{\small CS 136}, Elementary Algorithm | |
177 | Design and Data Abstraction. | |
178 | \end{itemize} | |
179 | ||
df70fc95 AB |
180 | \item {\large EECS Department, } York University\, |\, {\small fall 2017} |
181 | ||
182 | \textit{Teaching Assistant} | |
183 | ||
184 | \begin{itemize} | |
beed9796 AB |
185 | \item I was a TA for \textsf{\small EECS 1012}, Net-Centric |
186 | Introduction to Computing, taught by Dr. Brown. | |
df70fc95 AB |
187 | \end{itemize} |
188 | ||
2acab84b AB |
189 | \item {\large Software Engineering Lab, } York University\, |\, {\small summer |
190 | 2017} | |
191 | ||
192 | \textit{Research Assistant} | |
193 | ||
194 | \begin{itemize} | |
df70fc95 AB |
195 | \item I worked on an implementation of |
196 | \href{https://bertrandmeyer.com/2014/12/07/lampsort/}{\textit{Lampsort}} in | |
197 | Eiffel. I also extended the | |
198 | \href{https://svn.eecs.yorku.ca/repos/sel-open/mathmodels/}{\texttt{mathmodels}} | |
199 | library, implementing a \textsc{RATIONAL} class for working with arbitrarily | |
200 | large rational numbers. | |
2acab84b AB |
201 | \end{itemize} |
202 | ||
6da83bf5 AB |
203 | \item {\large Software Engineering Lab, } York University\, |\, {\small summer |
204 | 2016} | |
8a25c428 AB |
205 | |
206 | \textit{Research Student} | |
207 | ||
208 | \begin{itemize} | |
10664de5 AB |
209 | \item As an undergraduate research student, I worked on \textit{Literate |
210 | Unit-B}, the verifier for Unit-B, a new formal method focused on formal | |
211 | verification of reactive, concurrent and distributed systems. | |
8a25c428 AB |
212 | |
213 | From the Literate Unit-B codebase (written in Haskell), I decoupled the | |
c543f989 | 214 | logic module and used it to build \textit{Unit-B Web}, a web interface using |
8a25c428 AB |
215 | Literate Unit-B to do predicate calculus proofs. \linebreak Unit-B Web, also |
216 | written in Haskell, supports the \LaTeX\ syntax of the Unit-B logic, renders | |
10664de5 | 217 | user input on the page, and calls the sequent prover of the logic module, |
e661759d | 218 | which uses the \textsc{z3 smt} solver to check the validity of user input. |
8a25c428 | 219 | |
10664de5 AB |
220 | \item Further, I separated Literate Unit-B's type checker from its parser, |
221 | allowing easier substitution of other type checking algorithms and in | |
222 | preparation for implementing subtyping. | |
8a25c428 | 223 | \end{itemize} |
2acab84b | 224 | \end{itemize} |
8a25c428 | 225 | |
a129a2a2 | 226 | \section*{Conference Presentations} |
b76edb03 AB |
227 | |
228 | \begin{itemize} | |
229 | \item {\large \tallnums CUCSC 2017} | |
230 | ||
231 | \begin{itemize} | |
232 | \item {\largersans The Magic of Specifications and Type Systems} | |
35b75740 | 233 | (\href{https://bandali.eu.org/presentations/cucsc-2017-slides.pdf}{slides}), |
6da83bf5 AB |
234 | at Canadian Undergraduate Computer Science Conference, University of |
235 | Toronto, Canada, Jun 15--17 2017. | |
b76edb03 AB |
236 | \end{itemize} |
237 | ||
a129a2a2 AB |
238 | \item {\large \tallnums Lassonde USSR Conference 2017} |
239 | ||
240 | \begin{itemize} | |
241 | \item {\largersans The Magic of Specifications and Type Systems} | |
35b75740 | 242 | (\href{https://bandali.eu.org/presentations/eecs4080-poster.pdf}{poster}), |
a129a2a2 AB |
243 | at Lassonde Undergraduate Summer Student Research Conference, York University, |
244 | Toronto, Canada, August 15, 2017. | |
245 | \end{itemize} | |
246 | ||
b76edb03 AB |
247 | \end{itemize} |
248 | ||
8a25c428 AB |
249 | \section*{Professional Experience} |
250 | \begin{itemize} | |
beed9796 AB |
251 | \item {\large Lotek Wireless Inc., } Newmarket, Canada\, |\, {\small |
252 | summer 2015 \amper\ 2016} | |
8a25c428 AB |
253 | |
254 | \textit{Software Developer} | |
255 | ||
256 | \begin{itemize} | |
257 | \item Designed and implemented various applications in C\# and C to test and | |
258 | analyze a satellite pass prediction algorithm for predicting the pass | |
259 | windows of Argos satellites, for scheduling send times of data collected by | |
260 | company's wildlife tracking products. | |
261 | ||
262 | \item Designed and developed an Employee Portal web application in C\# and the | |
263 | MVC framework, used by employees for accessing various data catalogs and | |
264 | archives. | |
265 | \end{itemize} | |
266 | \vspace{.25em} | |
267 | ||
beed9796 AB |
268 | \pagebreak % TODO: remove if necessary |
269 | ||
8a25c428 AB |
270 | \item {\large Athlete Builder, } Ottawa, Canada\, |\, {\small 2013--2014} |
271 | ||
272 | \textit{Software Developer} | |
273 | ||
274 | \begin{itemize} | |
275 | \item Developed the Backend of Athlete Builder platform in C\# and MVC. | |
276 | \item Was a key role in development of the platform core. | |
277 | \item Developed the alpha version of Athlete Builder Android app in Java. | |
278 | \end{itemize} | |
279 | \end{itemize} | |
280 | ||
281 | \section*{Volunteer Activities} | |
282 | ||
283 | \begin{itemize} | |
284 | ||
285 | \item {\large EmacsConf 2015, } \href{http://emacsconf.org}{emacsconf.org}\, |\, | |
286 | {\small summer 2015} | |
287 | ||
288 | \textit{Organizer} | |
289 | ||
290 | \begin{itemize} | |
291 | \item EmacsConf is a conference about the joy of Emacs and writing Emacs | |
292 | Lisp. I was a key organizer and in charge of setting up and maintaining | |
293 | several vital pieces of the EmacsConf infrastructure. | |
294 | \end{itemize} | |
295 | \vspace{.25em} | |
296 | ||
297 | \item {\large VONICAL Inc., } Ottawa, Canada\, |\, {\small spring 2013} | |
298 | ||
299 | \textit{Application Developer} | |
300 | ||
301 | \begin{itemize} | |
302 | \item As a volunteer, worked on development of EARN (Employment Accessibility | |
303 | Resource Network) portal using the Anahita social networking platform, in | |
304 | PHP under Linux. | |
305 | \end{itemize} | |
306 | \vspace{.25em} | |
307 | ||
308 | \item {\large Hire Works Inc., } Ottawa, Canada\, |\, {\small winter 2013} | |
309 | ||
310 | \textit{Mobile \& Web Developer} | |
311 | ||
312 | \begin{itemize} | |
313 | \item As a volunteer, I worked on a variety of web and mobile projects for | |
314 | Hire Works, Inc. | |
315 | \end{itemize} | |
316 | \vspace{.25em} | |
317 | ||
318 | \item {\large St. Brigid's Summer Camp, } Ottawa, Canada\, |\, {\small summer | |
319 | 2012} | |
320 | ||
321 | \textit{Web Developer} | |
322 | ||
323 | \begin{itemize} | |
324 | \item As a volunteer, I re-designed and coded (from scratch) an updated and | |
325 | revamped version of the photo gallery section of St. Brigid Summer Camp's | |
326 | website in PHP and JavaScript. A refactored version of my code is deployed | |
327 | and being used. | |
328 | \end{itemize} | |
329 | % \vspace{.25em} | |
330 | ||
331 | \end{itemize} | |
332 | ||
333 | ||
8b20245a AB |
334 | \section*{Recent Projects} |
335 | ||
336 | \begin{itemize} | |
337 | \item \textit{Unit-B Web:} The web interface for Unit-B, as mentioned in the | |
338 | \textit{Research Experience} section.\\ | |
339 | Source code available at | |
340 | \href{https://github.com/unitb/unitb-web}{https://github.com/unitb/unitb-web} | |
341 | ||
e661759d AB |
342 | \item \textit{tex2png-hs:} A tool for easily converting \TeX\ and \LaTeX\ to |
343 | \textsc{PNG} images. \texttt{tex2png-hs} is a Haskell port of Xyne's | |
344 | \texttt{tex2png} tool. It is a wrapper around \texttt{latex} and | |
345 | \texttt{dvipng} and provides several options for modifying its behaviour, such | |
346 | as cropping the whitespace around the content, specifying the \textsc{DPI}, or | |
347 | inputting a full document. | |
8b20245a AB |
348 | Source code available at |
349 | \href{https://github.com/unitb/tex2png-hs}{https://github.com/unitb/tex2png-hs} | |
350 | ||
b3847ce3 | 351 | \item For more projects, visit my personal site at |
35b75740 | 352 | \href{https://bandali.eu.org}{https://bandali.eu.org}. |
8b20245a AB |
353 | \end{itemize} |
354 | ||
8a25c428 AB |
355 | \section*{Miscellaneous} |
356 | ||
357 | \begin{itemize} | |
2acab84b AB |
358 | \item \textit{Programming Languages:} Haskell, Rust, Eiffel, Python, C, Emacs |
359 | Lisp, C\#, JavaScript. | |
fd1cf799 AB |
360 | \item \textit{Tools:} Emacs, Liquid Haskell, Git, Zsh, \LaTeX, CI Systems |
361 | (e.g. Travis CI), Rodin. | |
8a25c428 AB |
362 | \item \textit{Platforms:} Arch Linux, Ubuntu and other distros, Android, macOS, |
363 | Windows. | |
07f3d0ee AB |
364 | \item \textit{Languages:} Persian (mother tongue), English (fluent), French |
365 | (beginner). | |
8a25c428 AB |
366 | \end{itemize} |
367 | ||
368 | ||
f8398008 AB |
369 | % \section*{Achievements} |
370 | ||
371 | % \begin{itemize} | |
372 | % \item Was among the top 1\% incoming students in Carleton University's | |
373 | % undergraduate Computer Science program, and a top student in the faculty of | |
374 | % science. | |
375 | % \item Highest standing in Computer Science in grade 11 (92\%) and grade 12 | |
376 | % (100\%) at High school at Glebe~Collegiate~Institute. | |
377 | % \item Ranked in the top 25\% in the Canadian Senior Mathematics Contest held by | |
378 | % University of Waterloo, in 2013 (grade 11). | |
379 | % \item Graduated from high school with an average of 95\%; and designated as an Ontario Scholar. | |
380 | % \end{itemize} | |
381 | ||
382 | ||
8a25c428 AB |
383 | % Footer |
384 | \bigskip | |
385 | {\small Last updated: \today} | |
386 | ||
387 | \end{document} |