Compare commits
10 Commits
add-license-1
...
v2.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 114aa4f447 | |||
| 4a3ddb9734 | |||
| b70ab50bae | |||
| d55a65509e | |||
| 4bbcaa4881 | |||
| 7bc45ab00c | |||
| e8900bbf4b | |||
| 9354f0f462 | |||
| 54b98a0fc7 | |||
| d77cfe045d |
@@ -1,8 +1,8 @@
|
|||||||
# Compact and Minimal Resume Template
|
# Compact and Minimal Resume Template
|
||||||
|
|
||||||
This CV(Resume) template is compact, minimal, easy to modify and beautiful the same time. This template is created according to the job requirements of engineers. See [example](example.pdf) below.
|
This CV(Resume) template is compact, minimal, easy to modify and beautiful. See [My Resume](resume.tex) below.
|
||||||
|
|
||||||
<img src="example.png" align=center alt="Example CV">
|
<img src="resume.png" align=center alt="Example CV">
|
||||||
|
|
||||||
## How to use this template ?
|
## How to use this template ?
|
||||||
|
|
||||||
@@ -45,6 +45,12 @@ There are a lots of custom commands and environments to make this resume templat
|
|||||||
\github{https://www.linkedin.com/in/username}{LinkedIn Text}
|
\github{https://www.linkedin.com/in/username}{LinkedIn Text}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- Phone *(Optional)*
|
||||||
|
|
||||||
|
```tex
|
||||||
|
\phonenumber{0123456789}
|
||||||
|
```
|
||||||
|
|
||||||
- Current Date(any format) *(required)*
|
- Current Date(any format) *(required)*
|
||||||
|
|
||||||
```tex
|
```tex
|
||||||
@@ -90,7 +96,7 @@ There are a lots of custom commands and environments to make this resume templat
|
|||||||
```
|
```
|
||||||
|
|
||||||
## Requirement(s)
|
## Requirement(s)
|
||||||
You must compile this resume with `XeTeX`, `XeLaTex`, `LuaTeX` or `LuaLaTeX`. *(pdfLaTex is incompatible with fontawesome)*
|
You must compile this resume with `XeLaTex` or `LuaLaTeX` *(pdfLaTex is incompatible with fontawesome)*. While using Overleaf choose `Compiler` from the menu.
|
||||||
|
|
||||||
This resume template uses following extra packages:-
|
This resume template uses following extra packages:-
|
||||||
- [fontawesome](https://ctan.org/pkg/fontawesome) - For fontawesome icons
|
- [fontawesome](https://ctan.org/pkg/fontawesome) - For fontawesome icons
|
||||||
@@ -106,7 +112,7 @@ In addition to packages, [Roboto](https://fonts.google.com/specimen/Roboto) font
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Copyright 2021 Avinal Kumar
|
Copyright 2024 Avinal Kumar
|
||||||
This work may be distributed and/or modified under the conditions of the [LaTeX Project Public License](https://www.latex-project.org/lppl/lppl-1-3c/), either version 1.3 of this license any later version.
|
This work may be distributed and/or modified under the conditions of the [LaTeX Project Public License](https://www.latex-project.org/lppl/lppl-1-3c/), either version 1.3 of this license any later version.
|
||||||
|
|
||||||
## Acknowledgements
|
## Acknowledgements
|
||||||
|
|||||||
@@ -1,5 +1,13 @@
|
|||||||
%% comcv.cls
|
%% comcv.cls
|
||||||
%% Copyright 2021 Avinal Kumar
|
%% Copyright 2024 Avinal Kumar
|
||||||
|
%
|
||||||
|
% This work may be distributed and/or modified under the
|
||||||
|
% conditions of the LaTeX Project Public License, either version 1.3
|
||||||
|
% of this license or any later version.
|
||||||
|
% The latest version of this license is in
|
||||||
|
% http://www.latex-project.org/lppl.txt
|
||||||
|
% and version 1.3 or later is part of all distributions of LaTeX
|
||||||
|
% version 2005/12/01 or later.
|
||||||
|
|
||||||
% class options
|
% class options
|
||||||
\NeedsTeXFormat{LaTeX2e}
|
\NeedsTeXFormat{LaTeX2e}
|
||||||
@@ -102,6 +110,8 @@
|
|||||||
|
|
||||||
\newcommand*{\linkedin}[2]{\def\comcv@linkedinurl{#1}\def\comcv@linkedintext{#2}} % linkedin
|
\newcommand*{\linkedin}[2]{\def\comcv@linkedinurl{#1}\def\comcv@linkedintext{#2}} % linkedin
|
||||||
|
|
||||||
|
\newcommand*{\phonenumber}[1]{\def\comcv@phone{#1}} % phone number
|
||||||
|
|
||||||
\newcommand\horbar[1][]{\noindent\makebox[\linewidth]{\color{gray}\rule{\paperwidth}{0.4pt}}} % unindented horizontal line
|
\newcommand\horbar[1][]{\noindent\makebox[\linewidth]{\color{gray}\rule{\paperwidth}{0.4pt}}} % unindented horizontal line
|
||||||
|
|
||||||
% link colors
|
% link colors
|
||||||
@@ -121,7 +131,7 @@
|
|||||||
}{}{0pt}{}
|
}{}{0pt}{}
|
||||||
|
|
||||||
% new command for writing subsection and descriptions
|
% new command for writing subsection and descriptions
|
||||||
\newcommand*{\combosection}[4]{
|
\newcommand{\combosection}[4]{
|
||||||
\subsection{\textbf{#1}}
|
\subsection{\textbf{#1}}
|
||||||
\ifx&
|
\ifx&
|
||||||
\else
|
\else
|
||||||
@@ -173,6 +183,16 @@
|
|||||||
\def\comcv@website{}
|
\def\comcv@website{}
|
||||||
\fi
|
\fi
|
||||||
|
|
||||||
|
\ifdefined\comcv@phone
|
||||||
|
\ifx\comcv@phone\empty
|
||||||
|
\def\comcv@phonenumber{}
|
||||||
|
\else
|
||||||
|
\def\comcv@phonenumber{\faPhone~\href{tel:\comcv@phone}{\comcv@phone}}
|
||||||
|
\fi
|
||||||
|
\else
|
||||||
|
\def\comcv@phonenumber{}
|
||||||
|
\fi
|
||||||
|
|
||||||
\begin{center}
|
\begin{center}
|
||||||
% define your header text size, color and format
|
% define your header text size, color and format
|
||||||
\fontsize{35pt}{45pt}\thinheader\comcv@firstname~\regularheader\comcv@lastname
|
\fontsize{35pt}{45pt}\thinheader\comcv@firstname~\regularheader\comcv@lastname
|
||||||
@@ -183,7 +203,7 @@
|
|||||||
|
|
||||||
\ifdefined\comcv@title
|
\ifdefined\comcv@title
|
||||||
\ifx\comcv@title\empty
|
\ifx\comcv@title\empty
|
||||||
\large\light\comcv@email~~\comcv@website~~\comcv@github~~\comcv@linkedin
|
\large\light\comcv@email~~\comcv@website~~\comcv@github~~\comcv@linkedin~~\comcv@phonenumber
|
||||||
\vspace{-\topsep}
|
\vspace{-\topsep}
|
||||||
\horbar
|
\horbar
|
||||||
\vspace{-\topsep}
|
\vspace{-\topsep}
|
||||||
@@ -192,11 +212,11 @@
|
|||||||
\vspace{-\topsep}
|
\vspace{-\topsep}
|
||||||
\horbar
|
\horbar
|
||||||
|
|
||||||
\comcv@email~~\comcv@website~~\comcv@github~~\comcv@linkedin
|
\comcv@email~~\comcv@website~~\comcv@github~~\comcv@linkedin~~\comcv@phonenumber
|
||||||
\vspace{-\topsep}
|
\vspace{-\topsep}
|
||||||
\fi
|
\fi
|
||||||
\else
|
\else
|
||||||
\large\light\comcv@email~~\comcv@website~~\comcv@github~~\comcv@linkedin
|
\large\light\comcv@email~~\comcv@website~~\comcv@github~~\comcv@linkedin~~\comcv@phonenumber
|
||||||
\vspace{-\topsep}
|
\vspace{-\topsep}
|
||||||
\horbar
|
\horbar
|
||||||
\vspace{-\topsep}
|
\vspace{-\topsep}
|
||||||
|
|||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
|
Before Width: | Height: | Size: 247 KiB |
+11
-39
@@ -4,72 +4,44 @@
|
|||||||
\usepackage[english]{babel}
|
\usepackage[english]{babel}
|
||||||
|
|
||||||
\title{This Document Title}
|
\title{This Document Title}
|
||||||
\fullname{FirstName}{lastname}{Degree}
|
\fullname{FirstName}{LastName}{Degree}
|
||||||
\cvtitle{Duis ipsum enim, rhoncus eget hendrerit imperdiet.}
|
\cvtitle{This is my CV Title}
|
||||||
\website{https://www.example.com}{www.example.com}
|
\website{https://www.example.com}{www.example.com}
|
||||||
\email{email@example.com}
|
\email{email@example.com}
|
||||||
\github{https://github.com/ghost}{GitHub}
|
\github{https://github.com/ghost}{GitHub}
|
||||||
\linkedin{https://www.linkedin.com/in/username}{LinkedIn}
|
\linkedin{https://www.linkedin.com/in/username}{LinkedIn}
|
||||||
|
\phonenumber{123456789}
|
||||||
\currentdate{DD Month YYYY}
|
\currentdate{DD Month YYYY}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
\begin{center}
|
These are some details about me.
|
||||||
\textit{Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...}
|
|
||||||
\end{center}
|
|
||||||
\vspace{\topsep}
|
|
||||||
|
|
||||||
This is simple paragraph. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce orci enim, luctus non rutrum eu, interdum eu urna. Quisque scelerisque facilisis arcu sed dictum. Nam elementum facilisis lectus. Aenean a lacus venenatis, placerat augue sit amet, facilisis ipsum. Duis vitae nulla et odio tempus efficitur. Nam ornare, orci sed porta rutrum, arcu lacus porttitor tortor, at mattis elit velit vitae neque. Integer sollicitudin, justo non fermentum porttitor, magna neque aliquam nulla, in bibendum felis justo et enim. Morbi cursus dolor iaculis sapien commodo, ut laoreet nisi dapibus.
|
|
||||||
|
|
||||||
\section{Section 1}
|
\section{Section 1}
|
||||||
|
|
||||||
\combosection{Subsection 1.a}{Small Description}{MM YYYY-Present}{This is description for subsection 1.a.\vspace{\topsep}
|
\combosection{Subsection 1.a}{Small Description}{MM YYYY-Present}{This is description for subsection 1.a.\vspace{\topsep}
|
||||||
\begin{tightlist}
|
\begin{tightlist}
|
||||||
\item Nunc pretium lectus in vulputate pulvinar.
|
\item itemA
|
||||||
\item Curabitur sit amet orci id risus vulputate varius.
|
\item itemB
|
||||||
\item Quisque sit amet lectus accumsan, tincidunt odio a, aliquet leo.
|
|
||||||
\item Fusce ac lorem eleifend odio blandit venenatis ut eu turpis.
|
|
||||||
\item Sed viverra justo quis elit efficitur convallis.
|
|
||||||
\end{tightlist}
|
\end{tightlist}
|
||||||
}
|
}
|
||||||
|
|
||||||
\vspace{\topsep}
|
\vspace{\topsep}
|
||||||
|
|
||||||
\combosection{Subsection 1.b}{Small Description}{MM YYYY-MM YYYY}{Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent ut consequat leo. Nulla facilisi. Phasellus sit amet elit id metus mollis varius. Integer sit amet erat in ante imperdiet pharetra vel quis turpis. Duis pulvinar tellus commodo diam ornare tristique. Cras rutrum pretium ipsum, aliquet auctor lorem scelerisque ut. Praesent in efficitur nulla. Phasellus luctus quam ornare odio pharetra, ut fermentum urna tempor.}
|
\combosection{Subsection 1.b}{Small Description}{MM YYYY-MM YYYY}{\href{htps://www.example.com}{This is a link}}
|
||||||
|
|
||||||
\vspace{\topsep}
|
\vspace{\topsep}
|
||||||
|
|
||||||
\section{Section 2}
|
\section{Section 2}
|
||||||
\combosection{Subsection 2.a}{Small Description}{}{Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin vel arcu in metus venenatis tincidunt. Vivamus tempus, lorem a rhoncus bibendum, mauris orci vulputate urna, sed fringilla dolor quam vel orci. Pellentesque pharetra mi nisl. Fusce iaculis ex magna, vel molestie orci dignissim vitae. Nam est arcu, ornare ut lacinia iaculis, fermentum eget enim. Cras aliquam scelerisque augue, a ullamcorper lectus convallis a. Curabitur diam libero, bibendum non rutrum id, gravida id magna. Donec facilisis ac libero in pharetra. Vestibulum lorem ante, cursus id dictum ut, tincidunt a urna. Cras volutpat turpis dui, vitae rutrum libero rhoncus ac. Proin vitae ipsum dignissim, viverra nulla vitae, sagittis justo. Aliquam in luctus velit. Maecenas porttitor sapien eu venenatis mollis.
|
|
||||||
\vspace{\topsep}
|
|
||||||
Sed nec venenatis mauris. Ut nec commodo libero, id dictum quam. Vivamus facilisis orci eget pretium ornare. Nullam eu tristique leo. Aliquam suscipit vulputate mattis. Integer eleifend lectus ut odio auctor tristique. Fusce dignissim nisl sed mi interdum cursus.}
|
|
||||||
|
|
||||||
\vspace{\topsep}
|
\combosection{Subsection 2.a}{Small Description}{MM YYYY-Present}{}
|
||||||
\combosection{Subsection 2.b}{Small Description}{}{\href{www.example.com}{This is a link example.}}
|
|
||||||
|
|
||||||
\vspace{\topsep}
|
\vspace{\topsep}
|
||||||
|
|
||||||
\section{Section 3}
|
\combosection{Subsection 2.b}{Small Description}{}{}
|
||||||
\combosection{\href{https://www.example.com}{Subscription 3.a with link}}{Small Description}{}{This subsection has link in the subsection header itself.}
|
|
||||||
|
|
||||||
\vspace{\topsep}
|
\vspace{\topsep}
|
||||||
|
|
||||||
\combosection{Subsection 3.b}{\href{https://www.example.com}{Small Description Link}}{}{This subsection has link in small description.}
|
\combosection{Subsection 2.c}{}{}{}
|
||||||
|
|
||||||
\vspace{\topsep}
|
|
||||||
|
|
||||||
\combosection{Subsection 3.c}{}{\href{https://www.example.com}{DD MM YYYY}}{This subsection has link in the right corner.}
|
|
||||||
|
|
||||||
\vspace{\topsep}
|
|
||||||
|
|
||||||
\combosection{Subsection 3.d}{}{}{
|
|
||||||
\begin{tightlist}
|
|
||||||
\item \href{www.example.com}{This a link in the list, not linked list}
|
|
||||||
\end{tightlist}
|
|
||||||
}
|
|
||||||
|
|
||||||
\vspace{\topsep}
|
|
||||||
\combosection{Subsection 3.e}{}{}{This is an empty subsection.}
|
|
||||||
|
|
||||||
\centering\paragraph{\fontsize{50pt}{60pt}\thinheader{Still Got some Space.}}
|
|
||||||
|
|
||||||
\end{document}
|
\end{document}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
|
After Width: | Height: | Size: 316 KiB |
+71
-46
@@ -5,73 +5,93 @@
|
|||||||
|
|
||||||
\title{Avinal's CV}
|
\title{Avinal's CV}
|
||||||
\fullname{Avinal}{Kumar}{}
|
\fullname{Avinal}{Kumar}{}
|
||||||
% \cvtitle{Student, Programmer, Technical Writer, Open Source Developer}
|
\cvtitle{Software Engineer, Open Sourcerer}
|
||||||
\website{https://avinal.is-a.dev}{avinal.is-a.dev}
|
\website{https://avinal.space}{avinal.space}
|
||||||
\email{185067@nith.ac.in}
|
\email{ripple@avinal.space}
|
||||||
\github{https://github.com/avinal}{GitHub}
|
\github{https://github.com/avinal}{GitHub}
|
||||||
\linkedin{https://www.linkedin.com/in/avinal}{LinkedIn}
|
\linkedin{https://www.linkedin.com/in/avinal}{LinkedIn}
|
||||||
\currentdate{Jan 2021}
|
\currentdate{Feb 2024}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\section{Experience}
|
\section{Experience}
|
||||||
\combosection{Script Winter of Code}{Participant \href{https://github.com/harshcasper/rotten-scripts}{Rotten-Scripts}}{Dec 2020-Present}{
|
\combosection{Red Hat}{Software Engineer}{June 2022 - Present}{
|
||||||
\begin{tightlist}
|
\begin{tightlist}
|
||||||
\item Proposed new sections for PowerShell Scripts
|
\item Working on Pipeline Service project as a part of Red Hat Trusted Application Pipeline
|
||||||
\item Proposed and created structure of website for the project
|
\item \href{https://github.com/tektoncd/results}{Tekton Results} Maintainer
|
||||||
\item Added Automatic Pull Request Assigning Action
|
\end{tightlist}
|
||||||
|
}
|
||||||
|
|
||||||
|
\combosection{Red Hat}{Developer Tools Intern }{Jan 2022 - May 2022}{
|
||||||
|
\begin{tightlist}
|
||||||
|
\item Designed and implemented the \href{https://github.com/MiniTeks}{MiniTeks} (Minimal Tekton Server) along with unit tests, a training project that
|
||||||
|
creates Tekton resources on Kubernetes/OpenShift clusters using the Tekton API. It was developed
|
||||||
|
using Golang, Kubernetes, Tekton, and Redis and had 3 parts: MKS Server, MKS CLI, and MKS
|
||||||
|
Dashboard.
|
||||||
|
\item Contributed to Tekton Results as part of the Pipeline Service team. Tekton Results aims at long-term, efficient results storage of Tekton PipelineRuns and TaskRuns.
|
||||||
|
\end{tightlist}
|
||||||
|
}
|
||||||
|
|
||||||
|
\combosection{API7.ai}{Technical Writer, \href{https://github.com/apache/apisix}{Apache APISIX}}{Feb 2022 - July 2022}{
|
||||||
|
\begin{tightlist}
|
||||||
|
\item Redesigning developer and user documentation of the Apache APISIX project. Creating Katacoda tutorials for APISIX collaborating with the community and integrating their feedback into the
|
||||||
|
documentation.
|
||||||
|
\end{tightlist}
|
||||||
|
}
|
||||||
|
|
||||||
|
\combosection{Google Summer of Code 2021}{Contributor, \href{https://github.com/fossology/fossology}{The FOSSology Project}}{May 2021 - Aug 2021}{
|
||||||
|
\begin{tightlist}
|
||||||
|
\item Upgraded the build system from Unix Makefile to a more optimized and flexible CMake generator.
|
||||||
|
\item Migrated the CI/CD of the project from Travis CI to GitHub Actions. This migration removes the
|
||||||
|
dependency on a third-party CI and provides better build time and better integration with GitHub.
|
||||||
|
\item Refactored and fixed years-old unit and functional testing code written in C/C++ and PHP. Build
|
||||||
|
time was reduced to 5-7 minutes (twice as fast), and CI time was reduced to 20-25 minutes from 1-2 hours.
|
||||||
|
\end{tightlist}
|
||||||
|
}
|
||||||
|
|
||||||
|
\combosection{XResearch}{Java Development Intern}{Jan 2021 - May 2021}{
|
||||||
|
\begin{tightlist}
|
||||||
|
\item Designed and developed an Inventory and Billing Management App using Spring Boot and
|
||||||
|
PostgreSQL. Created REST API endpoints according to the functional requirements of the software.
|
||||||
\end{tightlist}
|
\end{tightlist}
|
||||||
}
|
}
|
||||||
|
|
||||||
\combosection{Google Season of Docs 2020}{Technical Writer, VideoLAN}{Sep 2020 - Nov 2020}{
|
\combosection{Google Season of Docs 2020}{Technical Writer, VideoLAN}{Sep 2020 - Nov 2020}{
|
||||||
\begin{tightlist}
|
\begin{tightlist}
|
||||||
\item Created \href{https://code.videolan.org/docs/vlc-android-user}{VLC for Android User Documentation}
|
\item Created \href{https://code.videolan.org/docs/vlc-android-user}{VLC for Android User Documentation}
|
||||||
\item Proposed a new structure for the documentation (Sphinx, reStructuredText)
|
\item Documented VLC for Android app using Sphinx, reStructuredText, Markdown, and shell scripting.
|
||||||
\item Writing user-friendly and well researched content for technical and non-technical users.
|
\item I achieved the goal of this project, which was to provide well-researched and user-friendly app
|
||||||
\item Proper amount and placement of screenshots and other media for appealing and informative docs.
|
documentation enriched with supporting screenshots and step-by-step tutorials.
|
||||||
\item Optimized webpages for major form factors and ease of navigation
|
|
||||||
\end{tightlist}
|
\end{tightlist}
|
||||||
}
|
}
|
||||||
|
|
||||||
\section{Projects}
|
\section{Projects}
|
||||||
\combosection{\href{https://github.com/avinal/Profile-Readme-Wakatime}{Automated Coding Activity GitHub Action}}{Python, Docker, GitHub Actions, Bash Scripting}{}{
|
\combosection{\href{https://github.com/avinal/Profile-Readme-Wakatime}{Automated WakaTime GitHub Actions App}}{Python, Docker, GitHub Actions, Bash Scripting}{}{
|
||||||
\begin{tightlist}
|
\begin{tightlist}
|
||||||
\item Automatically generates WakaTime Coding Activity graph that can be embedded in Readme(s) and websites.
|
\item Built an automated WakaTime coding statistics update system using Python scripts, shell scripts,
|
||||||
\item Uses WakaTime API to gather coding activity of last seven days as JSON.
|
Docker, the WakaTime API, and GitHub Actions. Currently, it has 42 stars on GitHub and 200+
|
||||||
\item The data is then processes and converted to a SVG graph using matplotlib
|
active users worldwide. WakaTime is a utility to track coding activities across multiple IDEs and
|
||||||
|
machines.
|
||||||
|
\item This app generates a colorful bar graph of the coding activity tracked by WakaTime in the last week,
|
||||||
|
daily at a specified time in SVG format. This image file can then be embedded into READMEs and
|
||||||
|
websites. It can be scheduled to update more often or less often.
|
||||||
\end{tightlist}
|
\end{tightlist}
|
||||||
}
|
}
|
||||||
|
|
||||||
\combosection{\href{https://github.com/avinal/Binary-Search-Tree-Travarsal}{Binary Search Tree Traversal Animator}}{Java, Gradle, Swing, Multi-threading}{}{
|
\combosection{\href{https://github.com/avinal/xeus-basic}{Xeus-BASIC}}{C, C++, Jupyter Notebook}{}{
|
||||||
\begin{tightlist}
|
\begin{tightlist}
|
||||||
\item Creates Binary Search Tree node-by-node and draws the path taken by the traversals.
|
\item Built a Jupyter Kernel for the BASIC language using the Xeus Framework, C, and C++. As of now,
|
||||||
\item Visualizes Inorder, Preorder, Postorder and Levelorder using multi-threading and recursion.
|
it can execute BASIC programs line by line in Jupyter Notebook and output their results.
|
||||||
\end{tightlist}
|
\end{tightlist}
|
||||||
}
|
}
|
||||||
|
|
||||||
\combosection{\href{https://github.com/avinal/FITS-Image}{Astronomical Image Extraction from FITS File}}{C++, CFITSIO, Boost.GIL, CMake}{}{Flexible Image Transport System has been used for decades to store and transfer astronomical images and needs specialized software to view them, this project extract those images as JPEG or PNG that can be viewed by common image viewer.}
|
\combosection{\href{https://github.com/avinal/FITS-Image}{Astronomical Image Extraction from FITS File}}{C++, CFITSIO, Boost.GIL, CMake}{}{
|
||||||
|
Flexible Image Transport System has been used for decades to store and transfer astronomical images and needs specialized software to view them, this project extract those images as JPEG or PNG that can be viewed by common image viewer.
|
||||||
|
}
|
||||||
\vspace{\topsep}
|
\vspace{\topsep}
|
||||||
\combosection{Open Source Contributions}{\href{https://github.com/avinal}{GitHub}, \href{https://code.videolan.org/avinal}{GitLab}}{}{Contributed to organizations: GitHub, Jupyter-XEUS, JetBrains, Embox, VideoLAN}
|
|
||||||
|
|
||||||
\vspace{\topsep}
|
|
||||||
\section{Skills}
|
|
||||||
\combosection{Programming}{}{}{
|
|
||||||
\begin{tightlist}
|
|
||||||
\item Data Structures and Algorithms
|
|
||||||
\item C/C++ (2+ years) - STL, Pointers, Templates, OOP, API development, Boost C++, Qt(basic)
|
|
||||||
\item Java (1+ years) - Collections, Generic Programming, Basic Multi-threading
|
|
||||||
\item Basic - SQL, MATLAB, HTML, CSS, JavaScript, Python
|
|
||||||
\end{tightlist}
|
|
||||||
}
|
|
||||||
|
|
||||||
\combosection{Tools/Others}{}{}{
|
|
||||||
\begin{tightlist}
|
|
||||||
\item Scripting(Bash, Python), git, GitHub Actions, CI/CD, Linux/Unix, Windows, Windows Subsystem for Linux
|
|
||||||
\item \LaTeX, Visual Studio Code, CLion, IntelliJ IDEA, Vim, Visual Studio, Word, Powerpoint, Excel
|
|
||||||
\end{tightlist}
|
|
||||||
}
|
|
||||||
|
|
||||||
\section{Education}
|
\section{Education}
|
||||||
\combosection{National Institute of Technology, Hamirpur}{B.Tech in Computer Sci. and Eng.}{2018-Present}{
|
\combosection{National Institute of Technology, Hamirpur}{B.Tech in Computer Sci. and Eng.}{2018-2022}{CGPA: 8.45/10
|
||||||
|
|
||||||
\ifextended
|
\ifextended
|
||||||
Courses - Advanced Calculus, Statistics, Probability and Queuing Theory, Algorithm Design, Digital Logic Design, Database Management Systems, Data Structures, Operating Systems, Compiler Design, Computer Networks
|
Courses - Advanced Calculus, Statistics, Probability and Queuing Theory, Algorithm Design, Digital Logic Design, Database Management Systems, Data Structures, Operating Systems, Compiler Design, Computer Networks
|
||||||
\else
|
\else
|
||||||
@@ -79,13 +99,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
\vspace{\topsep}
|
\vspace{\topsep}
|
||||||
\combosection{The Coding School}{Quantum Computing}{Oct 2020-Present}{
|
|
||||||
Basic Quantum Mechanics and Quantum Computing
|
\section{Skills}
|
||||||
|
\combosection{Programming Languages}{}{}{
|
||||||
|
Go, Elm, C, C++, Rust, Bash Scripting
|
||||||
|
}
|
||||||
|
\vspace{\topsep}
|
||||||
|
\combosection{Technologies}{}{}{
|
||||||
|
\begin{tightlist}
|
||||||
|
\item GNU/Linux, Fedora, CI/CD, Vim, CMake
|
||||||
|
\item Docker, Kubernetes, OpenShift, Tekton CD
|
||||||
|
\end{tightlist}
|
||||||
}
|
}
|
||||||
|
|
||||||
\vspace{\topsep}
|
|
||||||
|
|
||||||
\section{Certifications}
|
|
||||||
\combosection{Google IT Support Professional}{Coursera}{2020}{Computer Network, System Administration, Operating Stystem, Cyber Security}
|
|
||||||
|
|
||||||
\end{document}
|
\end{document}
|
||||||
Reference in New Issue
Block a user