Advertisement
Guest User

Untitled

a guest
Aug 26th, 2018
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.83 KB | None | 0 0
  1. %% start of file `template.tex'.
  2. %% Copyright 2006-2013 Xavier Danaux (xdanaux@gmail.com).
  3. %
  4. % This work may be distributed and/or modified under the
  5. % conditions of the LaTeX Project Public License version 1.3c,
  6. % available at http://www.latex-project.org/lppl/.
  7.  
  8.  
  9. \documentclass[11pt,a4paper, sans]{moderncv} % possible options include font size ('10pt', '11pt' and '12pt'), paper size ('a4paper', 'letterpaper', 'a5paper', 'legalpaper', 'executivepaper' and 'landscape') and font family ('sans' and 'roman')
  10.  
  11. % moderncv themes
  12. \moderncvstyle{classic} % style options are 'casual' (default), 'classic', 'oldstyle' and 'banking'
  13. \moderncvcolor{green} % color options 'blue' (default), 'orange', 'green', 'red', 'purple', 'grey' and 'black'
  14. %\renewcommand{\familydefault}{\sfdefault} % to set the default font; use '\sfdefault' for the default sans serif font, '\rmdefault' for the default roman one, or any tex font name
  15. %\nopagenumbers{} % uncomment to suppress automatic page numbering for CVs longer than one page
  16.  
  17. % character encoding
  18. \usepackage[utf8]{inputenc} % if you are not using xelatex ou lualatex, replace by the encoding you are using
  19. %\usepackage{CJKutf8} % if you need to use CJK to typeset your resume in Chinese, Japanese or Korean
  20.  
  21. % adjust the page margins
  22. \usepackage[scale=0.81]{geometry}
  23. %\setlength{\hintscolumnwidth}{3cm} % if you want to change the width of the column with the dates
  24. %\setlength{\makecvtitlenamewidth}{10cm} % for the 'classic' style, if you want to force the width allocated to your name and avoid line breaks. be careful though, the length is normally calculated to avoid any overlap with your personal info; use this at your own typographical risks...
  25.  
  26. % personal data
  27. \name{Rubab}{Hossain}
  28. % \title{Resumé title} % optional, remove / comment the line if not wanted
  29. % \address{street and number}{postcode city}{country}% optional, remove / comment the line if not wanted; the "postcode city" and and "country" arguments can be omitted or provided empty
  30. \phone[mobile]{+1~(305)~988~5330} % optional, remove / comment the line if not wanted
  31. % \phone[fixed]{+2~(345)~678~901} % optional, remove / comment the line if not wanted
  32. % \phone[fax]{+3~(456)~789~012} % optional, remove / comment the line if not wanted
  33. \email{rhossain6@gatech.edu} % optional, remove / comment the line if not wanted
  34. % \homepage{www.rubabhossain.com} % optional, remove / comment the line if not wanted
  35. % \extrainfo{additional information} % optional, remove / comment the line if not wanted
  36. % \photo[64pt][0.4pt]{picture} % optional, remove / comment the line if not wanted; '64pt' is the height the picture must be resized to, 0.4pt is the thickness of the frame around it (put it to 0pt for no frame) and 'picture' is the name of the picture file
  37. % \quote{Some quote} % optional, remove / comment the line if not wanted
  38.  
  39. % to show numerical labels in the bibliography (default is to show no labels); only useful if you make citations in your resume
  40. %\makeatletter
  41. %\renewcommand*{\bibliographyitemlabel}{\@biblabel{\arabic{enumiv}}}
  42. %\makeatother
  43. %\renewcommand*{\bibliographyitemlabel}{[\arabic{enumiv}]}% CONSIDER REPLACING THE ABOVE BY THIS
  44.  
  45. % bibliography with mutiple entries
  46. %\usepackage{multibib}
  47. %\newcites{book,misc}{{Books},{Others}}
  48. %----------------------------------------------------------------------------------
  49. % content
  50. %----------------------------------------------------------------------------------
  51. \begin{document}
  52. %\begin{CJK*}{UTF8}{gbsn} % to typeset your resume in Chinese using CJK
  53. %----- resume ---------------------------------------------------------
  54. \makecvtitle
  55.  
  56. \section{Education}
  57. \cventry{2016 -- 2020}{B.S. in Computer Science}{Georgia Institute of Technology}{Atlanta, GA}{}
  58. {
  59. \begin{itemize}%
  60. \item GPA: 3.73 \emph{(Faculty Honors)}
  61. \item Threads: Systems/Architecture and Intelligence
  62. \item Minor: Mathematics
  63. \end{itemize}
  64. } % arguments 3 to 6 can be left empty
  65.  
  66. \section{Undergraduate Research}
  67.  
  68. \cventry{Jan -- May 2018}{Research Assistant}{Georgia Tech Systems Research}{}{}
  69. {
  70. Collaborated with researchers at Georgia Tech to develop airborne robots that create fine grid spatial maps of wind flow based on motion tomography data from flight trajectories.
  71. \vspace{1mm}
  72. \begin{itemize}%
  73. \item Adapted existing control software to adjust for overcompensating against wind
  74. \item Developed scripts to construct a wind field map using flight data from test runs of the robot in a controlled environment
  75. \end{itemize}
  76. }
  77.  
  78.  
  79. \section{Projects}
  80.  
  81. \cventry{Jun--July 2018}{Intelligent Pacman Agent}{}{}{}
  82. {
  83. \emph{Wrote code in Python that defined the behavior of an intelligent Pacman agent for both deterministic and non-deterministic environments}
  84. \begin{itemize}%
  85. \item Implemented modern learning algorithms to develop an agent that improved performance with experience
  86. \item Used probabilistic models that allowed agent to display rational behavior in non-deterministic environments
  87. \end{itemize}
  88. }
  89.  
  90.  
  91. \cventry{Apr 2018}{GBA Emulator Game}{}{}{}
  92. {
  93. \emph{Developed a basic video game in C to run on an emulated GameBoy Advance system}
  94. \begin{itemize}%
  95. \item Designed novel underlying logic to allow game to run smoothly on restrained hardware
  96. \item Implemented all game logic and pixel-level graphics in C
  97. \end{itemize}
  98. }
  99.  
  100. \cventry{Nov 2017}{Chess Database}{}{}{}
  101. {
  102. \emph{Wrote a database program that imported PGN files that contained information about chess games and displayed the data in a visual format}
  103. \begin{itemize}%
  104. \item Made a text parser that extracted game data from .pgn files and used the data to infer game state
  105. \item Used JavaFX to make an accompanying GUI for the database
  106. \end{itemize}
  107. }
  108.  
  109.  
  110.  
  111.  
  112. \section{Relevant Coursework}
  113. \cvlistdoubleitem{CS2200: Computer Systems \scriptsize{\emph{(In Progress)}}}{CS2340: Objects \& Design \scriptsize{\emph{(In Progress)}}}
  114. \cvlistdoubleitem{ECE2031:Digital Design Lab \scriptsize{\emph{(In Progress)}}}{CS3630: Intro Robotics \scriptsize{\emph{(In Progress)}}}
  115. \cvlistdoubleitem{CS2110: Computer Architecture}{CS3600: Intro Artificial Intelligence}
  116.  
  117.  
  118. \section{Technical Skills}
  119. \cvitem{}{Programming Languages}
  120. \cvlistitem{\emph{Java, C, Python, MATLAB, JavaScript}}
  121.  
  122. \cvitem{}{Markup Languages, Tools \& Other Technologies}
  123. \cvlistitem{\emph{HTML, CSS, Android Studio, Git}}
  124.  
  125.  
  126.  
  127. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement