Advertisement
SAURAVKR

Untitled

Jun 29th, 2024 (edited)
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 9.54 KB | None | 0 0
  1. %-------------------------
  2. % Resume in Latex
  3. % Author : Abey George
  4. % Based off of: https://github.com/sb2nov/resume
  5. % License : MIT
  6. %------------------------
  7.  
  8. \documentclass[letterpaper,11pt]{article}
  9.  
  10. \usepackage{latexsym}
  11. \usepackage[empty]{fullpage}
  12. \usepackage{titlesec}
  13. \usepackage{marvosym}
  14. \usepackage[usenames,dvipsnames]{color}
  15. \usepackage{verbatim}
  16. \usepackage{enumitem}
  17. \usepackage[hidelinks]{hyperref}
  18. \usepackage[english]{babel}
  19. \usepackage{tabularx}
  20. \usepackage{fontawesome5}
  21. \usepackage{multicol}
  22. \usepackage{graphicx}
  23. \setlength{\multicolsep}{-3.0pt}
  24. \setlength{\columnsep}{-1pt}
  25. \input{glyphtounicode}
  26.  
  27. \RequirePackage{tikz}
  28. \RequirePackage{xcolor}
  29. \RequirePackage{fontawesome}
  30. \usepackage{tikz}
  31. \usetikzlibrary{svg.path}
  32.  
  33.  
  34. \definecolor{cvblue}{HTML}{0E5484}
  35. \definecolor{black}{HTML}{130810}
  36. \definecolor{darkcolor}{HTML}{0F4539}
  37. \definecolor{cvgreen}{HTML}{3BD80D}
  38. \definecolor{taggreen}{HTML}{00E278}
  39. \definecolor{SlateGrey}{HTML}{2E2E2E}
  40. \definecolor{LightGrey}{HTML}{666666}
  41. \colorlet{name}{black}
  42. \colorlet{tagline}{darkcolor}
  43. \colorlet{heading}{darkcolor}
  44. \colorlet{headingrule}{cvblue}
  45. \colorlet{accent}{darkcolor}
  46. \colorlet{emphasis}{SlateGrey}
  47. \colorlet{body}{LightGrey}
  48.  
  49.  
  50.  
  51. %----------FONT OPTIONS----------
  52. % sans-serif
  53. % \usepackage[sfdefault]{FiraSans}
  54. % \usepackage[sfdefault]{roboto}
  55. % \usepackage[sfdefault]{noto-sans}
  56. % \usepackage[default]{sourcesanspro}
  57.  
  58. % serif
  59. % \usepackage{CormorantGaramond}
  60. % \useusepackage{charter}
  61.  
  62.  
  63. % \pagestyle{fancy}
  64. % \fancyhf{}  % clear all header and footer fields
  65. % \fancyfoot{}
  66. % \renewcommand{\headrulewidth}{0pt}
  67. % \renewcommand{\footrulewidth}{0pt}
  68.  
  69. % Adjust margins
  70. \addtolength{\oddsidemargin}{-0.6in}
  71. \addtolength{\evensidemargin}{-0.5in}
  72. \addtolength{\textwidth}{1.19in}
  73. \addtolength{\topmargin}{-.7in}
  74. \addtolength{\textheight}{1.4in}
  75.  
  76. \urlstyle{same}
  77.  
  78. \raggedbottom
  79. \raggedright
  80. \setlength{\tabcolsep}{0in}
  81.  
  82. % Sections formatting
  83. \titleformat{\section}{
  84.  \vspace{-4pt}\scshape\raggedright\large\bfseries
  85. }{}{0em}{}[\color{black}\titlerule \vspace{-5pt}]
  86.  
  87. % Ensure that generate pdf is machine readable/ATS parsable
  88. \pdfgentounicode=1
  89.  
  90. %-------------------------
  91. % Custom commands
  92. \newcommand{\resumeItem}[1]{
  93.  \item\small{
  94.    {#1 \vspace{-2pt}}
  95.  }
  96. }
  97.  
  98. \newcommand{\classesList}[4]{
  99.    \item\small{
  100.        {#1 #2 #3 #4 \vspace{-2pt}}
  101.  }
  102. }
  103.  
  104. \newcommand{\resumeSubheading}[4]{
  105.  \vspace{-2pt}\item
  106.    \begin{tabular*}{1.0\textwidth}[t]{l@{\extracolsep{\fill}}r}
  107.      \textbf{\large#1} & \textbf{\small #2} \\
  108.      \textit{\large#3} & \textit{\small #4} \\
  109.      
  110.    \end{tabular*}\vspace{-7pt}
  111. }
  112.  
  113. \newcommand{\resumeSubSubheading}[2]{
  114.    \item
  115.    \begin{tabular*}{0.97\textwidth}{l@{\extracolsep{\fill}}r}
  116.      \textit{\small#1} & \textit{\small #2} \\
  117.    \end{tabular*}\vspace{-7pt}
  118. }
  119.  
  120.  
  121. \newcommand{\resumeProjectHeading}[2]{
  122.    \item
  123.    \begin{tabular*}{1.001\textwidth}{l@{\extracolsep{\fill}}r}
  124.      \small#1 & \textbf{\small #2}\\
  125.    \end{tabular*}\vspace{-7pt}
  126. }
  127.  
  128. \newcommand{\resumeSubItem}[1]{\resumeItem{#1}\vspace{-4pt}}
  129.  
  130. \renewcommand\labelitemi{$\vcenter{\hbox{\tiny$\bullet$}}$}
  131. \renewcommand\labelitemii{$\vcenter{\hbox{\tiny$\bullet$}}$}
  132.  
  133. \newcommand{\resumeSubHeadingListStart}{\begin{itemize}[leftmargin=0.0in, label={}]}
  134. \newcommand{\resumeSubHeadingListEnd}{\end{itemize}}
  135. \newcommand{\resumeItemListStart}{\begin{itemize}}
  136. \newcommand{\resumeItemListEnd}{\end{itemize}\vspace{-5pt}}
  137.  
  138.  
  139. \newcommand\sbullet[1][.5]{\mathbin{\vcenter{\hbox{\scalebox{#1}{$\bullet$}}}}}
  140.  
  141. %-------------------------------------------
  142. %%%%%%  RESUME STARTS HERE  %%%%%%%%%%%%%%%%%%%%%%%%%%%%
  143.  
  144.  
  145. \begin{document}
  146.  
  147. %----------HEADING----------
  148.  
  149.  
  150. \begin{center}
  151.    {\Huge \scshape Saurav Kumar \small{(Roll No: Btech/10573/22)} } \\ \vspace{3pt}
  152.  
  153.    \small \href{+91-6202830406}{ \raisebox{-0.1\height}\faPhone\ \underline{+91-6202830406} ~} \href{mailto:[email protected]}{\raisebox{-0.2\height}\faEnvelope\  \underline{[email protected]}} ~
  154.    \href{https://in.linkedin.com/in/saurav-kumar-19a901260}{\raisebox{-0.2\height}\faLinkedinSquare\ \underline{Saurav Kumar}}  ~
  155.    \href{https://github.com/TheFanatic-1}{\raisebox{-0.2\height}\faGithub\ \underline{TheFanatic1}} ~~
  156.    \href{}{\raisebox{-0.2\height}\faPoll\ \underline{}}
  157.    \vspace{-8pt}
  158. \end{center}
  159.  
  160.  
  161. %-----------EDUCATION-----------
  162. \section{EDUCATION}
  163.  \resumeSubHeadingListStart
  164.    \resumeSubheading
  165.      {Birla Institute Of Technology Mesra, Ranchi}{Aug 2022 -- May 2026}
  166.       {Bachelor Of Technology - Computer Science And Engineering}{\textbf{CGPA (till 4th semester): 7.9}}
  167.  \resumeSubHeadingListEnd
  168.  
  169.  \resumeSubHeadingListStart
  170.    \resumeSubheading
  171.      {Delhi Public School, Bokaro}{May 2019 -- June 2021}
  172.     {Class 12th Central Board Of Secondary Education (CBSE), Jharkhand}{\textbf{Percentage: 92\%}}
  173.   \resumeSubHeadingListEnd
  174.  
  175. %------RELEVANT COURSEWORK-------
  176. \section{COURSEWORK}
  177.     %\resumeSubHeadingListStart
  178.         \begin{multicols}{3}
  179.            \begin{itemize}[itemsep=-2pt, parsep=5pt]
  180.                \item Data Structures \& Algorithms
  181.                \item Operating Systems
  182.                \item Computer Architecture \& Organization
  183.                \item OOPS Concept
  184.                \item Database Management System (DBMS)
  185.                \item Web Development
  186.            \end{itemize}
  187.        \end{multicols}
  188.        \vspace*{2.0\multicolsep}
  189.     %\resumeSubHeadingListEnd
  190.  
  191. %-----------PROJECTS-----------
  192. \section{PROJECTS}
  193. \vspace{-3pt}
  194. \resumeSubHeadingListStart
  195.  
  196. % Project 1
  197. \resumeProjectHeading
  198. {\textbf{\large{\underline{Tour App}}} $|$ \large{NODEJS, EXPRESS, MONGOOSE, MONGODB, JWT $|$ \href{https://github.com/TheFanatic-1/TourApp/tree/TheFanatic-1-patch-1}{\faGithub}}}{Apr 2024}
  199. \vspace{-3pt} % Add vertical space here
  200. \resumeItemListStart
  201.     \resumeItem{
  202.        \large
  203.        \begin{itemize}[label=$\bullet$]
  204.            \item \textbf{Managed} authentication and access control for \textbf{over 1,000 users} using \textbf{JWT authentication}
  205.            \item \textbf{Implemented} user management features including \textbf{sign up, log in, logout, update}, and \textbf{reset password}
  206.            \item \textbf{Developed} role-based security for \textbf{users, admins, and guides}, improving security by \textbf{30\%}
  207.            \item \textbf{Built} a review system allowing \textbf{user-specific reviews}, generating \textbf{100+ reviews per month}
  208.        \end{itemize}
  209.    }
  210. \resumeItemListEnd
  211. \vspace{-7pt} % Add vertical space here
  212.  
  213. % Project 2
  214. \resumeProjectHeading
  215. {\textbf{\large{\underline{Weather App}}} $|$ \large{HTML, CSS, JAVASCRIPT $|$ \href{https://github.com/TheFanatic-1/theweatherapp}{\faGithub}}}{Dec 2023}
  216. \vspace{-4pt} % Add vertical space here
  217. \resumeItemListStart
  218.     \resumeItem{
  219.        \large
  220.        \begin{itemize}[label=$\bullet$]
  221.            \item \textbf{Integrated} OpenWeatherMap API for \textbf{real-time weather updates}
  222.            \item \textbf{Provided} city-specific weather data, including \textbf{humidity and temperature} for \textbf{500+ cities}
  223.            \item \textbf{Optimized} API response time by \textbf{20\%} using async/await
  224.            \item \textbf{Ensured} efficient load times under \textbf{2 seconds}
  225.        \end{itemize}
  226.    }
  227. \resumeItemListEnd
  228. \vspace{5pt} % Add vertical space here
  229.  
  230. \resumeSubHeadingListEnd
  231. \vspace{-3pt}
  232.  
  233. %-----------PROGRAMMING SKILLS-----------
  234. \section{SKILLS}
  235. \begin{itemize}[leftmargin=0.15in, label={}]
  236.    \item{
  237.    \large
  238.        \textbf{Languages:} Java, C, C++, JavaScript, SQL, Shell Scripting \\
  239.        \textbf{Developer Tools:} VS Code, Sublime Text, Git, GitHub, Postman \\
  240.        \textbf{Frameworks:} NodeJS, ExpressJS, MongoDB, HTML, CSS
  241.    }
  242. \end{itemize}
  243.  
  244.  
  245. %-----------ACHIEVEMENTS---------------
  246. \section{ACHIEVEMENTS}
  247. \vspace{5pt} % Add vertical space between the section heading and the first item
  248.  
  249. \resumeSubHeadingListStart
  250. \resumeItemListStart
  251. \normalsize
  252.     \item \textbf{Best Contest Rank On Codeforces} Achieved a \textbf{Global Rank of 2450 among 28,892 participants} in Codeforces Div2 912.
  253.    $|$ \href{https://codeforces.com/contest/1903/standings/participant/168895061#p168895061}{\faPoll}
  254.    \item \textbf{Best Contest Rating On Algorithmic Platforms} \textbf{PUPIL} at Codeforces with a \textbf{max rating of 1272.}$|$ \href{https://codeforces.com/profile/YourProfileName}{\faPoll}
  255.    \item \textbf{JEE Mains Mathematics Score} Ranked in the top \textbf{3\%} among \textbf{9.2 lakh students} in \textbf{JEE Mains 2022}.
  256.    \item \textbf{JEE Mains 2022} Achieved a rank of \textbf{27k}, among \textbf {9.2 lakh students}.
  257. \resumeItemListEnd
  258. \resumeSubHeadingListEnd
  259. \vspace{0pt}
  260. %-----------INVOLVEMENT---------------
  261. \section{EXTRACURRICULAR ACTIVITIES}
  262. \vspace{5pt} % Add vertical space between the section heading and the first item
  263.  
  264. \resumeSubHeadingListStart
  265.  
  266. \resumeItemListStart
  267.     \itemsep0pt
  268.     \parsep0pt
  269.     \vspace{-\topsep}
  270.    \large
  271.    \item \textbf{Collaborated} with the event team to secure resources and manage logistics, ensuring the \textbf{successful execution of the fest BITOSTAV}.
  272.    \item \textbf{Mentored} 100 students, \textbf{introducing them to competitive programming} and guiding them through various domains they can explore.
  273.    \item \textbf{Demonstrated} strong typing proficiency with an \textbf{average speed of 85 words per minute}, ensuring efficient documentation and communication during team activities.
  274. \resumeItemListEnd
  275.  
  276. \resumeSubHeadingListEnd
  277.  
  278.  
  279.  
  280. \end{document}
  281.  
Tags: My Resume
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement