├── fonts ├── lato │ ├── Lato-Bla.ttf │ ├── Lato-Bol.ttf │ ├── Lato-Hai.ttf │ ├── Lato-Lig.ttf │ ├── Lato-Reg.ttf │ ├── Lato-BlaIta.ttf │ ├── Lato-BolIta.ttf │ ├── Lato-HaiIta.ttf │ ├── Lato-LigIta.ttf │ └── Lato-RegIta.ttf ├── fa │ └── FontAwesome.otf └── raleway │ ├── Raleway-Bold.otf │ ├── Raleway-Thin.otf │ ├── Raleway-Heavy.otf │ ├── Raleway-Light.otf │ ├── Raleway-Medium.otf │ ├── Raleway-Regular.otf │ ├── Raleway-ExtraBold.otf │ ├── Raleway-SemiBold.otf │ └── Raleway-ExtraLight.otf ├── images └── preview_stats.png ├── README.md ├── .gitignore ├── resume.tex ├── allanwang-resume.cls └── LICENSE /fonts/lato/Lato-Bla.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/lato/Lato-Bla.ttf -------------------------------------------------------------------------------- /fonts/lato/Lato-Bol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/lato/Lato-Bol.ttf -------------------------------------------------------------------------------- /fonts/lato/Lato-Hai.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/lato/Lato-Hai.ttf -------------------------------------------------------------------------------- /fonts/lato/Lato-Lig.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/lato/Lato-Lig.ttf -------------------------------------------------------------------------------- /fonts/lato/Lato-Reg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/lato/Lato-Reg.ttf -------------------------------------------------------------------------------- /fonts/fa/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/fa/FontAwesome.otf -------------------------------------------------------------------------------- /images/preview_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/images/preview_stats.png -------------------------------------------------------------------------------- /fonts/lato/Lato-BlaIta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/lato/Lato-BlaIta.ttf -------------------------------------------------------------------------------- /fonts/lato/Lato-BolIta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/lato/Lato-BolIta.ttf -------------------------------------------------------------------------------- /fonts/lato/Lato-HaiIta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/lato/Lato-HaiIta.ttf -------------------------------------------------------------------------------- /fonts/lato/Lato-LigIta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/lato/Lato-LigIta.ttf -------------------------------------------------------------------------------- /fonts/lato/Lato-RegIta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/lato/Lato-RegIta.ttf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/raleway/Raleway-Bold.otf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/raleway/Raleway-Thin.otf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/raleway/Raleway-Heavy.otf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/raleway/Raleway-Light.otf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/raleway/Raleway-Medium.otf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/raleway/Raleway-Regular.otf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/raleway/Raleway-ExtraBold.otf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/raleway/Raleway-SemiBold.otf -------------------------------------------------------------------------------- /fonts/raleway/Raleway-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanWang/AllanWang-Resume/HEAD/fonts/raleway/Raleway-ExtraLight.otf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AllanWang-Resume 2 | 3 | Yet another open source template 4 | 5 | This template is heavily based off of [Deedy](https://github.com/deedy/Deedy-Resume) 6 | 7 | Huge thanks to him for opening his version, along with the openfonts. 8 | 9 | ## Preview 10 | 11 | ![Preview](https://www.allanwang.ca/resume-snapshot.png) 12 | 13 | ## Dependencies 14 | 15 | The template will only compile with *XeTeX*. 16 | It also supports magic comments for [LaTeX Workshop](https://github.com/James-Yu/LaTeX-Workshop) (VS-Code). 17 | For minimal setup, import to [Overleaf](https://www.overleaf.com/) and [select XeLaTeX](https://www.overleaf.com/blog/new-feature-select-your-tex-live-compiler-version) as your compiler. 18 | 19 | ## Components 20 | 21 | ### Header 22 | 23 | The header is bundled up with a series of name definitions like so: 24 | 25 | ```latex 26 | \firstname{First} 27 | \lastname{Last} 28 | \phone{(xxx) xxx-xxxx} 29 | \email{me@website.ca} 30 | \website{website.ca} 31 | \github{GithubUsername} 32 | \header 33 | ``` 34 | 35 | ### Statistics 36 | 37 | Statistics will highlight the number of downloads, starts, and forks through optional arguments: 38 | 39 | ```latex 40 | \stats[downloads=66500, stars=26, forks=10] 41 | ``` 42 | 43 | ![Preview](images/preview_stats.png) 44 | 45 | ### Projects 46 | 47 | Project headers are formatted through three arguments: 48 | 49 | The name, the organization, and the date. 50 | 51 | ```latex 52 | \project{Kotlin Android Utils}{Open Source}{Jun 2017 - Present} 53 | ``` 54 | 55 | ### Text Styles 56 | 57 | The cls bundles some formatted text styles, including 58 | 59 | ```latex 60 | \section{Main} 61 | \subsection{Sub} 62 | \descript{Description} 63 | \content{Content} 64 | ``` 65 | 66 | ### Links 67 | 68 | As an Android developer, I've added some helper functions for linking projects. Namely: 69 | 70 | ```latex 71 | \githublink{name}{repo}{text} 72 | \mygithub{repo}[text (repo name be default)] 73 | \playstorelink{package}{text} 74 | ``` 75 | 76 | Links are typically formatted as lowercase to avoid conflicts with the upper case text styles. -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | upload.sh 2 | 3 | ## Core latex/pdflatex auxiliary files: 4 | *.aux 5 | *.lof 6 | *.log 7 | *.lot 8 | *.fls 9 | *.out 10 | *.toc 11 | *.fmt 12 | *.fot 13 | *.cb 14 | *.cb2 15 | 16 | ## Intermediate documents: 17 | *.dvi 18 | *.xdv 19 | *-converted-to.* 20 | # these rules might exclude image files for figures etc. 21 | *.ps 22 | *.eps 23 | *.pdf 24 | 25 | ## Generated if empty string is given at "Please type another file name for output:" 26 | .pdf 27 | 28 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 29 | *.bbl 30 | *.bcf 31 | *.blg 32 | *-blx.aux 33 | *-blx.bib 34 | *.run.xml 35 | 36 | ## Build tool auxiliary files: 37 | *.fdb_latexmk 38 | *.synctex 39 | *.synctex(busy) 40 | *.synctex.gz 41 | *.synctex.gz(busy) 42 | *.pdfsync 43 | 44 | ## Auxiliary and intermediate files from other packages: 45 | # algorithms 46 | *.alg 47 | *.loa 48 | 49 | # achemso 50 | acs-*.bib 51 | 52 | # amsthm 53 | *.thm 54 | 55 | # beamer 56 | *.nav 57 | *.pre 58 | *.snm 59 | *.vrb 60 | 61 | # changes 62 | *.soc 63 | 64 | # cprotect 65 | *.cpt 66 | 67 | # elsarticle (documentclass of Elsevier journals) 68 | *.spl 69 | 70 | # endnotes 71 | *.ent 72 | 73 | # fixme 74 | *.lox 75 | 76 | # feynmf/feynmp 77 | *.mf 78 | *.mp 79 | *.t[1-9] 80 | *.t[1-9][0-9] 81 | *.tfm 82 | 83 | #(r)(e)ledmac/(r)(e)ledpar 84 | *.end 85 | *.?end 86 | *.[1-9] 87 | *.[1-9][0-9] 88 | *.[1-9][0-9][0-9] 89 | *.[1-9]R 90 | *.[1-9][0-9]R 91 | *.[1-9][0-9][0-9]R 92 | *.eledsec[1-9] 93 | *.eledsec[1-9]R 94 | *.eledsec[1-9][0-9] 95 | *.eledsec[1-9][0-9]R 96 | *.eledsec[1-9][0-9][0-9] 97 | *.eledsec[1-9][0-9][0-9]R 98 | 99 | # glossaries 100 | *.acn 101 | *.acr 102 | *.glg 103 | *.glo 104 | *.gls 105 | *.glsdefs 106 | 107 | # gnuplottex 108 | *-gnuplottex-* 109 | 110 | # gregoriotex 111 | *.gaux 112 | *.gtex 113 | 114 | # hyperref 115 | *.brf 116 | 117 | # knitr 118 | *-concordance.tex 119 | # TODO Comment the next line if you want to keep your tikz graphics files 120 | *.tikz 121 | *-tikzDictionary 122 | 123 | # listings 124 | *.lol 125 | 126 | # makeidx 127 | *.idx 128 | *.ilg 129 | *.ind 130 | *.ist 131 | 132 | # minitoc 133 | *.maf 134 | *.mlf 135 | *.mlt 136 | *.mtc[0-9]* 137 | *.slf[0-9]* 138 | *.slt[0-9]* 139 | *.stc[0-9]* 140 | 141 | # minted 142 | _minted* 143 | *.pyg 144 | 145 | # morewrites 146 | *.mw 147 | 148 | # nomencl 149 | *.nlo 150 | 151 | # pax 152 | *.pax 153 | 154 | # pdfpcnotes 155 | *.pdfpc 156 | 157 | # sagetex 158 | *.sagetex.sage 159 | *.sagetex.py 160 | *.sagetex.scmd 161 | 162 | # scrwfile 163 | *.wrt 164 | 165 | # sympy 166 | *.sout 167 | *.sympy 168 | sympy-plots-for-*.tex/ 169 | 170 | # pdfcomment 171 | *.upa 172 | *.upb 173 | 174 | # pythontex 175 | *.pytxcode 176 | pythontex-files-*/ 177 | 178 | # thmtools 179 | *.loe 180 | 181 | # TikZ & PGF 182 | *.dpth 183 | *.md5 184 | *.auxlock 185 | 186 | # todonotes 187 | *.tdo 188 | 189 | # easy-todo 190 | *.lod 191 | 192 | # xindy 193 | *.xdy 194 | 195 | # xypic precompiled matrices 196 | *.xyc 197 | 198 | # endfloat 199 | *.ttt 200 | *.fff 201 | 202 | # Latexian 203 | TSWLatexianTemp* 204 | 205 | ## Editors: 206 | # WinEdt 207 | *.bak 208 | *.sav 209 | 210 | # Texpad 211 | .texpadtmp 212 | 213 | # Kile 214 | *.backup 215 | 216 | # KBibTeX 217 | *~[0-9]* 218 | 219 | # auto folder when using emacs and auctex 220 | /auto/* 221 | 222 | # expex forward references with \gathertags 223 | *-tags.tex 224 | -------------------------------------------------------------------------------- /resume.tex: -------------------------------------------------------------------------------- 1 | % !TEX program = xelatex 2 | 3 | \documentclass[]{allanwang-resume} 4 | \usepackage{fancyhdr} 5 | \pagestyle{fancy} 6 | \fancyhf{} 7 | \usepackage{tikz} 8 | \begin{document} 9 | 10 | \firstname{Allan} 11 | \lastname{Wang} 12 | \phone{(415) 881-0867} 13 | \email{me@allanwang.ca} 14 | \website{allanwang.ca/dev} 15 | \github{AllanWang} 16 | \header 17 | 18 | \hspace*{-\parindent}% 19 | \begin{minipage}[t][][b]{0.33\textwidth}~ 20 | 21 | \resizebox{0.628\textwidth}{!}{ 22 | \newcommand\logoheight{3.19} 23 | \begin{tikzpicture}[line width=2mm, line cap=round, draw opacity = 0.7] 24 | \draw (-1, 0) -- (-2, \logoheight); 25 | \draw (1, 0) -- (2, \logoheight); 26 | \draw [accent] (-1, 0) -- (0, \logoheight); 27 | \draw [accent] (1, 0) -- (0, \logoheight); 28 | \end{tikzpicture} 29 | }~\\ 30 | 31 | % \vspace{0.26cm} 32 | 33 | \section{Education} 34 | \subsection{McGill University} 35 | \descript{BS in Software Engineering} 36 | \content{Sep 2015 - May 2019 | Montreal, QC} 37 | J.W. McConnell Scholarship \\ 38 | \sectionsep 39 | 40 | \section{Course Work} 41 | \subsection{Undergraduate} 42 | \content{Computer Science} 43 | Algorithms \& Data Structures \\ 44 | Software Design \\ 45 | Programming Lang \& Paradigms \\ 46 | Operating Systems \\ 47 | Theory of Computation \\ 48 | Software Engineering Project \\ 49 | \content{Mathematics} 50 | Linear Algebra \& Geometry \\ 51 | Discrete Structures \\ 52 | Calculus \\ 53 | \sectionsep 54 | 55 | \section{Skills} 56 | \subsection{Programming} 57 | \content{Proficient} 58 | Java \tb Kotlin \tb Android \tb Git \tb HTML \tb \LaTeX \\ 59 | \content{Experienced} 60 | Python \tb C \tb JavaScript \tb TypeScript \tb React \tb SCSS \tb Bash \\ 61 | \content{Familiar} 62 | OCaml \tb Elm \tb Go \tb PHP \\ 63 | \sectionsep 64 | 65 | \section{Open Source} 66 | \subsection{Other Projects} 67 | \content{github.com} 68 | \pair{\mygithub{Discord-Bot}}{Discord Bot} \\ 69 | \pair{\mygithub{sNNake-2.1}}{Kotlin Genetic NN} \\ 70 | \pair{\mygithub{AllanBot-Public}[Allanbot]}{Messenger Bot w/ Node.js} \\ 71 | \pair{\githublink{Harvard2017}{matchr}{matchr}}{Hack Harvard 2017} \\ 72 | \pair{\mygithub{VR-McHacks-2017}[VR PlayGround]}{McHacks 2017} \\ 73 | \pair{\mygithub{Capsule}}{Android UI Library} \\ 74 | \pair{\mygithub{SwipeRecyclerView}}{View Library} \\ 75 | \pair{\githublink{jahirfiquitiva}{IconShowcase}{IconShowcase}}{Icon Pack Library} \\ 76 | 77 | \end{minipage} 78 | \hfill 79 | \begin{minipage}[t]{0.66\textwidth} 80 | 81 | \section{Experience} 82 | 83 | \project{UX Engineer III}{Google}{July 2019 - Present} 84 | \vspace{\topsep} % Hacky fix for awkward extra vertical space 85 | \begin{tightemize} 86 | \item Lead large scale UI component migrations to support new UX paradigms. 87 | \item Created libraries across Comms Apps to facilitate UX-Eng alignment. 88 | \item Contributed to the broader Google community with helper tools, code review, UX input, and Kotlin readability. 89 | \end{tightemize} 90 | 91 | \project{UX Engineer Intern}{Google}{May 2018 - Aug 2018} 92 | \begin{tightemize} 93 | \item Built various native Android prototypes for the Comms UX team to determine feasibility and build consensus on new product ideas. 94 | \item Supported a cafe study alongside UX researchers and interaction designers by building demo prototypes under tight deadlines. 95 | \item Created helper classes and worked with the engineering team to bring polished motion to production code. 96 | \end{tightemize} 97 | 98 | \project{Server Admin}{Computer Taskforce}{May 2017 - May 2018} 99 | \begin{tightemize} 100 | \item Maintained \& improved printing \& web services for students at McGill. 101 | \item Managed VMs \& REST APIs used within the services. 102 | \item Focused on improving workflow through continuous deployment \& on code reuse by being an open source organization. 103 | \end{tightemize} 104 | 105 | \project{Tutor}{McGill Tutoring Service}{May 2016 - Dec 2017} 106 | \begin{tightemize} 107 | \item Tutored other students in Math \& Computer Science. 108 | \item Created a website with public notes for various classes. 109 | \item Moderated \& helped students in previously taken courses on Facebook on my own time. 110 | \end{tightemize} 111 | 112 | \sectionsep 113 | \section{Projects} 114 | 115 | \project{\mygithub{KAU}[Kotlin Android Utils]}{Android Library}{Jun 2017 - Present} 116 | \begin{tightemize} 117 | \item Created a large collection of Android extensions using Kotlin's DSL patterns to simplify method calls. 118 | \item Implemented pure Kotlin functions for concurrent \& lazy loading. 119 | \item Created several highly extensible UI \& utility components through delegation patterns. 120 | \item Amassed 184 stars on GitHub. 121 | \end{tightemize} 122 | 123 | \project{\mygithub{Frost-for-Facebook}[Frost for Facebook]}{Web Wrapper}{May 2017 - Present} 124 | \begin{tightemize} 125 | \item Created web wrapper adding native features to Facebook's mobile site. 126 | \item Built upon reactive programming to deal with multithreaded loading. 127 | \item Brought material design \& newer Android SDK standards to Facebook. 128 | \item Amassed 572 stars on GitHub, and actively used through F-Droid. 129 | \end{tightemize} 130 | 131 | \project{TEPID}{Printing Service}{Jun 2016 - Present} 132 | \begin{tightemize} 133 | \item Contributed to a printing system used by over 6k students at McGill, consisting of a REST API, client, CouchDb database, \& webserver. 134 | \item Maximized code reuse by modularizing shared components, abstracting implementations, and delivering through gradle and JitPack. 135 | \item Wrote an Android counterpart to help manage the print jobs. 136 | \end{tightemize} 137 | 138 | \end{minipage} 139 | \end{document} 140 | -------------------------------------------------------------------------------- /allanwang-resume.cls: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2 | % 3 | % Changelog 4 | % 5 | % v1.1 6 | % * Added \stats function 7 | % * Added lots of commands for links 8 | % * Added color options 9 | % 10 | % v1.0 11 | % * Initial release 12 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 13 | 14 | % Intro Options 15 | \ProvidesClass{allanwang-resume}[2021/07/12 CV class] 16 | \NeedsTeXFormat{LaTeX2e} 17 | \DeclareOption{print}{\def\@cv@print{}} 18 | \DeclareOption*{% 19 | \PassOptionsToClass{\CurrentOption}{article} 20 | } 21 | \ProcessOptions\relax 22 | \LoadClass{article} 23 | 24 | % Variable Declarations 25 | % Do the branching between * and normal version 26 | \newcommand{\DeclareAuthorVariable}{% 27 | \@ifstar{\ting@DeclareAuthorVariable{\ting@mandatory@var}} 28 | {\ting@DeclareAuthorVariable{\ting@optional@var}}% 29 | } 30 | 31 | % The main command; the internal version of \foo is \ting@foo 32 | % The macro \ting@foo is initialized to give an error or an info 33 | % message when used, so if the user doesn't provide a value for a 34 | % mandatory variable, we'll catch the issue 35 | \newcommand{\ting@DeclareAuthorVariable}[2]{% 36 | \@namedef{ting@#2}{#1{#2}}% 37 | \@namedef{#2}##1{\@namedef{ting@#2}{##1}}% 38 | } 39 | % The error and info messages 40 | \newcommand{\ting@mandatory@var}[1]{% 41 | \ClassError{ting} 42 | {Missing value for mandatory variable 43 | \expandafter\string\csname#1\endcsname} 44 | {You have to provide a value with 45 | \expandafter\string\csname#1\endcsname{...}}% 46 | } 47 | \newcommand{\ting@optional@var}[1]{% 48 | \ClassInfo{ting} 49 | {Missing value for optional variable 50 | \expandafter\string\csname#1\endcsname}% 51 | } 52 | 53 | \DeclareAuthorVariable*{firstname} 54 | \DeclareAuthorVariable*{lastname} 55 | 56 | \DeclareAuthorVariable*{github} 57 | \DeclareAuthorVariable*{email} 58 | \DeclareAuthorVariable*{website} 59 | \DeclareAuthorVariable*{phone} 60 | 61 | \usepackage{array,keycommand} 62 | 63 | % Package Imports 64 | \usepackage[hmargin=1.25cm, vmargin=0.75cm]{geometry} 65 | \usepackage[hidelinks]{hyperref} 66 | 67 | % Publications 68 | \usepackage{cite} 69 | \renewcommand\refname{\vskip -1.5cm} 70 | 71 | % Color definitions 72 | \usepackage[usenames,dvipsnames]{xcolor} 73 | \definecolor{date}{HTML}{666666} 74 | \definecolor{primary}{HTML}{2b2b2b} 75 | \definecolor{headings}{HTML}{6A6A6A} 76 | \definecolor{subheadings}{HTML}{333333} 77 | \definecolor{accent}{HTML}{224d93} 78 | 79 | % Set main fonts 80 | \usepackage{fontspec} 81 | \setmainfont[Color=primary, Path = fonts/lato/,BoldItalicFont=Lato-RegIta,BoldFont=Lato-Reg,ItalicFont=Lato-LigIta]{Lato-Lig} 82 | \setsansfont[Scale=MatchLowercase,Mapping=tex-text, Path = fonts/raleway/]{Raleway-ExtraLight} 83 | 84 | % Font Awesome 85 | \defaultfontfeatures{ 86 | Path = fonts/fa/ } 87 | \usepackage{fontawesome} 88 | \usepackage{hyperref,xparse} 89 | 90 | % Date command 91 | \usepackage[absolute]{textpos} 92 | \usepackage[USenglish]{isodate} 93 | \setlength{\TPHorizModule}{1mm} 94 | \setlength{\TPVertModule}{1mm} 95 | \newcommand{\lastupdated}{\begin{textblock}{60}(155,5) 96 | \color{date}\fontspec[Path = fonts/raleway/]{Raleway-ExtraLight}\fontsize{8pt}{10pt}\selectfont 97 | Last Updated on \today 98 | \end{textblock}} 99 | 100 | % Name command 101 | \newcommand{\namesection}[2]{ 102 | \fontsize{40pt}{60pt} 103 | \fontspec[Path = fonts/lato/]{Lato-Hai}\selectfont #1 104 | \fontspec[Path = fonts/lato/]{Lato-Lig}\selectfont #2 105 | } 106 | 107 | \newcommand{\headertable}[4]{ 108 | \fontspec[Path = fonts/lato/]{Lato-Lig} 109 | \fontsize{12pt}{12pt} 110 | \selectfont 111 | \renewcommand{\arraystretch}{2} 112 | \begin{tabular}{l l} 113 | #1 & #2 \\ 114 | #3 & #4 115 | \end{tabular} 116 | } 117 | 118 | \newcommand{\githublink}[3]{\lowercase{\href{https://www.github.com/#1/#2}}{#3}} 119 | 120 | \NewDocumentCommand{\mygithub}{mo} 121 | {\githublink{\ting@github}{#1}{\IfValueTF{#2}{#2}{#1}}} 122 | 123 | \newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}} 124 | \newcommand{\header}[0]{ 125 | \hspace*{-\parindent}% 126 | \begin{minipage}{0.4\textwidth} 127 | \newdimen\headerheight 128 | \headerheight=\textheight 129 | \namesection{\ting@firstname}{\ting@lastname} 130 | \end{minipage} 131 | \begin{minipage}{0.6\textwidth} 132 | \hfill 133 | \headertable{\textcolor{accent}{\faPhone} \, \ting@phone} 134 | {\href{https://www.\ting@website}{\textcolor{accent}{\faChain} \, \ting@website}} 135 | {\href{mailto:\ting@email}{\textcolor{accent}{\faEnvelope} \, \ting@email}} 136 | {\href{https://www.github.com/\ting@github}{\textcolor{accent}{\faGithub} \, github.com/\ting@github}} 137 | \end{minipage} \\ 138 | } 139 | 140 | % Section seperators 141 | \usepackage{titlesec} 142 | \titlespacing{\section}{0pt}{0pt}{0pt} 143 | \titlespacing{\subsection}{0pt}{0pt}{0pt} 144 | \newcommand{\sectionsep}{\vspace{8pt}} 145 | 146 | % Headings command 147 | \titleformat{\section}{\color{headings} 148 | \scshape\fontspec[Path = fonts/lato/]{Lato-Lig}\fontsize{16pt}{24pt}\selectfont \raggedright\uppercase}{}{0em}{} 149 | 150 | % Subeadings command 151 | \titleformat{\subsection}{ 152 | \color{subheadings}\fontspec[Path = fonts/lato/]{Lato-Bol}\fontsize{12pt}{12pt}\selectfont\bfseries\uppercase}{}{0em}{} 153 | 154 | \newcommand{\runsubsection}[1]{ 155 | \color{subheadings}\fontspec[Path = fonts/lato/]{Lato-Bol}\fontsize{12pt}{12pt}\selectfont\bfseries\uppercase {#1} \normalfont} 156 | 157 | 158 | \newcommand{\project}[3]{ 159 | \color{subheadings}\fontspec[Path = fonts/lato/]{Lato-Bol}\fontsize{12pt}{12pt}\selectfont\bfseries\uppercase {#1} \normalfont 160 | \color{subheadings}\raggedright\scshape\fontspec[Path = fonts/raleway/]{Raleway-Medium}\fontsize{11pt}{13pt} 161 | \selectfont {| \, \textcolor{accent}{#2} \hfill \textcolor{date}{#3} \\} \normalfont} 162 | 163 | \newcommand{\involvement}[2]{ 164 | \color{subheadings}\fontspec[Path = fonts/lato/]{Lato-Bol}\fontsize{12pt}{12pt}\selectfont\bfseries\uppercase {#1} \normalfont 165 | \color{subheadings}\raggedright\scshape\fontspec[Path = fonts/raleway/]{Raleway-Medium}\fontsize{11pt}{13pt} 166 | \selectfont { \hfill #2 \\} \normalfont} 167 | 168 | % Descriptors command 169 | \newcommand{\descript}[1]{ 170 | \color{subheadings}\raggedright\scshape\fontspec[Path = fonts/raleway/]{Raleway-Medium}\fontsize{11pt}{13pt}\selectfont {#1 \\} \normalfont} 171 | 172 | \newcommand{\content}[1]{ 173 | \color{accent}\raggedright\fontspec[Path = fonts/raleway/]{Raleway-Medium}\fontsize{10pt}{12pt}\selectfont #1\\ \normalfont} 174 | 175 | % Bullet Lists with fewer gaps command 176 | \newenvironment{tightemize}{ 177 | \vspace{-0.7\topsep}\begin{itemize}\itemsep1pt \parskip0pt \parsep0pt} 178 | {\end{itemize}\vspace{-0.7\topsep}} 179 | 180 | \newcommand{\tb}[0]{\textbullet{\,}} 181 | 182 | \newkeycommand{\stats}[downloads=0,stars=0, forks=0]{ 183 | \ifnum\commandkey{downloads} > 0 \textcolor{date}{\faDownload} \, \commandkey{downloads} \quad \fi 184 | \ifnum\commandkey{stars} > 0 \textcolor{date}{\faStar} \, \commandkey{stars} \quad \fi 185 | \ifnum\commandkey{forks} > 0 \textcolor{date}{\faCodeFork} \, \commandkey{forks} \quad \fi 186 | } 187 | 188 | \newcommand{\pair}[2]{#1 \, {\addfontfeature{Color=date}| \, #2}} 189 | 190 | \newcommand{\playstorelink}[2]{\lowercase{\href{https://play.google.com/store/apps/details?id=#1}}{#2}} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | --------------------------------------------------------------------------------