diff --git a/.gitignore b/.gitignore
index 4a9b93d..e2c49a0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-### TeX ###
+
## Core latex/pdflatex auxiliary files:
*.aux
*.lof
@@ -7,18 +7,215 @@
*.fls
*.out
*.toc
+*.fmt
+*.fot
+*.cb
+*.cb2
## Intermediate documents:
*.dvi
*-converted-to.*
-<<<<<<< HEAD
+# these rules might exclude image files for figures etc.
+# *.ps
+# *.eps
+# *.pdf
-### Editor ###
-## Vim & Emacs temp files:
-.*sw[op]
-*~
+## Generated if empty string is given at "Please type another file name for output:"
+.pdf
-### Mac OS X ###
-## Mac OS X metadata files:
-*.DS_Store
+## Bibliography auxiliary files (bibtex/biblatex/biber):
+*.bbl
+*.bcf
+*.blg
+*-blx.aux
+*-blx.bib
+*.run.xml
+## Build tool auxiliary files:
+*.fdb_latexmk
+*.synctex
+*.synctex(busy)
+*.synctex.gz
+*.synctex.gz(busy)
+*.pdfsync
+
+## Auxiliary and intermediate files from other packages:
+# algorithms
+*.alg
+*.loa
+
+# achemso
+acs-*.bib
+
+# amsthm
+*.thm
+
+# beamer
+*.nav
+*.pre
+*.snm
+*.vrb
+
+# changes
+*.soc
+
+# cprotect
+*.cpt
+
+# elsarticle (documentclass of Elsevier journals)
+*.spl
+
+# endnotes
+*.ent
+
+# fixme
+*.lox
+
+# feynmf/feynmp
+*.mf
+*.mp
+*.t[1-9]
+*.t[1-9][0-9]
+*.tfm
+
+#(r)(e)ledmac/(r)(e)ledpar
+*.end
+*.?end
+*.[1-9]
+*.[1-9][0-9]
+*.[1-9][0-9][0-9]
+*.[1-9]R
+*.[1-9][0-9]R
+*.[1-9][0-9][0-9]R
+*.eledsec[1-9]
+*.eledsec[1-9]R
+*.eledsec[1-9][0-9]
+*.eledsec[1-9][0-9]R
+*.eledsec[1-9][0-9][0-9]
+*.eledsec[1-9][0-9][0-9]R
+
+# glossaries
+*.acn
+*.acr
+*.glg
+*.glo
+*.gls
+*.glsdefs
+
+# gnuplottex
+*-gnuplottex-*
+
+# gregoriotex
+*.gaux
+*.gtex
+
+# hyperref
+*.brf
+
+# knitr
+*-concordance.tex
+# TODO Comment the next line if you want to keep your tikz graphics files
+*.tikz
+*-tikzDictionary
+
+# listings
+*.lol
+
+# makeidx
+*.idx
+*.ilg
+*.ind
+*.ist
+
+# minitoc
+*.maf
+*.mlf
+*.mlt
+*.mtc[0-9]*
+*.slf[0-9]*
+*.slt[0-9]*
+*.stc[0-9]*
+
+# minted
+_minted*
+*.pyg
+
+# morewrites
+*.mw
+
+# nomencl
+*.nlo
+
+# pax
+*.pax
+
+# pdfpcnotes
+*.pdfpc
+
+# sagetex
+*.sagetex.sage
+*.sagetex.py
+*.sagetex.scmd
+
+# scrwfile
+*.wrt
+
+# sympy
+*.sout
+*.sympy
+sympy-plots-for-*.tex/
+
+# pdfcomment
+*.upa
+*.upb
+
+# pythontex
+*.pytxcode
+pythontex-files-*/
+
+# thmtools
+*.loe
+
+# TikZ & PGF
+*.dpth
+*.md5
+*.auxlock
+
+# todonotes
+*.tdo
+
+# easy-todo
+*.lod
+
+# xindy
+*.xdy
+
+# xypic precompiled matrices
+*.xyc
+
+# endfloat
+*.ttt
+*.fff
+
+# Latexian
+TSWLatexianTemp*
+
+## Editors:
+# WinEdt
+*.bak
+*.sav
+
+# Texpad
+.texpadtmp
+
+# Kile
+*.backup
+
+# KBibTeX
+*~[0-9]*
+
+# auto folder when using emacs and auctex
+/auto/*
+
+# expex forward references with \gathertags
+*-tags.tex
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..59629e9
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,26 @@
+// Place your settings in this file to overwrite default and user settings.
+{
+ "latex-workshop.latex.toolchain": [
+ {
+ "command": "xelatex",
+ "args": [
+ "-synctex=1",
+ "-interaction=nonstopmode",
+ "-file-line-error",
+ "-pdf",
+ "%DOC%"
+ ]
+ }
+ ],
+
+ "files.exclude": {
+ "**/.git": true,
+ "**/.svn": true,
+ "**/.hg": true,
+ "**/CVS": true,
+ "**/.DS_Store": true,
+ "**/*.aux": true,
+ "**/*.out": true,
+ "**/*.fls": true
+ }
+}
\ No newline at end of file
diff --git a/Makefile b/Makefile
deleted file mode 100644
index ae1a12a..0000000
--- a/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-.PHONY: examples
-
-CC = xelatex
-EXAMPLES_DIR = examples
-RESUME_DIR = examples/resume
-CV_DIR = examples/cv
-RESUME_SRCS = $(shell find $(RESUME_DIR) -name '*.tex')
-CV_SRCS = $(shell find $(CV_DIR) -name '*.tex')
-
-examples: $(foreach x, coverletter cv resume, $x.pdf)
-
-resume.pdf: $(EXAMPLES_DIR)/resume.tex $(RESUME_SRCS)
- $(CC) -output-directory=$(EXAMPLES_DIR) $<
-
-cv.pdf: $(EXAMPLES_DIR)/cv.tex $(CV_SRCS)
- $(CC) -output-directory=$(EXAMPLES_DIR) $<
-
-coverletter.pdf: $(EXAMPLES_DIR)/coverletter.tex
- $(CC) -output-directory=$(EXAMPLES_DIR) $<
-
-clean:
- rm -rf $(EXAMPLES_DIR)/*.pdf
diff --git a/README.md b/README.md
index 4aacbf9..bf25083 100644
--- a/README.md
+++ b/README.md
@@ -1,99 +1 @@
-
-
-
-
-
- Awesome CV
-
-
-
- LaTeX template for your outstanding job application
-
-
-
-
-
-
-## What is Awesome CV?
-
-**Awesome CV** is LaTeX template for a **CV(Curriculum Vitae)**, **Résumé** or **Cover Letter** inspired by [Fancy CV](https://www.sharelatex.com/templates/cv-or-resume/fancy-cv). It is easy to customize your own template, especially since it is really written by a clean, semantic markup.
-
-
-## Preview
-
-#### Résumé
-
-You can see [PDF](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf)
-
-| Page. 1 | Page. 2 |
-|:---:|:---:|
-| [![Résumé](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume-0.png)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf) | [![Résumé](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume-1.png)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf) |
-
-#### Cover Letter
-
-You can see [PDF](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter.pdf)
-
-| Without Sections | With Sections |
-|:---:|:---:|
-| [![Cover Letter(Traditional)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter-0.png)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter.pdf) | [![Cover Letter(Awesome)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter-1.png)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter.pdf) |
-
-
-## Quick Start
-
-* [**Edit Résumé on OverLeaf.com**](https://www.overleaf.com/latex/templates/awesome-cv/tvmzpvdjfqxp)
-* [**Edit Résumé on ShareLaTeX.com**](https://www.sharelatex.com/templates/cv-or-resume/awesome-cv)
-* [**Edit Cover Letter on OverLeaf.com**](https://www.overleaf.com/latex/templates/awesome-cv-cover-letter/pfzzjspkthbk)
-* [**Edit Cover Letter on ShareLaTeX.com**](https://www.sharelatex.com/templates/cover-letters/awesome-cv-cover-letter)
-
-**_Note:_ Above services do not guarantee up-to-date source code of Awesome CV**
-
-
-## How to Use
-
-#### Requirements
-
-A full TeX distribution is assumed. [Various distributions for different operating systems (Windows, Mac, \*nix) are available](http://tex.stackexchange.com/q/55437) but TeX Live is recommended.
-You can [install TeX from upstream](http://tex.stackexchange.com/q/1092) (recommended; most up-to-date) or use `sudo apt-get install texlive-full` if you really want that. (It's generally a few years behind.)
-
-#### Usage
-
-At a command prompt, run
-
-```bash
-$ xelatex {your-cv}.tex
-```
-
-This should result in the creation of ``{your-cv}.pdf``
-
-
-## Credit
-
-[**LaTeX**](http://www.latex-project.org) is a fantastic typesetting program that a lot of people use these days, especially the math and computer science people in academia.
-
-[**LaTeX FontAwesome**](https://github.com/furl/latex-fontawesome) is bindings for FontAwesome icons to be used in XeLaTeX.
-
-[**Roboto**](https://github.com/google/roboto) is the default font on Android and ChromeOS, and the recommended font for Google’s visual language, Material Design.
-
-[**Source Sans Pro**](https://github.com/adobe-fonts/source-sans-pro) is a set of OpenType fonts that have been designed to work well in user interface (UI) environments.
-
-
-## Contact
-
-You are free to take my `.tex` file and modify it to create your own resume. Please don't use my resume for anything else without my permission, though!
-
-If you have any questions, feel free to join me at [`#posquit0` on Freenode](irc://irc.freenode.net/posquit0) and ask away. Click [here](https://kiwiirc.com/client/irc.freenode.net/posquit0) to connect.
-
-Good luck!
+# My cv
\ No newline at end of file
diff --git a/awesome-cv.cls b/awesome-cv.cls
index d1c1074..dc00a72 100644
--- a/awesome-cv.cls
+++ b/awesome-cv.cls
@@ -201,8 +201,8 @@
% For elements of entry
\newcommand*{\entrytitlestyle}[1]{{\fontsize{10pt}{1em}\bodyfont\bfseries\color{darktext} #1}}
-\newcommand*{\entrypositionstyle}[1]{{\fontsize{8pt}{1em}\bodyfont\scshape\color{graytext} #1}}
-\newcommand*{\entrydatestyle}[1]{{\fontsize{8pt}{1em}\bodyfontlight\slshape\color{graytext} #1}}
+\newcommand*{\entrypositionstyle}[1]{{\fontsize{9pt}{1em}\bodyfont\scshape\color{graytext} #1}}
+\newcommand*{\entrydatestyle}[1]{{\fontsize{9pt}{1em}\bodyfontlight\slshape\color{graytext} #1}}
\newcommand*{\entrylocationstyle}[1]{{\fontsize{9pt}{1em}\bodyfontlight\slshape\color{awesome} #1}}
\newcommand*{\descriptionstyle}[1]{{\fontsize{9pt}{1em}\bodyfontlight\upshape\color{text} #1}}
@@ -575,6 +575,7 @@
\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
\multicolumn{2}{L{\textwidth}}{\descriptionstyle{#5}}
\end{tabular*}%
+ \vspace{0.3em}
}
% Define an environment for cvsubentry
diff --git a/circle.yml b/circle.yml
deleted file mode 100644
index 35c83a9..0000000
--- a/circle.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-## Customize the test machine
-machine:
- timezone:
- Asia/Seoul
-
- services:
- - docker
-
-## Customize compile commands
-test:
- override:
- - docker run --rm -w "/doc" -v "$PWD":/doc thomasweise/texlive make
- post:
- - mv examples/*.pdf $CIRCLE_ARTIFACTS/
\ No newline at end of file
diff --git a/examples/coverletter.tex b/coverletter.tex
similarity index 100%
rename from examples/coverletter.tex
rename to coverletter.tex
diff --git a/cv.pdf b/cv.pdf
new file mode 100644
index 0000000..9800775
Binary files /dev/null and b/cv.pdf differ
diff --git a/examples/cv.tex b/cv.tex
similarity index 61%
rename from examples/cv.tex
rename to cv.tex
index 9a5ce93..eb83198 100644
--- a/examples/cv.tex
+++ b/cv.tex
@@ -1,18 +1,5 @@
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
-% Awesome CV LaTeX Template for CV/Resume
-%
-% This template has been downloaded from:
-% https://github.com/posquit0/Awesome-CV
-%
-% Author:
-% Claud D. Park
-% http://www.posquit0.com
-%
-% Template license:
-% CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)
-%
-
%-------------------------------------------------------------------------------
% CONFIGURATIONS
@@ -20,6 +7,8 @@
% A4 paper size by default, use 'letterpaper' for US letter
\documentclass[11pt, a4paper]{awesome-cv}
+\usepackage{datetime}
+
% Configure page margins with geometry
\geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}
@@ -27,11 +16,10 @@
\fontdir[fonts/]
% Color for highlights
-% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange
-% awesome-nephritis, awesome-concrete, awesome-darknight
-\colorlet{awesome}{awesome-red}
+% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange awesome-nephritis, awesome-concrete, awesome-darknight
+%\colorlet{awesome}{awesome-skyblue}
% Uncomment if you would like to specify your own color
-% \definecolor{awesome}{HTML}{CA63A8}
+\definecolor{awesome}{HTML}{4084FF}
% Colors for text
% Uncomment if you would like to specify your own color
@@ -44,33 +32,32 @@
\setbool{acvSectionColorHighlight}{true}
% If you would like to change the social information separator from a pipe (|) to something else
+\newcommand{\dotsep}{\enskip$\cdot$\enskip}
\renewcommand{\acvHeaderSocialSep}{\quad\textbar\quad}
-
+\renewcommand{\acvHeaderSocialSep}{\quad\textbar\quad}
+\renewcommand{\acvSectionContentTopSkip}{5mm}
%-------------------------------------------------------------------------------
% PERSONAL INFORMATION
% Comment any of the lines below if they are not required
%-------------------------------------------------------------------------------
-% Available options: circle|rectangle,edge/noedge,left/right
-% \photo{./examples/profile.png}
-\name{Claud D.}{Park}
-\position{Software Engineer{\enskip\cdotp\enskip}Security Expert}
-\address{246-1002, Gwangmyeongmayrouge Apt. 86, Cheongna lime-ro, Seo-gu, Incheon-si, 404-180, Rep. of KOREA}
-\mobile{(+82) 10-9030-1843}
-\email{posquit0.bj@gmail.com}
-\homepage{www.posquit0.com}
-\github{posquit0}
-\linkedin{posquit0}
-% \gitlab{gitlab-id}
-% \stackoverflow{SO-id}{SO-name}
-% \twitter{@twit}
-% \skype{skype-id}
-% \reddit{reddit-id}
-% \extrainfo{extra informations}
-
-\quote{``Be the change that you want to see in the world."}
+\photo[circle,noedge,left]{./profile}
+\name{José}{Sá}
+\position{\MakeUppercase{M.Sc. Theoretical Physics}}
+\address{Rua D. Pedro V, 223\dotsep 4150-603 Porto\dotsep Portugal}
+\mobile{(+351) 913125218}
+\email{jose.sa@fc.up.pt}
+%\homepage{}
+\github{jose-a-sa}
+%\linkedin{}
+%\stackoverflow{SO-id}{SO-name}
+%\twitter{}
+\skype{jose.sa17}
+%\reddit{}
+%\extrainfo{}
+%\quote{``Must be the change that you want to see in the world."}
%-------------------------------------------------------------------------------
\begin{document}
@@ -79,26 +66,34 @@
% Give optional argument to change alignment(C: center, L: left, R: right)
\makecvheader
+\renewcommand{\today}{
+\ifcase \month \or JANUARY\or FEBRUARY\or MARCH\or APRIL\or MAY
+\or JUNE\or JULY\or AUGUST\or SEPTEMBER\or OCTOBER\or NOVEMBER\or DECEMBER\fi \space \number\day,
+\space\number\year}
+
% Print the footer with 3 arguments(, , )
% Leave any of these blank if they are not needed
\makecvfooter
- {\today}
- {Claud D. Park~~~·~~~Curriculum Vitae}
- {\thepage}
+{\today}
+{José Sá \dotsep Curriculum Vitae}
+{\small\thepage}
%-------------------------------------------------------------------------------
% CV/RESUME CONTENT
% Each section is imported separately, open each file in turn to modify content
%-------------------------------------------------------------------------------
-\input{cv/education.tex}
-\input{cv/skills.tex}
-\input{cv/experience.tex}
-\input{cv/extracurricular.tex}
-\input{cv/honors.tex}
-\input{cv/presentation.tex}
-\input{cv/writing.tex}
-\input{cv/committees.tex}
+
+\input{cv/education}
+%\input{cv/publications}
+\input{cv/skills}
+\input{cv/research}
+\input{cv/conferences}
+%\input{cv/awards}
+\input{cv/awards}
+%\input{cv/teaching}
+%\input{cv/talks}
+%\input{cv/outreach}
%-------------------------------------------------------------------------------
diff --git a/cv/awards.tex b/cv/awards.tex
new file mode 100644
index 0000000..68c0462
--- /dev/null
+++ b/cv/awards.tex
@@ -0,0 +1,19 @@
+% !TeX root = ../cv.tex
+
+\cvsection{Awards}
+
+\begin{cventries}
+
+ \cventry
+ {AWARD ({\normalsize 1}ST PRIZE - WEBSITE CATEGORY) }
+ {À Descoberta das Regiões Polares}
+ {Ponte da Barca, Portugal}
+ {2007}
+ {
+ \begin{cvitems} % Description(s) bullet points
+ \item {National contest organized under the ``LATITUDE60!'' project, due to the International Polar Year 2007/2008}
+ \item {Awarded with ``II Estágio de Campo na Serra da Estrela''}
+ \end{cvitems}
+ }
+
+\end{cventries}
\ No newline at end of file
diff --git a/cv/conferences.tex b/cv/conferences.tex
new file mode 100644
index 0000000..0e5d9b5
--- /dev/null
+++ b/cv/conferences.tex
@@ -0,0 +1,45 @@
+% !TeX root = ../cv.tex
+
+\cvsection{Conferences \& schools}
+
+\begin{cventries}
+
+ \cventry
+ {SUMMER SCHOOL}
+ {8th Mathematica Summer School on Theoretical Physics - Random Matrix Theory and applications}
+ {Berlin, Germany} % Location
+ {Aug. 15th 2016 - Aug. 19th 2016} % Date(s)
+ {
+ \begin{cvitems} % Description(s) bullet points
+ \item {Held at Hulbolt University, a week before IGST2016}
+ \item {Main lecturers included Nikolay Gromov (King's College London), Vladimir Kazakov (ENS Paris), Alexander Migdal (Migdal LLC) and others.}
+ \end{cvitems}
+ }
+
+ \cventry
+ {SUMMER SCHOOL}
+ {2015 European School on Magnetism - From basic magnetic concepts to spin currents}
+ {Cluj-Napoca, Romania} % Location
+ {Aug. 24th 2015 - Sep. 4th 2015} % Date(s)
+ {
+ \begin{cvitems} % Description(s) bullet points
+ \item {Organizing committee included CEA-Grenoble center, NEEL Institute, Babes-Bolyai University and Technical University of Cluj-Napoca}
+ \item {Main lecturers include Michael Coey (Trinity College Dublin), Steve Blundell (University of Oxford) and others.}
+ \end{cvitems}
+ }
+
+ \cventry
+ {FIELD INTERSHIP}
+ {II Estágio de Campo na Serra da Estrela} % Title
+ {Serra da Estrela, Portugal} % Location
+ {Aug. 24th 2015 - Sep. 4th 2015} % Date(s)
+ {
+ \begin{cvitems} % Description(s) bullet points
+ \item {Awarded students were given the opportunity of talking and living for 3 days with scientists that worked on polar regions}
+ \item {Workshops on different topics like Arctic/Antarctic biology and geologic formation of \emph{Serra da Estrela}}
+ \item {Coordinated by Gonçalo Vieira (Universidade de Lisboa) and with the participation of marine biologist José C. Xavier (Universidade de Coimbra), Vanessa Batista (Ciência Viva) and Alexandre Trindade (Universidade de Lisboa)}
+ \end{cvitems}
+ }
+
+
+\end{cventries}
\ No newline at end of file
diff --git a/cv/education.tex b/cv/education.tex
new file mode 100644
index 0000000..30185b6
--- /dev/null
+++ b/cv/education.tex
@@ -0,0 +1,43 @@
+% !TeX root = ../cv.tex
+
+\cvsection{Education}
+
+\begin{cventries}
+
+ \cventry
+ {M.SC. IN PHYSICS} % Degree
+ {Universidade do Porto} % Institution
+ {Porto, Portugal} % Location
+ {Setp. 2015 - PRESENT} % Date(s)
+ {
+ \begin{cvitems} % Description(s) bullet points
+ \item {Currently following the theoretical branch and taking some mathematics courses}
+ \item {Current classification \textbf{17/20}}
+ \end{cvitems}
+ }
+
+ \cventry
+ {B.S. IN PHYSICS} % Degree
+ {Universidade do Porto} % Institution
+ {Porto, Portugal} % Location
+ {Sept. 2011 - Jul. 2015} % Date(s)
+ {
+ \begin{cvitems} % Description(s) bullet points
+ \item {National classification \textbf{17/20}, post-Bologna}
+ \item {Minor in Physics}
+ \end{cvitems}
+ }
+
+ \cventry
+ {{\normalsize 12}TH GRADE} % Degree
+ {Agrupamento Vertical de Escolas de Ponte da Barca} % Institution
+ {Ponte da Barca, Portugal} % Location
+ {Sept. 2008 - Jul. 2011} % Date(s)
+ {
+ \begin{cvitems} % Description(s) bullet points
+ \item {National classification \textbf{18/20}}
+ %\item {Main subjects: \emph{Mathematics, Portuguese, English, Physics, Chemistry, Biology, Geology}}
+ \end{cvitems}
+ }
+
+\end{cventries}
diff --git a/cv/outreach.tex b/cv/outreach.tex
new file mode 100644
index 0000000..f214e7c
--- /dev/null
+++ b/cv/outreach.tex
@@ -0,0 +1 @@
+% !TeX root = ../cv.tex
\ No newline at end of file
diff --git a/cv/publications.tex b/cv/publications.tex
new file mode 100644
index 0000000..f214e7c
--- /dev/null
+++ b/cv/publications.tex
@@ -0,0 +1 @@
+% !TeX root = ../cv.tex
\ No newline at end of file
diff --git a/cv/research.tex b/cv/research.tex
new file mode 100644
index 0000000..93cd185
--- /dev/null
+++ b/cv/research.tex
@@ -0,0 +1,16 @@
+% !TeX root = ../cv.tex
+
+\cvsection{Research}
+
+\begin{cventries}
+
+ \cventry
+ {Supervised by João Rosa from Universidade de Aveiro}
+ {Study of angular anisotropies in the superradiant modes}
+ {Porto, Portugal} % Location
+ {Oct. 2016 - PRESENT} % Date(s)
+ {
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+ }
+
+\end{cventries}
\ No newline at end of file
diff --git a/cv/skills.tex b/cv/skills.tex
new file mode 100644
index 0000000..bcf847c
--- /dev/null
+++ b/cv/skills.tex
@@ -0,0 +1,22 @@
+% !TeX root = ../cv.tex
+
+\cvsection{Skills}
+
+\begin{cvskills}
+
+ \cvskill{Programming Languages}
+ {Python, C/C++, Java, Actionscript 3}
+
+ \cvskill{Language Libraries}
+ {GNU Scientific Library, Apache Flex}
+
+ \cvskill{Symbolic/Numeric software}
+ {Advanced training with Wolfram Mathematica}
+
+ \cvskill{Design tools}
+ {Some experience with Photoshop, Illustrator, InDesign (Abobe suite)}
+
+ \cvskill{Languages}
+ {Portuguese(Native), English, Spanish}
+
+\end{cvskills}
diff --git a/cv/talks.tex b/cv/talks.tex
new file mode 100644
index 0000000..e69de29
diff --git a/cv/teaching.tex b/cv/teaching.tex
new file mode 100644
index 0000000..f214e7c
--- /dev/null
+++ b/cv/teaching.tex
@@ -0,0 +1 @@
+% !TeX root = ../cv.tex
\ No newline at end of file
diff --git a/examples/awesome-cv.cls b/examples/awesome-cv.cls
deleted file mode 120000
index 29e4a2f..0000000
--- a/examples/awesome-cv.cls
+++ /dev/null
@@ -1 +0,0 @@
-../awesome-cv.cls
\ No newline at end of file
diff --git a/examples/coverletter-0.png b/examples/coverletter-0.png
deleted file mode 100644
index 246e54f..0000000
Binary files a/examples/coverletter-0.png and /dev/null differ
diff --git a/examples/coverletter-1.png b/examples/coverletter-1.png
deleted file mode 100644
index 1d40efd..0000000
Binary files a/examples/coverletter-1.png and /dev/null differ
diff --git a/examples/coverletter.pdf b/examples/coverletter.pdf
deleted file mode 100644
index 74663c7..0000000
Binary files a/examples/coverletter.pdf and /dev/null differ
diff --git a/examples/cv.pdf b/examples/cv.pdf
deleted file mode 100644
index 9ff26b4..0000000
Binary files a/examples/cv.pdf and /dev/null differ
diff --git a/examples/cv/committees.tex b/examples/cv/committees.tex
deleted file mode 100644
index 41f452d..0000000
--- a/examples/cv/committees.tex
+++ /dev/null
@@ -1,48 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Program Committees}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cvhonors}
-
-%---------------------------------------------------------
- \cvhonor
- {Problem Writer} % Position
- {2016 CODEGATE Hacking Competition World Final} % Committee
- {S.Korea} % Location
- {2016} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {Organizer \& Co-director} % Position
- {1st POSTECH Hackathon} % Committee
- {S.Korea} % Location
- {2013} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {Staff} % Position
- {7th Hacking Camp} % Committee
- {S.Korea} % Location
- {2012} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {Problem Writer} % Position
- {1st Hoseo University Teenager Hacking Competition} % Committee
- {S.Korea} % Location
- {2012} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {Staff \& Problem Writer} % Position
- {JFF(Just for Fun) Hacking Competition} % Committee
- {S.Korea} % Location
- {2012} % Date(s)
-
-%---------------------------------------------------------
-\end{cvhonors}
diff --git a/examples/cv/education.tex b/examples/cv/education.tex
deleted file mode 100644
index df506d9..0000000
--- a/examples/cv/education.tex
+++ /dev/null
@@ -1,25 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Education}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cventries}
-
-%---------------------------------------------------------
- \cventry
- {B.S. in Computer Science and Engineering} % Degree
- {POSTECH(Pohang University of Science and Technology)} % Institution
- {Pohang, S.Korea} % Location
- {Mar. 2010 - Exp. Aug. 2017} % Date(s)
- {
- \begin{cvitems} % Description(s) bullet points
- \item {Got a Chun Shin-Il Scholarship which is given to promising students in CSE Dept.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
-\end{cventries}
diff --git a/examples/cv/experience.tex b/examples/cv/experience.tex
deleted file mode 100644
index cc519fe..0000000
--- a/examples/cv/experience.tex
+++ /dev/null
@@ -1,122 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Experience}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cventries}
-
-%---------------------------------------------------------
- \cventry
- {Co-founder \& Software Engineer} % Job title
- {PLAT Corp.} % Organization
- {Seoul, S.Korea} % Location
- {Jan. 2016 - PRESENT} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Implemented RESTful API server for car rental booking application(CARPLAT in Google Play).}
- \item {Built and deployed overall service infrastructure utilizing Docker container, CircleCI, and several AWS stack(Including EC2, ECS, Route 53, S3, CloudFront, RDS, ElastiCache, IAM), focusing on high-availability, fault tolerance, and auto-scaling.}
- \item {Developed an easy-to-use Payment module which connects to major PG(Payment Gateway) companies in Korea.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Researcher} % Job title
- {Undergraduate Research, Machine Learning Lab(Prof. Seungjin Choi)} % Organization
- {Pohang, S.Korea} % Location
- {Mar. 2016 - Exp. Jun. 2017} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Researched classfication algorithms(SVM, CNN) to improve accuracy of human exercise recognition with wearable device.}
- \item {Developed two TIZEN applications to collect sample data set and to recognize user exercise on SAMSUNG Gear S.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Software Engineer \& Security Researcher (Compulsory Military Service)} % Job title
- {R.O.K Cyber Command, MND} % Organization
- {Seoul, S.Korea} % Location
- {Aug. 2014 - Apr. 2016} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Lead engineer on agent-less backtracking system that can discover client device's fingerprint(including public and private IP) independently of the Proxy, VPN and NAT.}
- \item {Implemented a distributed web stress test tool with high anonymity.}
- \item {Implemented a military cooperation system which is web based real time messenger in Scala on Lift.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Game Developer Intern at Global Internship Program} % Job title
- {NEXON} % Organization
- {Seoul, S.Korea \& LA, U.S.A} % Location
- {Jan. 2013 - Feb. 2013} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Developed in Cocos2d-x an action puzzle game(Dragon Buster) targeting U.S. market.}
- \item {Implemented API server which is communicating with game client and In-App Store, along with two other team members who wrote the game logic and designed game graphics.}
- \item {Won the 2nd prize in final evaluation.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Researcher for } % Job title
- {Undergraduate Research, Computer Vision Lab(Prof. Bohyung Han)} % Organization
- {Pohang, S.Korea} % Location
- {Sep. 2012 - Feb. 2013} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Researched means of retrieving a corresponding video based on image contents using image similarity algorithm.}
- \item {Implemented prototype that users can obtain torrent magnet links of corresponding video relevant to an image on web site.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Software Engineer Trainee} % Job title
- {Software Maestro (funded by Korea Ministry of Knowledge and Economy)} % Organization
- {Seoul, S.Korea} % Location
- {Jul. 2012 - Jun. 2013} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Performed research memory management strategies of OS and implemented in Python an interactive simulator for Linux kernel memory management.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Software Engineer} % Job title
- {ShitOne Corp. (Start-up company)} % Organization
- {Seoul, S.Korea} % Location
- {Dec. 2011 - Feb. 2012} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Developed a proxy drive smartphone application which connects proxy driver and customer. Implemented overall Android application logic and wrote API server for community service, along with lead engineer who designed bidding protocol on raw socket and implemented API server for bidding.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Freelance Penetration Tester} % Job title
- {SAMSUNG Electronics} % Organization
- {S.Korea} % Location
- {Sep. 2013, Mar. 2011 - Oct. 2011} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Conducted penetration testing on SAMSUNG KNOX, which is solution for enterprise mobile security.}
- \item {Conducted penetration testing on SAMSUNG Smart TV.}
- \end{cvitems}
- %\begin{cvsubentries}
- % \cvsubentry{}{KNOX(Solution for Enterprise Mobile Security) Penetration Testing}{Sep. 2013}{}
- % \cvsubentry{}{Smart TV Penetration Testing}{Mar. 2011 - Oct. 2011}{}
- %\end{cvsubentries}
- }
-
-%---------------------------------------------------------
-\end{cventries}
diff --git a/examples/cv/extracurricular.tex b/examples/cv/extracurricular.tex
deleted file mode 100644
index 67599f7..0000000
--- a/examples/cv/extracurricular.tex
+++ /dev/null
@@ -1,81 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Extracurricular Activity}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cventries}
-
-%---------------------------------------------------------
- \cventry
- {Core Member} % Affiliation/role
- {B10S (B1t 0n the Security, Underground hacker team)} % Organization/group
- {S.Korea} % Location
- {Nov. 2011 - PRESENT} % Date(s)
- {
- \begin{cvitems} % Description(s) of experience/contributions/knowledge
- \item {Gained expertise in penetration testing areas, especially targeted on web application and software.}
- \item {Participated on a lot of hacking competition and won a good award.}
- \item {Held several hacking competitions non-profit, just for fun.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Member} % Affiliation/role
- {WiseGuys (Hacking \& Security research group)} % Organization/group
- {S.Korea} % Location
- {Jun. 2012 - PRESENT} % Date(s)
- {
- \begin{cvitems} % Description(s) of experience/contributions/knowledge
- \item {Gained expertise in hardware hacking areas from penetration testing on several devices including wireless router, smartphone, CCTV and set-top box.}
- \item {Trained wannabe hacker about hacking technique from basic to advanced and ethics for white hackers by hosting annual Hacking Camp.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Core Member \& President at 2013} % Affiliation/role
- {PoApper (Developers' Network of POSTECH)} % Organization/group
- {Pohang, S.Korea} % Location
- {Jun. 2010 - PRESENT} % Date(s)
- {
- \begin{cvitems} % Description(s) of experience/contributions/knowledge
- \item {Reformed the society focusing on software engineering and building network on and off campus.}
- \item {Proposed various marketing and network activities to raise awareness.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Member} % Affiliation/role
- {PLUS (Laboratory for UNIX Security in POSTECH)} % Organization/group
- {Pohang, S.Korea} % Location
- {Sep. 2010 - Oct. 2011} % Date(s)
- {
- \begin{cvitems} % Description(s) of experience/contributions/knowledge
- \item {Gained expertise in hacking \& security areas, especially about internal of operating system based on UNIX and several exploit techniques.}
- \item {Participated on several hacking competition and won a good award.}
- \item {Conducted periodic security checks on overall IT system as a member of POSTECH CERT.}
- \item {Conducted penetration testing commissioned by national agency and corporation.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Member} % Affiliation/role
- {MSSA (Management Strategy Club of POSTECH)} % Organization/group
- {Pohang, S.Korea} % Location
- {Sep. 2013 - PRESENT} % Date(s)
- {
- \begin{cvitems} % Description(s) of experience/contributions/knowledge
- \item {Gained knowledge about several business field like Management, Strategy, Financial and marketing from group study.}
- \item {Gained expertise in business strategy areas and inisght for various industry from weekly industry analysis session.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
-\end{cventries}
diff --git a/examples/cv/honors.tex b/examples/cv/honors.tex
deleted file mode 100644
index 3356ecf..0000000
--- a/examples/cv/honors.tex
+++ /dev/null
@@ -1,111 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Honors \& Awards}
-
-
-%-------------------------------------------------------------------------------
-% SUBSECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsubsection{International}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cvhonors}
-
-%---------------------------------------------------------
- \cvhonor
- {Finalist} % Award
- {DEFCON 22nd CTF Hacking Competition World Final} % Event
- {Las Vegas, U.S.A} % Location
- {2014} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {Finalist} % Award
- {DEFCON 21st CTF Hacking Competition World Final} % Event
- {Las Vegas, U.S.A} % Location
- {2013} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {Finalist} % Award
- {DEFCON 19th CTF Hacking Competition World Final} % Event
- {Las Vegas, U.S.A} % Location
- {2011} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {6th Place} % Award
- {SECUINSIDE Hacking Competition World Final} % Event
- {Seoul, S.Korea} % Location
- {2012} % Date(s)
-
-%---------------------------------------------------------
-\end{cvhonors}
-
-
-%-------------------------------------------------------------------------------
-% SUBSECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsubsection{Domestic}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cvhonors}
-
-%---------------------------------------------------------
- \cvhonor
- {3rd Place} % Award
- {WITHCON Hacking Competition Final} % Event
- {Seoul, S.Korea} % Location
- {2015} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {Silver Prize} % Award
- {KISA HDCON Hacking Competition Final} % Event
- {Seoul, S.Korea} % Location
- {2013} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {2nd Award} % Award
- {HUST Hacking Festival} % Event
- {S.Korea} % Location
- {2013} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {3rd Award} % Award
- {HUST Hacking Festival} % Event
- {S.Korea} % Location
- {2010} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {3rd Award} % Award
- {Holyshield 3rd Hacking Festival} % Event
- {S.Korea} % Location
- {2012} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {2nd Award} % Award
- {Holyshield 3rd Hacking Festival} % Event
- {S.Korea} % Location
- {2011} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {5th Place} % Award
- {PADOCON Hacking Competition Final} % Event
- {Seoul, S.Korea} % Location
- {2011} % Date(s)
-
-%---------------------------------------------------------
-\end{cvhonors}
diff --git a/examples/cv/presentation.tex b/examples/cv/presentation.tex
deleted file mode 100644
index f2a1193..0000000
--- a/examples/cv/presentation.tex
+++ /dev/null
@@ -1,37 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Presentation}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cventries}
-
-%---------------------------------------------------------
- \cventry
- {Presenter for } % Role
- {6th CodeEngn (Reverse Engineering Conference)} % Event
- {Seoul, S.Korea} % Location
- {Jul. 2012} % Date(s)
- {
- \begin{cvitems} % Description(s)
- \item {Introduced CTF(Capture the Flag) hacking competition and advanced techniques and strategy for CTF}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Presenter for } % Role
- {6th Hacking Camp - S.Korea} % Event
- {S.Korea} % Location
- {Sep. 2012} % Date(s)
- {
- \begin{cvitems} % Description(s)
- \item {Introduced basic procedure for penetration testing and how to use Metasploit}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
-\end{cventries}
diff --git a/examples/cv/skills.tex b/examples/cv/skills.tex
deleted file mode 100644
index b7d7bd6..0000000
--- a/examples/cv/skills.tex
+++ /dev/null
@@ -1,28 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Skills}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cvskills}
-
-%---------------------------------------------------------
- \cvskill
- {Programming} % Category
- {Python, Node.JS, C/C++, Scala, JAVA, OCaml, LaTeX} % Skills
-
-%---------------------------------------------------------
- \cvskill
- {Web} % Category
- {Django, Express, Redux, React, HTML5, LESS, SASS} % Skills
-
-%---------------------------------------------------------
- \cvskill
- {Languages} % Category
- {Korean, English, Japanese, Chinese} % Skills
-
-%---------------------------------------------------------
-\end{cvskills}
diff --git a/examples/cv/writing.tex b/examples/cv/writing.tex
deleted file mode 100644
index 7817c75..0000000
--- a/examples/cv/writing.tex
+++ /dev/null
@@ -1,37 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Writing}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cventries}
-
-%---------------------------------------------------------
- \cventry
- {Founder \& Writer} % Role
- {A Guide for Developers in Start-up} % Title
- {Facebook Page} % Location
- {Jan. 2015 - PRESENT} % Date(s)
- {
- \begin{cvitems} % Description(s)
- \item {Drafted daily news for developers in Korea about IT technologies, issues about start-up.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Undergraduate Student Reporter} % Role
- {AhnLab} % Title
- {S.Korea} % Location
- {Oct. 2012 - Jul. 2013} % Date(s)
- {
- \begin{cvitems} % Description(s)
- \item {Drafted reports about IT trends and Security issues on AhnLab Company magazine.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
-\end{cventries}
diff --git a/examples/fontawesome.sty b/examples/fontawesome.sty
deleted file mode 120000
index 25c2251..0000000
--- a/examples/fontawesome.sty
+++ /dev/null
@@ -1 +0,0 @@
-../fontawesome.sty
\ No newline at end of file
diff --git a/examples/fonts b/examples/fonts
deleted file mode 120000
index 35bed8b..0000000
--- a/examples/fonts
+++ /dev/null
@@ -1 +0,0 @@
-../fonts
\ No newline at end of file
diff --git a/examples/profile.png b/examples/profile.png
deleted file mode 100644
index b04f502..0000000
Binary files a/examples/profile.png and /dev/null differ
diff --git a/examples/resume-0.png b/examples/resume-0.png
deleted file mode 100644
index 008e0d1..0000000
Binary files a/examples/resume-0.png and /dev/null differ
diff --git a/examples/resume-1.png b/examples/resume-1.png
deleted file mode 100644
index 7884e03..0000000
Binary files a/examples/resume-1.png and /dev/null differ
diff --git a/examples/resume.pdf b/examples/resume.pdf
deleted file mode 100644
index 8ec04ae..0000000
Binary files a/examples/resume.pdf and /dev/null differ
diff --git a/examples/resume.tex b/examples/resume.tex
deleted file mode 100644
index ecc9a90..0000000
--- a/examples/resume.tex
+++ /dev/null
@@ -1,105 +0,0 @@
-%!TEX TS-program = xelatex
-%!TEX encoding = UTF-8 Unicode
-% Awesome CV LaTeX Template for CV/Resume
-%
-% This template has been downloaded from:
-% https://github.com/posquit0/Awesome-CV
-%
-% Author:
-% Claud D. Park
-% http://www.posquit0.com
-%
-% Template license:
-% CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)
-%
-
-
-%-------------------------------------------------------------------------------
-% CONFIGURATIONS
-%-------------------------------------------------------------------------------
-% A4 paper size by default, use 'letterpaper' for US letter
-\documentclass[11pt, a4paper]{awesome-cv}
-
-% Configure page margins with geometry
-\geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}
-
-% Specify the location of the included fonts
-\fontdir[fonts/]
-
-% Color for highlights
-% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange
-% awesome-nephritis, awesome-concrete, awesome-darknight
-\colorlet{awesome}{awesome-red}
-% Uncomment if you would like to specify your own color
-% \definecolor{awesome}{HTML}{CA63A8}
-
-% Colors for text
-% Uncomment if you would like to specify your own color
-% \definecolor{darktext}{HTML}{414141}
-% \definecolor{text}{HTML}{333333}
-% \definecolor{graytext}{HTML}{5D5D5D}
-% \definecolor{lighttext}{HTML}{999999}
-
-% Set false if you don't want to highlight section with awesome color
-\setbool{acvSectionColorHighlight}{true}
-
-% If you would like to change the social information separator from a pipe (|) to something else
-\renewcommand{\acvHeaderSocialSep}{\quad\textbar\quad}
-
-
-%-------------------------------------------------------------------------------
-% PERSONAL INFORMATION
-% Comment any of the lines below if they are not required
-%-------------------------------------------------------------------------------
-% Available options: circle|rectangle,edge/noedge,left/right
-% \photo[rectangle,edge,right]{./examples/profile}
-\name{Byungjin}{Park}
-\position{Software Engineer{\enskip\cdotp\enskip}Security Expert}
-\address{246-1002, Gwangmyeongmayrouge Apt. 86, Cheongna lime-ro, Seo-gu, Incheon-si, 404-180, Rep. of KOREA}
-
-\mobile{(+82) 10-9030-1843}
-\email{posquit0.bj@gmail.com}
-\homepage{www.posquit0.com}
-\github{posquit0}
-\linkedin{posquit0}
-% \gitlab{gitlab-id}
-% \stackoverflow{SO-id}{SO-name}
-% \twitter{@twit}
-% \skype{skype-id}
-% \reddit{reddit-id}
-% \extrainfo{extra informations}
-
-\quote{``Be the change that you want to see in the world."}
-
-
-%-------------------------------------------------------------------------------
-\begin{document}
-
-% Print the header with above personal informations
-% Give optional argument to change alignment(C: center, L: left, R: right)
-\makecvheader[C]
-
-% Print the footer with 3 arguments(, , )
-% Leave any of these blank if they are not needed
-\makecvfooter
- {\today}
- {Claud D. Park~~~·~~~Résumé}
- {\thepage}
-
-
-%-------------------------------------------------------------------------------
-% CV/RESUME CONTENT
-% Each section is imported separately, open each file in turn to modify content
-%-------------------------------------------------------------------------------
-\input{resume/summary.tex}
-\input{resume/experience.tex}
-\input{resume/honors.tex}
-\input{resume/presentation.tex}
-\input{resume/writing.tex}
-\input{resume/committees.tex}
-\input{resume/education.tex}
-\input{resume/extracurricular.tex}
-
-
-%-------------------------------------------------------------------------------
-\end{document}
diff --git a/examples/resume/committees.tex b/examples/resume/committees.tex
deleted file mode 100644
index 40191c2..0000000
--- a/examples/resume/committees.tex
+++ /dev/null
@@ -1,27 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Program Committees}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cvhonors}
-
-%---------------------------------------------------------
- \cvhonor
- {Problem Writer} % Position
- {2016 CODEGATE Hacking Competition World Final} % Committee
- {S.Korea} % Location
- {2016} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {Organizer \& Co-director} % Position
- {1st POSTECH Hackathon} % Committee
- {S.Korea} % Location
- {2013} % Date(s)
-
-%---------------------------------------------------------
-\end{cvhonors}
diff --git a/examples/resume/education.tex b/examples/resume/education.tex
deleted file mode 100644
index df506d9..0000000
--- a/examples/resume/education.tex
+++ /dev/null
@@ -1,25 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Education}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cventries}
-
-%---------------------------------------------------------
- \cventry
- {B.S. in Computer Science and Engineering} % Degree
- {POSTECH(Pohang University of Science and Technology)} % Institution
- {Pohang, S.Korea} % Location
- {Mar. 2010 - Exp. Aug. 2017} % Date(s)
- {
- \begin{cvitems} % Description(s) bullet points
- \item {Got a Chun Shin-Il Scholarship which is given to promising students in CSE Dept.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
-\end{cventries}
diff --git a/examples/resume/experience.tex b/examples/resume/experience.tex
deleted file mode 100644
index 55805e4..0000000
--- a/examples/resume/experience.tex
+++ /dev/null
@@ -1,85 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Work Experience}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cventries}
-
-%---------------------------------------------------------
- \cventry
- {Co-founder \& Software Engineer} % Job title
- {PLAT Corp.} % Organization
- {Seoul, S.Korea} % Location
- {Jan. 2016 - PRESENT} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Implemented RESTful API server for car rental booking application(CARPLAT in Google Play).}
- \item {Built and deployed overall service infrastructure utilizing Docker container, CircleCI, and several AWS stack(Including EC2, ECS, Route 53, S3, CloudFront, RDS, ElastiCache, IAM), focusing on high-availability, fault tolerance, and auto-scaling.}
- \item {Developed an easy-to-use Payment module which connects to major PG(Payment Gateway) companies in Korea.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Software Engineer \& Security Researcher (Compulsory Military Service)} % Job title
- {R.O.K Cyber Command, MND} % Organization
- {Seoul, S.Korea} % Location
- {Aug. 2014 - Apr. 2016} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Lead engineer on agent-less backtracking system that can discover client device's fingerprint(including public and private IP) independently of the Proxy, VPN and NAT.}
- \item {Implemented a distributed web stress test tool with high anonymity.}
- \item {Implemented a military cooperation system which is web based real time messenger in Scala on Lift.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Game Developer Intern at Global Internship Program} % Job title
- {NEXON} % Organization
- {Seoul, S.Korea \& LA, U.S.A} % Location
- {Jan. 2013 - Feb. 2013} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Developed in Cocos2d-x an action puzzle game(Dragon Buster) targeting U.S. market.}
- \item {Implemented API server which is communicating with game client and In-App Store, along with two other team members who wrote the game logic and designed game graphics.}
- \item {Won the 2nd prize in final evaluation.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Software Engineer} % Job title
- {ShitOne Corp. (Start-up company)} % Organization
- {Seoul, S.Korea} % Location
- {Dec. 2011 - Feb. 2012} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Developed a proxy drive smartphone application which connects proxy driver and customer.}
- \item {Implemented overall Android application logic and wrote API server for community service, along with lead engineer who designed bidding protocol on raw socket and implemented API server for bidding.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Freelance Penetration Tester} % Job title
- {SAMSUNG Electronics} % Organization
- {S.Korea} % Location
- {Sep. 2013, Mar. 2011 - Oct. 2011} % Date(s)
- {
- \begin{cvitems} % Description(s) of tasks/responsibilities
- \item {Conducted penetration testing on SAMSUNG KNOX, which is solution for enterprise mobile security.}
- \item {Conducted penetration testing on SAMSUNG Smart TV.}
- \end{cvitems}
- %\begin{cvsubentries}
- % \cvsubentry{}{KNOX(Solution for Enterprise Mobile Security) Penetration Testing}{Sep. 2013}{}
- % \cvsubentry{}{Smart TV Penetration Testing}{Mar. 2011 - Oct. 2011}{}
- %\end{cvsubentries}
- }
-
-%---------------------------------------------------------
-\end{cventries}
diff --git a/examples/resume/extracurricular.tex b/examples/resume/extracurricular.tex
deleted file mode 100644
index d1592a7..0000000
--- a/examples/resume/extracurricular.tex
+++ /dev/null
@@ -1,41 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Extracurricular Activity}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cventries}
-
-%---------------------------------------------------------
- \cventry
- {Core Member \& President at 2013} % Affiliation/role
- {PoApper (Developers' Network of POSTECH)} % Organization/group
- {Pohang, S.Korea} % Location
- {Jun. 2010 - PRESENT} % Date(s)
- {
- \begin{cvitems} % Description(s) of experience/contributions/knowledge
- \item {Reformed the society focusing on software engineering and building network on and off campus.}
- \item {Proposed various marketing and network activities to raise awareness.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Member} % Affiliation/role
- {PLUS (Laboratory for UNIX Security in POSTECH)} % Organization/group
- {Pohang, S.Korea} % Location
- {Sep. 2010 - Oct. 2011} % Date(s)
- {
- \begin{cvitems} % Description(s) of experience/contributions/knowledge
- \item {Gained expertise in hacking \& security areas, especially about internal of operating system based on UNIX and several exploit techniques.}
- \item {Participated on several hacking competition and won a good award.}
- \item {Conducted periodic security checks on overall IT system as a member of POSTECH CERT.}
- \item {Conducted penetration testing commissioned by national agency and corporation.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
-\end{cventries}
diff --git a/examples/resume/honors.tex b/examples/resume/honors.tex
deleted file mode 100644
index 76a977d..0000000
--- a/examples/resume/honors.tex
+++ /dev/null
@@ -1,76 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Honors \& Awards}
-
-
-%-------------------------------------------------------------------------------
-% SUBSECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsubsection{International}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cvhonors}
-
-%---------------------------------------------------------
- \cvhonor
- {Finalist} % Award
- {DEFCON 22nd CTF Hacking Competition World Final} % Event
- {Las Vegas, U.S.A} % Location
- {2014} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {Finalist} % Award
- {DEFCON 21st CTF Hacking Competition World Final} % Event
- {Las Vegas, U.S.A} % Location
- {2013} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {Finalist} % Award
- {DEFCON 19th CTF Hacking Competition World Final} % Event
- {Las Vegas, U.S.A} % Location
- {2011} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {6th Place} % Award
- {SECUINSIDE Hacking Competition World Final} % Event
- {Seoul, S.Korea} % Location
- {2012} % Date(s)
-
-%---------------------------------------------------------
-\end{cvhonors}
-
-
-%-------------------------------------------------------------------------------
-% SUBSECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsubsection{Domestic}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cvhonors}
-
-%---------------------------------------------------------
- \cvhonor
- {3rd Place} % Award
- {WITHCON Hacking Competition Final} % Event
- {Seoul, S.Korea} % Location
- {2015} % Date(s)
-
-%---------------------------------------------------------
- \cvhonor
- {Silver Prize} % Award
- {KISA HDCON Hacking Competition Final} % Event
- {Seoul, S.Korea} % Location
- {2013} % Date(s)
-
-%---------------------------------------------------------
-\end{cvhonors}
diff --git a/examples/resume/presentation.tex b/examples/resume/presentation.tex
deleted file mode 100644
index c7bcf57..0000000
--- a/examples/resume/presentation.tex
+++ /dev/null
@@ -1,25 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Presentation}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cventries}
-
-%---------------------------------------------------------
- \cventry
- {Presenter for } % Role
- {6th CodeEngn (Reverse Engineering Conference)} % Event
- {Seoul, S.Korea} % Location
- {Jul. 2012} % Date(s)
- {
- \begin{cvitems} % Description(s)
- \item {Introduced CTF(Capture the Flag) hacking competition and advanced techniques and strategy for CTF}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
-\end{cventries}
diff --git a/examples/resume/summary.tex b/examples/resume/summary.tex
deleted file mode 100644
index 4e8e936..0000000
--- a/examples/resume/summary.tex
+++ /dev/null
@@ -1,14 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Summary}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cvparagraph}
-
-%---------------------------------------------------------
-Current Co-founder \& Software Engineer in start-up company PLAT Corp. 5+ years experience specializing in backend/infrastructure, web development and computer security. Super nerd who loves Vim, Linux and OS X and enjoys to customize all of the development environment. Interested in devising a better problem-solving method for challenging tasks, and learning new technologies and tools if the need arises.
-\end{cvparagraph}
diff --git a/examples/resume/writing.tex b/examples/resume/writing.tex
deleted file mode 100644
index 7817c75..0000000
--- a/examples/resume/writing.tex
+++ /dev/null
@@ -1,37 +0,0 @@
-%-------------------------------------------------------------------------------
-% SECTION TITLE
-%-------------------------------------------------------------------------------
-\cvsection{Writing}
-
-
-%-------------------------------------------------------------------------------
-% CONTENT
-%-------------------------------------------------------------------------------
-\begin{cventries}
-
-%---------------------------------------------------------
- \cventry
- {Founder \& Writer} % Role
- {A Guide for Developers in Start-up} % Title
- {Facebook Page} % Location
- {Jan. 2015 - PRESENT} % Date(s)
- {
- \begin{cvitems} % Description(s)
- \item {Drafted daily news for developers in Korea about IT technologies, issues about start-up.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
- \cventry
- {Undergraduate Student Reporter} % Role
- {AhnLab} % Title
- {S.Korea} % Location
- {Oct. 2012 - Jul. 2013} % Date(s)
- {
- \begin{cvitems} % Description(s)
- \item {Drafted reports about IT trends and Security issues on AhnLab Company magazine.}
- \end{cvitems}
- }
-
-%---------------------------------------------------------
-\end{cventries}
diff --git a/icon.png b/icon.png
deleted file mode 100644
index 332b635..0000000
Binary files a/icon.png and /dev/null differ
diff --git a/profile.jpg b/profile.jpg
new file mode 100644
index 0000000..a33485c
Binary files /dev/null and b/profile.jpg differ