mirror of
https://github.com/posquit0/Awesome-CV.git
synced 2026-05-15 01:41:22 +08:00
Repo clean and modify sections.
This commit is contained in:
parent
36075ed034
commit
23513d2bc6
122 changed files with 209 additions and 1742 deletions
|
|
@ -1,53 +0,0 @@
|
|||
yaml-files:
|
||||
- '*.yaml'
|
||||
- '*.yml'
|
||||
|
||||
rules:
|
||||
braces:
|
||||
min-spaces-inside: 0
|
||||
max-spaces-inside: 1
|
||||
min-spaces-inside-empty: 0
|
||||
max-spaces-inside-empty: 0
|
||||
brackets:
|
||||
min-spaces-inside: 0
|
||||
max-spaces-inside: 1
|
||||
min-spaces-inside-empty: 0
|
||||
max-spaces-inside-empty: 0
|
||||
colons:
|
||||
max-spaces-before: 0
|
||||
max-spaces-after: 1
|
||||
commas:
|
||||
max-spaces-before: 0
|
||||
comments:
|
||||
level: warning
|
||||
require-starting-space: true
|
||||
min-spaces-from-content: 1
|
||||
comments-indentation: disable
|
||||
document-end: disable
|
||||
document-start: disable
|
||||
empty-lines:
|
||||
level: warning
|
||||
max: 2
|
||||
max-start: 0
|
||||
max-end: 1
|
||||
empty-values:
|
||||
forbid-in-block-mappings: true
|
||||
forbid-in-flow-mappings: true
|
||||
hyphens:
|
||||
max-spaces-after: 1
|
||||
indentation:
|
||||
spaces: consistent
|
||||
indent-sequences: false
|
||||
key-duplicates: enable
|
||||
key-ordering: disable
|
||||
line-length: disable
|
||||
new-line-at-end-of-file: enable
|
||||
# Use UNIX new line characters `\n` instead of DOS new line characters `\r\n`
|
||||
new-lines:
|
||||
type: unix
|
||||
octal-values: disable
|
||||
quoted-strings:
|
||||
quote-type: any
|
||||
required: false
|
||||
trailing-spaces: enable
|
||||
truthy: disable
|
||||
22
Makefile
22
Makefile
|
|
@ -1,22 +0,0 @@
|
|||
.PHONY: examples
|
||||
|
||||
CC = lualatex
|
||||
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
|
||||
BIN
OLDcv.pdf
Normal file
BIN
OLDcv.pdf
Normal file
Binary file not shown.
131
README.md
131
README.md
|
|
@ -1,126 +1,15 @@
|
|||
<h1 align="center">
|
||||
<a href="https://github.com/posquit0/Awesome-CV" title="AwesomeCV Documentation">
|
||||
<img alt="AwesomeCV" src="https://github.com/posquit0/Awesome-CV/raw/master/icon.png" width="200px" height="200px" />
|
||||
</a>
|
||||
<br />
|
||||
Awesome CV
|
||||
</h1>
|
||||
# My Curriculum Vitae
|
||||
|
||||
<p align="center">
|
||||
LaTeX template for your outstanding job application
|
||||
</p>
|
||||
Personal CV/Résumé built with [Awesome-CV](https://github.com/posquit0/Awesome-CV).
|
||||
|
||||
<div align="center">
|
||||
<a href="https://www.paypal.me/posquit0">
|
||||
<img alt="Donate" src="https://img.shields.io/badge/Donate-PayPal-blue.svg" />
|
||||
</a>
|
||||
<a href="https://github.com/posquit0/Awesome-CV/actions/workflows/main.yml">
|
||||
<img alt="GitHub Actions" src="https://github.com/posquit0/Awesome-CV/actions/workflows/main.yml/badge.svg" />
|
||||
</a>
|
||||
<a href="https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf">
|
||||
<img alt="Example Resume" src="https://img.shields.io/badge/resume-pdf-green.svg" />
|
||||
</a>
|
||||
<a href="https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/cv.pdf">
|
||||
<img alt="Example CV" src="https://img.shields.io/badge/cv-pdf-green.svg" />
|
||||
</a>
|
||||
<a href="https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter.pdf">
|
||||
<img alt="Example Coverletter" src="https://img.shields.io/badge/coverletter-pdf-green.svg" />
|
||||
</a>
|
||||
</div>
|
||||
## 📄 View PDF
|
||||
You can find the latest compiled version of my CV here:
|
||||
* [Download PDF](./cv.pdf)
|
||||
|
||||
<br />
|
||||
|
||||
## 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.
|
||||
|
||||
|
||||
## Donate
|
||||
|
||||
Please help keep this project alive! Donations are welcome and will go towards further development of this project.
|
||||
|
||||
PayPal: paypal.me/posquit0
|
||||
|
||||
*Thank you for your support!*
|
||||
|
||||
## Preview
|
||||
|
||||
#### Résumé
|
||||
|
||||
You can see [PDF](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf)
|
||||
|
||||
| Page. 1 | Page. 2 |
|
||||
|:---:|:---:|
|
||||
| [](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf) | [](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 |
|
||||
|:---:|:---:|
|
||||
| [](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter.pdf) | [](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 Cover Letter on OverLeaf.com**](https://www.overleaf.com/latex/templates/awesome-cv-cover-letter/pfzzjspkthbk)
|
||||
|
||||
**_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](https://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.)
|
||||
|
||||
If you don't want to install the dependencies on your system, this can also be obtained via [Docker](https://docker.com).
|
||||
|
||||
#### Usage
|
||||
|
||||
At a command prompt, run
|
||||
## 🛠 Usage
|
||||
This repository uses **lualatex** for compilation.
|
||||
|
||||
### Local Compilation
|
||||
To compile the document locally, ensure you have a TeX distribution (like TeX Live or MiKTeX) installed:
|
||||
```bash
|
||||
xelatex {your-cv}.tex
|
||||
```
|
||||
|
||||
Or using docker:
|
||||
|
||||
```bash
|
||||
docker run --rm --user $(id -u):$(id -g) -i -w "/doc" -v "$PWD":/doc texlive/texlive:latest make
|
||||
```
|
||||
|
||||
In either case, this should result in the creation of ``{your-cv}.pdf``
|
||||
|
||||
|
||||
## Credit
|
||||
|
||||
[**LaTeX**](https://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.
|
||||
|
||||
[**FontAwesome6 LaTeX Package**](https://github.com/braniii/fontawesome) is a LaTeX package that provides access to the [Font Awesome 6](https://fontawesome.com/v6/icons) icon set.
|
||||
|
||||
[**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!
|
||||
|
||||
|
||||
## Maintainers
|
||||
- [posquit0](https://github.com/posquit0)
|
||||
- [OJFord](https://github.com/OJFord)
|
||||
|
||||
|
||||
## See Also
|
||||
|
||||
* [Awesome Identity](https://github.com/posquit0/hugo-awesome-identity) - A single-page Hugo theme to introduce yourself.
|
||||
lualatex cv.tex
|
||||
|
|
@ -81,7 +81,7 @@
|
|||
\defaultfontfeatures{
|
||||
Renderer=HarfBuzz,
|
||||
}
|
||||
\setmainfont{Source Sans 3}[
|
||||
\setmainfont{Calibri}[
|
||||
UprightFont=*,
|
||||
ItalicFont=* Italic,
|
||||
BoldFont=* Bold,
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
FontFace={l}{n}{Font=* Light},
|
||||
FontFace={l}{it}{Font=* Light Italic},
|
||||
]
|
||||
\setsansfont{Source Sans 3}[
|
||||
\setsansfont{Calibri}[
|
||||
UprightFont=*,
|
||||
ItalicFont=* Italic,
|
||||
BoldFont=* Bold,
|
||||
|
|
@ -742,7 +742,8 @@
|
|||
% Define an entry of cv information
|
||||
% Usage: \cventry{<position>}{<title>}{<location>}{<date>}{<description>}
|
||||
\newcommand*{\cventry}[5]{%
|
||||
\vspace{-2.0mm}
|
||||
% \vspace{-2.0mm}
|
||||
\vspace{2.0mm}
|
||||
\setlength\tabcolsep{0pt}
|
||||
\setlength{\extrarowheight}{0pt}
|
||||
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{\textwidth - 4.5cm} R{4.5cm}}
|
||||
|
|
@ -819,9 +820,11 @@
|
|||
\newenvironment{cvitems}{%
|
||||
\vspace{-4.0mm}
|
||||
\begin{justify}
|
||||
\begin{itemize}[leftmargin=2ex, nosep, noitemsep]
|
||||
\begin{itemize}[leftmargin=2ex, itemsep=1ex, topsep=0pt, parsep=0pt]
|
||||
\setstretch{1.2}
|
||||
\setlength{\parskip}{0pt}
|
||||
\renewcommand{\labelitemi}{\bullet}
|
||||
\small
|
||||
}{%
|
||||
\end{itemize}
|
||||
\end{justify}
|
||||
|
|
|
|||
0
cv.pdf
Normal file
0
cv.pdf
Normal file
|
|
@ -26,7 +26,7 @@
|
|||
% 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}
|
||||
\colorlet{awesome}{awesome-skyblue}
|
||||
% Uncomment if you would like to specify your own color
|
||||
% \definecolor{awesome}{HTML}{CA63A8}
|
||||
|
||||
|
|
@ -47,39 +47,15 @@
|
|||
|
||||
%-------------------------------------------------------------------------------
|
||||
% 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{DevOps Engineer{\enskip\cdotp\enskip}Software Architect}
|
||||
\address{Mapo-gu, Seoul, Republic of Korea}
|
||||
|
||||
\mobile{(+82) 10-9030-1843}
|
||||
%\whatsapp{(+82) 10-9030-1843}
|
||||
\email{posquit0.bj@gmail.com}
|
||||
%\dateofbirth{January 1st, 1970}
|
||||
\homepage{www.posquit0.com}
|
||||
\github{posquit0}
|
||||
\linkedin{posquit0}
|
||||
% \gitlab{gitlab-id}
|
||||
% \stackoverflow{SO-id}{SO-name}
|
||||
% \twitter{@twit}
|
||||
% \x{x-id}
|
||||
% \skype{skype-id}
|
||||
% \reddit{reddit-id}
|
||||
% \medium{medium-id}
|
||||
% \kaggle{kaggle-id}
|
||||
% \hackerrank{hackerrank-id}
|
||||
% \telegram{telegram-username}
|
||||
% \googlescholar{googlescholar-id}{name-to-display}
|
||||
%% \firstname and \lastname will be used
|
||||
% \googlescholar{googlescholar-id}{}
|
||||
% \extrainfo{extra information}
|
||||
|
||||
\quote{``Be the change that you want to see in the world."}
|
||||
|
||||
\name{Maciej}{Hałas}
|
||||
\position{.NET Developer}
|
||||
\address{Poznań, Woj. Wielkopolskie, Polska}
|
||||
|
||||
\mobile{(+48) 531-108-525}
|
||||
\email{maciejhalas@outlook.com}
|
||||
\github{mhalas}
|
||||
\linkedin{maciejhalas}
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{document}
|
||||
|
||||
|
|
@ -91,23 +67,18 @@
|
|||
% Leave any of these blank if they are not needed
|
||||
\makecvfooter
|
||||
{\today}
|
||||
{Claud D. Park~~~·~~~Curriculum Vitae}
|
||||
{Maciej Hałas~~~·~~~Curriculum Vitae}
|
||||
{\thepage}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CV/RESUME CONTENT
|
||||
% Each section is imported separately, open each file in turn to modify content
|
||||
% CV CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\input{cv/education.tex}
|
||||
\input{cv/summary.tex}
|
||||
\input{cv/skills.tex}
|
||||
\input{cv/experience.tex}
|
||||
\input{cv/extracurricular.tex}
|
||||
\input{cv/honors.tex}
|
||||
\input{cv/certificates.tex}
|
||||
\input{cv/presentation.tex}
|
||||
\input{cv/writing.tex}
|
||||
\input{cv/committees.tex}
|
||||
\input{cv/education.tex}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Program Committees}
|
||||
\cvsection{Certificates}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
|
|
@ -11,17 +11,10 @@
|
|||
|
||||
%---------------------------------------------------------
|
||||
\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)
|
||||
{Software Development Fundamentals} % Name
|
||||
{Microsoft} % Issuer
|
||||
{12679289} % Credential ID
|
||||
{2015} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\end{cvhonors}
|
||||
|
|
@ -11,13 +11,23 @@
|
|||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{B.S. in Computer Science and Engineering} % Degree
|
||||
{POSTECH(Pohang University of Science and Technology)} % Institution
|
||||
{Pohang, S.Korea} % Location
|
||||
{Mar. 2010 - Aug. 2017} % Date(s)
|
||||
{Master’s in Computer Science} % Degree
|
||||
{University of Technology} % Institution
|
||||
{Poznań, Poland} % Location
|
||||
{2017 - 2020} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description(s) bullet points
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Bachelor of Engineering in Computer Science} % Degree
|
||||
{Collegium Da Vinci} % Institution
|
||||
{Poznań, Poland} % Location
|
||||
{2012 - 2016} % 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}
|
||||
}
|
||||
|
||||
103
cv/experience.tex
Normal file
103
cv/experience.tex
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Experience}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cventries}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{.NET Developer} % Job title
|
||||
{Stretto Sp. z o.o.} % Organization
|
||||
{Łódź, Poland} % Location
|
||||
{Dec. 2021 - Mar. 2026} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description
|
||||
\item {\textbf{Modernized Legacy Infrastructure}: Led the migration of high-risk legacy modules to modern \textbf{.NET architectures}, pioneering the company’s first \textbf{Dockerized} container deployments to significantly improve system stability and long-term maintainability.}
|
||||
\item {\textbf{Architected Serverless Solutions}: Designed and deployed \textbf{.NET Web APIs using AWS Lambda}, leveraging cloud scalability to reduce infrastructure overhead costs while ensuring 24/7 high availability for global clients.}
|
||||
\item {\textbf{Delivered High-Adoption Data Tools}: Engineered a high-performance \textbf{ASP.NET tool} for automated CSV-to-DB synchronization that earned \textbf{critical acclaim} from clients and internal teams, serving as a key competitive differentiator and driving client retention.}
|
||||
\item {\textbf{Strengthened Security \& Compliance}: Hardened application security by implementing \textbf{AWS Cognito (MFA)} and Google reCaptcha, playing a pivotal role in achieving and maintaining \textbf{SOC Compliance} for sensitive financial data.}
|
||||
\item {\textbf{Automated Financial Workflows}: Streamlined corporate restructuring and bank statement generation by developing automated transaction deserialization tools, eliminating manual document handling and increasing team operational capacity.}
|
||||
\item {\textbf{Optimized SDLC \& Code Quality}: Integrated \textbf{SonarQube} and \textbf{Dependency Track} into the development lifecycle to proactively mitigate vulnerabilities, while configuring \textbf{Bamboo CI/CD pipelines} to accelerate the release of secure, stable software.}
|
||||
\item {\textbf{International Collaboration}: Partnered with US-based Product Owners and QA teams within an Agile framework to deliver complex features, including the full-scale integration of a new banking partner that directly increased company revenue.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{.NET Developer} % Job title
|
||||
{E-surf Software Sp. z o.o.} % Organization
|
||||
{Poznań, Poland} % Location
|
||||
{Jun. 2020 - Nov. 2021} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description
|
||||
\item {\textbf{Engineered and maintained a mission-critical, multithreaded WPF application (Alvo Integra)} used in operating rooms, optimizing UI responsiveness and hardware control for medical staff during surgical procedures.}
|
||||
\item {\textbf{Architected and implemented scalable .NET Core microservices} to facilitate seamless communication between software layers and medical hardware, ensuring high system availability in high-stakes environments.}
|
||||
\item {\textbf{Developed low-latency, real-time communication systems} using \textbf{SignalR} and \textbf{Modbus TCP} protocols, enabling instantaneous synchronization and control of surgical lamps, cameras, and operating tables.}
|
||||
\item {\textbf{Designed and optimized database schemas} using \textbf{Microsoft SQL Server}, ensuring high-performance data persistence for surgical logs, video recordings, and device configurations.}
|
||||
\item {\textbf{Improved software reliability and code quality} by authoring comprehensive \textbf{Unit Tests} for core modules, significantly reducing post-deployment bugs and accelerating the release cycle.}
|
||||
\item {\textbf{Leveraged Microsoft Azure DevOps} within an \textbf{Agile/Scrum} framework to streamline CI/CD pipelines and sprint delivery, resulting in faster feature deployment and more transparent project tracking.}
|
||||
\item {\textbf{Bridged the gap between technical requirements and clinical needs} by conducting on-site hardware integration testing at medical facilities, ensuring that software solutions met the rigorous demands of healthcare environments.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{.NET Developer} % Job title
|
||||
{eXant sp. z o.o.} % Organization
|
||||
{Poznań, Poland} % Location
|
||||
{Sep. 2019 - May 2020} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description
|
||||
\item {\textbf{Developed and scaled} a comprehensive project management platform for a real estate developer using \textbf{ASP.NET} and \textbf{AngularJS}, streamlining task management and cross-team communication.}
|
||||
\item {\textbf{Architected and optimized} relational databases in \textbf{Microsoft SQL Server}, ensuring high data integrity and performance for complex project-tracking and financial modules.}
|
||||
\item {\textbf{Collaborated directly with the Project Owner} to refine business requirements and translate them into technical features, ensuring the final product met specific stakeholder needs.}
|
||||
\item {\textbf{Delivered responsive user interfaces} by integrating \textbf{AngularJS} with \textbf{ASP.NET} backends, improving the end-user experience and the overall usability of the management system.}
|
||||
\item {\textbf{Championed code quality} through the implementation of \textbf{unit tests} for core system modules, reducing regression issues and increasing long-term maintainability.}
|
||||
\item {\textbf{Facilitated rapid feature delivery} using \textbf{Kanban} methodology and \textbf{Team Foundation Server (TFS)}, optimizing the development lifecycle and version control processes.}
|
||||
\item {\textbf{Drove business growth} by accelerating the deployment of new features, which directly led to increased client satisfaction and improved financial performance for the client.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{.NET Developer} % Job title
|
||||
{eFitness sp. z o.o.} % Organization
|
||||
{Poznań, Poland} % Location
|
||||
{Sep. 2017 - Aug. 2019} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description
|
||||
\item {\textbf{Architected System Modernization:} Developed Proof of Concepts (PoCs) and conducted rigorous framework evaluations to drive the architectural direction for the Alvo Integra system rewrite, enabling informed stakeholder decision-making.}
|
||||
\item {\textbf{Engineered Full-Stack Gym Solutions:} Developed and scaled core modules for client management and reservations using \textbf{ASP.NET Razor}, \textbf{JavaScript}, and \textbf{MS SQL Server}, optimizing team workflows and cross-departmental communication.}
|
||||
\item {\textbf{High-Performance Data Engineering:} Designed and implemented a custom data migration application to facilitate seamless transfers between systems while managing \textbf{Big Data} environments and complex SQL structures.}
|
||||
\item {\textbf{Hardware \& IoT Integration:} Developed automated access control systems for gym entry gates and integrated fiscal printer protocols, expanding system functionality and improving the physical user experience.}
|
||||
\item {\textbf{Refactoring \& Technical Debt Reduction:} Systematically refactored legacy modules to improve code readability and maintainability, significantly reducing the long-term cost of feature development and bug fixing.}
|
||||
\item {\textbf{Quality Assurance \& Unit Testing:} Established higher software reliability by implementing comprehensive \textbf{unit testing} suites, ensuring the stability of critical modules and accelerating the identification of regression bugs.}
|
||||
\item {\textbf{Agile DevOps Excellence:} Optimized the software delivery lifecycle using \textbf{Microsoft Azure DevOps} within a \textbf{Scrum} framework, maintaining high velocity and rapid response times to client-reported issues even with incomplete documentation.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{.NET Developer} % Job title
|
||||
{ARP Ideas sp. z o.o.} % Organization
|
||||
{Poznań, Poland} % Location
|
||||
{Feb. 2016 - Jul. 2017} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description
|
||||
\item {\textbf{Engineered custom Dynamics CRM plugins and workflows} using \textbf{C\#} to automate complex business logic, significantly reducing manual data entry for enterprise clients.}
|
||||
\item{\textbf{Developed and deployed serverless Azure Functions} to handle high-volume background processing and asynchronous tasks, optimizing cloud infrastructure costs and system scalability.}
|
||||
\item{\textbf{Architected a comprehensive sales management system} for a real estate development firm, leveraging \textbf{.NET} and \textbf{Dynamics CRM} to streamline the lead-to-contract pipeline.}
|
||||
\item{\textbf{Designed and implemented a warehouse management solution} for a large-scale footwear retailer, focusing on real-time inventory tracking and integration with \textbf{Microsoft SQL Server}.}
|
||||
\item{\textbf{Enhanced software maintainability and reliability} by authoring comprehensive \textbf{unit tests} for CRM plugins, ensuring code stability during complex version upgrades.}
|
||||
\item{\textbf{Optimized Microsoft SQL Server database performance} by designing efficient schemas and stored procedures, improving data retrieval speeds for high-traffic sales modules.}
|
||||
\item{\textbf{Collaborated within an Agile (Scrum) framework} using \textbf{TFS (Git)} for version control and CI/CD, consistently delivering high-quality code through rigorous peer reviews and sprint planning.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\end{cventries}
|
||||
43
cv/skills.tex
Normal file
43
cv/skills.tex
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Skills}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvskills}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvskill
|
||||
{Programming languages} % Category
|
||||
{C\#, Python, Java, HTML5, CSS, XAML, Razor, Javascript} % Skills
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvskill
|
||||
{Frameworks \& Platforms} % Category
|
||||
{.NET 5+, .NET Core, .NET Framework, ASP.NET, SignalR, Angular, React, WPF, WinForms, Microservices} % Skills
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvskill
|
||||
{Cloud, Infrastructure \& DevOps} % Category
|
||||
{AWS (Lambda, API Gateway, Cognito, Amazon MQ), Docker, CI/CD Pipelines, Bamboo, Jenkins, Git, Bitbucket, TFS, Microsoft DevOps, Windows Server, Linux} % Skills
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvskill
|
||||
{Data \& Integration} % Category
|
||||
{Microsoft SQL Server, Firebird, ActiveMQ, Amazon MQ, Splunk, Complex Financial Data Deserialization (Flat Files), Data Migration} % Skills
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvskill
|
||||
{Practices \& Tools} % Category
|
||||
{Agile (Scrum, Kanban), Unit \& Integration Testing (Backend \& Frontend), Jira, Confluence, Trello, Microsoft Dynamics 365 (CRM)} % Skills
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvskill
|
||||
{Languages \& Communication} % Category
|
||||
{Polish (native), English (fluent)} % Skills
|
||||
|
||||
% %---------------------------------------------------------
|
||||
\end{cvskills}
|
||||
14
cv/summary.tex
Normal file
14
cv/summary.tex
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Summary}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvparagraph}
|
||||
|
||||
%---------------------------------------------------------
|
||||
Innovative .NET Developer with 10 years of experience specializing in modernizing legacy architectures and deploying scalable AWS/Azure cloud solutions. Proven track record in pioneering Dockerized deployments and serverless AWS Lambda APIs to reduce infrastructure costs while maintaining 24/7 high availability. Expert in C\#, .NET 5+, and Microservices , with a Master’s in Computer Science and a focus on building secure, SOC-compliant financial systems.
|
||||
\end{cvparagraph}
|
||||
|
|
@ -1 +0,0 @@
|
|||
../awesome-cv.cls
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 110 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 248 KiB |
Binary file not shown.
|
|
@ -1,141 +0,0 @@
|
|||
%!TEX TS-program = xelatex
|
||||
%!TEX encoding = UTF-8 Unicode
|
||||
% Awesome CV LaTeX Template for Cover Letter
|
||||
%
|
||||
% This template has been downloaded from:
|
||||
% https://github.com/posquit0/Awesome-CV
|
||||
%
|
||||
% Authors:
|
||||
% Claud D. Park <posquit0.bj@gmail.com>
|
||||
% Lars Richter <mail@ayeks.de>
|
||||
%
|
||||
% 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}
|
||||
|
||||
% 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}
|
||||
% \definecolor{sectiondivider}{HTML}{5D5D5D}
|
||||
|
||||
% 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[circle,noedge,left]{./examples/profile}
|
||||
\name{Claud D.}{Park}
|
||||
\position{Site Reliability Engineer{\enskip\cdotp\enskip}Software Architect}
|
||||
\address{235, World Cup buk-ro, Mapo-gu, Seoul, 03936, Republic of Korea}
|
||||
|
||||
\mobile{(+82) 10-9030-1843}
|
||||
%\whatsapp{(+82) 10-9030-1843}
|
||||
\email{posquit0.bj@gmail.com}
|
||||
%\dateofbirth{January 1st, 1970}
|
||||
\homepage{www.posquit0.com}
|
||||
\github{posquit0}
|
||||
\linkedin{posquit0}
|
||||
% \gitlab{gitlab-id}
|
||||
% \stackoverflow{SO-id}{SO-name}
|
||||
% \twitter{@twit}
|
||||
% \x{x-id}
|
||||
% \skype{skype-id}
|
||||
% \reddit{reddit-id}
|
||||
% \medium{madium-id}
|
||||
% \kaggle{kaggle-id}
|
||||
% \hackerrank{hackerrank-id}
|
||||
% \telegram{telegram-username}
|
||||
% \googlescholar{googlescholar-id}{name-to-display}
|
||||
%% \firstname and \lastname will be used
|
||||
% \googlescholar{googlescholar-id}{}
|
||||
% \extrainfo{extra information}
|
||||
|
||||
\quote{``Be the change that you want to see in the world."}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% LETTER INFORMATION
|
||||
% All of the below lines must be filled out
|
||||
%-------------------------------------------------------------------------------
|
||||
% The company being applied to
|
||||
\recipient
|
||||
{Company Recruitment Team}
|
||||
{Google Inc.\\1600 Amphitheatre Parkway\\Mountain View, CA 94043}
|
||||
% The date on the letter, default is the date of compilation
|
||||
\letterdate{\today}
|
||||
% The title of the letter
|
||||
\lettertitle{Job Application for Software Engineer}
|
||||
% How the letter is opened
|
||||
\letteropening{Dear Mr./Ms./Dr. LastName,}
|
||||
% How the letter is closed
|
||||
\letterclosing{Sincerely,}
|
||||
% Any enclosures with the letter
|
||||
\letterenclosure[Attached]{Curriculum Vitae}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{document}
|
||||
|
||||
% Print the header with above personal information
|
||||
% Give optional argument to change alignment(C: center, L: left, R: right)
|
||||
\makecvheader[R]
|
||||
|
||||
% Print the footer with 3 arguments(<left>, <center>, <right>)
|
||||
% Leave any of these blank if they are not needed
|
||||
\makecvfooter
|
||||
{\today}
|
||||
{Claud D. Park~~~·~~~Cover Letter}
|
||||
{}
|
||||
|
||||
% Print the title with above letter information
|
||||
\makelettertitle
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% LETTER CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvletter}
|
||||
|
||||
\lettersection{About Me}
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ullamcorper neque sit amet lectus facilisis sed luctus nisl iaculis. Vivamus at neque arcu, sed tempor quam. Curabitur pharetra tincidunt tincidunt. Morbi volutpat feugiat mauris, quis tempor neque vehicula volutpat. Duis tristique justo vel massa fermentum accumsan. Mauris ante elit, feugiat vestibulum tempor eget, eleifend ac ipsum. Donec scelerisque lobortis ipsum eu vestibulum. Pellentesque vel massa at felis accumsan rhoncus.
|
||||
|
||||
\lettersection{Why Google?}
|
||||
Suspendisse commodo, massa eu congue tincidunt, elit mauris pellentesque orci, cursus tempor odio nisl euismod augue. Aliquam adipiscing nibh ut odio sodales et pulvinar tortor laoreet. Mauris a accumsan ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse vulputate sem vehicula ipsum varius nec tempus dui dapibus. Phasellus et est urna, ut auctor erat. Sed tincidunt odio id odio aliquam mattis. Donec sapien nulla, feugiat eget adipiscing sit amet, lacinia ut dolor. Phasellus tincidunt, leo a fringilla consectetur, felis diam aliquam urna, vitae aliquet lectus orci nec velit. Vivamus dapibus varius blandit.
|
||||
|
||||
\lettersection{Why Me?}
|
||||
Duis sit amet magna ante, at sodales diam. Aenean consectetur porta risus et sagittis. Ut interdum, enim varius pellentesque tincidunt, magna libero sodales tortor, ut fermentum nunc metus a ante. Vivamus odio leo, tincidunt eu luctus ut, sollicitudin sit amet metus. Nunc sed orci lectus. Ut sodales magna sed velit volutpat sit amet pulvinar diam venenatis.
|
||||
|
||||
\end{cvletter}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% Print the signature and enclosures with above letter information
|
||||
\makeletterclosing
|
||||
|
||||
\end{document}
|
||||
BIN
examples/cv.pdf
BIN
examples/cv.pdf
Binary file not shown.
|
|
@ -1,111 +0,0 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Certificates}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvhonors}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Certified Advanced Networking - Specialty} % Name
|
||||
{Amazon Web Services (AWS)} % Issuer
|
||||
{} % Credential ID
|
||||
{2023} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Certified Developer – Associate} % Name
|
||||
{Amazon Web Services (AWS)} % Issuer
|
||||
{} % Credential ID
|
||||
{2023} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Certified Cloud Practitioner} % Name
|
||||
{Amazon Web Services (AWS)} % Issuer
|
||||
{} % Credential ID
|
||||
{2023} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Certified Security - Specialty} % Name
|
||||
{Amazon Web Services (AWS)} % Issuer
|
||||
{} % Credential ID
|
||||
{2022} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Certified Solutions Architect – Professional} % Name
|
||||
{Amazon Web Services (AWS)} % Issuer
|
||||
{} % Credential ID
|
||||
{2022} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Certified Solutions Architect – Associate} % Name
|
||||
{Amazon Web Services (AWS)} % Issuer
|
||||
{} % Credential ID
|
||||
{2019} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Certified SysOps Administrator – Associate} % Name
|
||||
{Amazon Web Services (AWS)} % Issuer
|
||||
{} % Credential ID
|
||||
{2021} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{Certified Kubernetes Application Developer (CKAD)} % Name
|
||||
{The Linux Foundation} % Issuer
|
||||
{} % Credential ID
|
||||
{2020} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Certified: Terraform Authoring and Operations Professional} % Name
|
||||
{HashiCorp} % Issuer
|
||||
{} % Credential ID
|
||||
{2024} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Certified: Terraform Associate (003)} % Name
|
||||
{HashiCorp} % Issuer
|
||||
{} % Credential ID
|
||||
{2023} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Certified: Terraform Associate (002)} % Name
|
||||
{HashiCorp} % Issuer
|
||||
{} % Credential ID
|
||||
{2020} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Certified: Consul Associate (003)} % Name
|
||||
{HashiCorp} % Issuer
|
||||
{} % Credential ID
|
||||
{2024} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Certified: Consul Associate (002)} % Name
|
||||
{HashiCorp} % Issuer
|
||||
{} % Credential ID
|
||||
{2023} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Certified: Vault Associate (003)} % Name
|
||||
{HashiCorp} % Issuer
|
||||
{} % Credential ID
|
||||
{2025} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\end{cvhonors}
|
||||
|
|
@ -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}
|
||||
|
|
@ -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 - 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}
|
||||
|
|
@ -1,186 +0,0 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Experience}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cventries}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Founding Member \& Site Reliability Engineer \& Infrastructure Team Lead} % Job title
|
||||
{Danggeun Pay Inc. (KarrotPay)} % Organization
|
||||
{Seoul, S.Korea} % Location
|
||||
{Mar. 2021 - Present} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description(s) of tasks/responsibilities
|
||||
\item {Everything that matters.}
|
||||
\item {Designed and provisioned the entire infrastructure on the AWS cloud to meet security compliance and acquire a business license for financial services in Korea.}
|
||||
\item {Continuously improved the infrastructure architecture since launching the service. (currently 3.6 million users)}
|
||||
\item {Established a standardized base for declarative management of infrastructures and service deployments, enabling operational efficiency and consistency. Over 90\% of AWS resources were all managed through standardized terraform modules. All add-ons and service workloads on the Kubernetes cluster were managed on a GitOps basis with Kustomize and ArgoCD.}
|
||||
\item {Saved over 30\% of the overall AWS costs by establishing a quarterly purchasing strategiy for RI (Reserved Instance) and SP (Savings Plan) and by introducing Graviton instances.}
|
||||
\item {Established a core architecture for regulating of outbound DNS traffic in multi-account and multi-VPC environments utilizing AWS Route53 DNS Firewall and FMS. This significantly increased the level of security confidence in the financial sector's segregated environment.}
|
||||
\item {Introduced Okta employee identity solution in the company, establishing security policies and configuring SSO integration with over 20 enterprise systems including AWS, GitHub, Slack, Google Workspace. Set up a Hub and Spoke architecture, enabling a collaborative account structure with the parent company, Daangn Market.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Site Reliability Engineer} % Job title
|
||||
{Danggeun Market Inc.} % Organization
|
||||
{Seoul, S.Korea} % Location
|
||||
{Feb. 2021 - Mar. 2021} % Date(s)
|
||||
{
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Founding Member \& Director of Infrastructure Division} % Job title
|
||||
{Kasa} % Organization
|
||||
{Seoul, S.Korea} % Location
|
||||
{Jun. 2018 - Jan. 2021} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description(s) of tasks/responsibilities
|
||||
\item {Designed on-boarding process to guide new engineers, help them to focus on the right tasks, and set expectations to help them be successful at Infrastructure team.}
|
||||
\item {Migrated the orchestration system from DC/OS to Kubernetes which is based on AWS EKS. Managed 3 Kubernetes clusters and 300+ pods. Managed all Kubernetes manifests declaratively with Kustomize and ArgoCD.}
|
||||
\item {Designed and managed complex network configurations on AWS with 4 VPC and 100+ subnets. Separated the development network and operation network according to financial regulations. Established dedicated network connections from AWS VPC to partners' on-premise network based on AWS Direct Connect with secure connection using IPsec VPN. Provisioned OpenVPN servers with LDAP integration.}
|
||||
\item {Provisioned a observability system with Kafka, Elastic Stack(Filebeat, Heartbeat, APM Server, Logstash, Elasticsearch, Kibana). Collected log, uptime, tracing data from hosts, containers, pods and more. The ES cluster which has 9 nodes processed more than 1 billion documents per month. Wrote Terraform module to easily provision ES cluster on AWS EC2 instances.}
|
||||
\item {Provisioned a monitoring system with Kafka, Telegraf, InfluxDB, Grafana. Collected metrics from hosts, containers, pods and more. Wrote Terraform module to easily provision InfluxDB with HA on AWS EC2 instances.}
|
||||
\item {Introduced Kong API Gateway to easily connect all API microservices with a declarative management method based on Terraform and Atlantis to collaborate and audit change history.}
|
||||
\item {Provisioned the Directory Service for employee identity management based on OpenLDAP which guarantees HA with multi-master replication.}
|
||||
\item {Implemented Worker microservices consuming Kafka event topics for email, SMS, Kakaotalk and Slack notification. Developed in-house framework to easily build Kafka consumer microservice with common features including retry on failure, DLQ(Dead Letter Queue), event routing and more.}
|
||||
\item {Introduced Elastic APM to help distributed tracing, trouble-shooting and performance testing in MSA.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Software Architect} % Job title
|
||||
{Omnious. Co., Ltd.} % Organization
|
||||
{Seoul, S.Korea} % Location
|
||||
{Jun. 2017 - May 2018} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description(s) of tasks/responsibilities
|
||||
\item {Provisioned an easily managable hybrid infrastructure(Amazon AWS + On-premise) utilizing IaC(Infrastructure as Code) tools like Ansible, Packer and Terraform.}
|
||||
\item {Built fully automated CI/CD pipelines on CircleCI for containerized applications using Docker, AWS ECR and Rancher.}
|
||||
\item {Designed an overall service architecture and pipelines of the Machine Learning based Fashion Tagging API SaaS product with the micro-services architecture.}
|
||||
\item {Implemented several API microservices in Node.js Koa and in the serverless AWS Lambda functions.}
|
||||
\item {Deployed a centralized logging environment(ELK, Filebeat, CloudWatch, S3) which gather log data from docker containers and AWS resources.}
|
||||
\item {Deployed a centralized monitoring environment(Grafana, InfluxDB, CollectD) which gather system metrics as well as docker run-time metrics.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Co-founder \& Software Engineer} % Job title
|
||||
{PLAT Corp.} % Organization
|
||||
{Seoul, S.Korea} % Location
|
||||
{Jan. 2016 - Jun. 2017} % 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 classification 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 <Detecting video’s torrents using image similarity algorithms>} % 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.} % 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}
|
||||
|
|
@ -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 - Jun. 2017} % 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 - Jun. 2017} % 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}
|
||||
|
|
@ -1,181 +0,0 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Honors \& Awards}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% SUBSECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsubsection{International Awards}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvhonors}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{2nd Place} % Award
|
||||
{AWS ASEAN AI/ML GameDay} % Event
|
||||
{Online} % Location
|
||||
{2021} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{Finalist} % Award
|
||||
{DEFCON 28th CTF Hacking Competition World Final} % Event
|
||||
{Las Vegas, U.S.A} % Location
|
||||
{2020} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{Finalist} % Award
|
||||
{DEFCON 26th CTF Hacking Competition World Final} % Event
|
||||
{Las Vegas, U.S.A} % Location
|
||||
{2018} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{Finalist} % Award
|
||||
{DEFCON 25th CTF Hacking Competition World Final} % Event
|
||||
{Las Vegas, U.S.A} % Location
|
||||
{2017} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\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 Awards}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvhonors}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{2nd Place} % Award
|
||||
{AWS Korea GameDay} % Event
|
||||
{Seoul, S.Korea} % Location
|
||||
{2021} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\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
|
||||
{2017} % 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}
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% SUBSECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsubsection{Community}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvhonors}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Community Builder (Container)} % Award
|
||||
{Amazon Web Services (AWS)} % Event
|
||||
{} % Location
|
||||
{2022} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Ambassador} % Award
|
||||
{HashiCorp} % Event
|
||||
{} % Location
|
||||
{2022} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\end{cvhonors}
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Presentation}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cventries}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Presenter for <Hosting Web Application for Free utilizing GitHub, Netlify and CloudFlare>} % Role
|
||||
{DevFest Seoul by Google Developer Group Korea} % Event
|
||||
{Seoul, S.Korea} % Location
|
||||
{Nov. 2017} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description(s)
|
||||
\item {Introduced the history of web technology and the JAM stack which is for the modern web application development.}
|
||||
\item {Introduced how to freely host the web application with high performance utilizing global CDN services.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Presenter for <DEFCON 20th : The way to go to Las Vegas>} % 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 <Metasploit 101>} % 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}
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Skills}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvskills}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvskill
|
||||
{DevOps} % Category
|
||||
{AWS, Docker, Kubernetes, Rancher, Vagrant, Packer, Terraform, Jenkins, CircleCI} % Skills
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvskill
|
||||
{Back-end} % Category
|
||||
{Koa, Express, Django, REST API} % Skills
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvskill
|
||||
{Front-end} % Category
|
||||
{Hugo, Redux, React, HTML5, LESS, SASS} % Skills
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvskill
|
||||
{Programming} % Category
|
||||
{Node.js, Python, JAVA, OCaml, LaTeX} % Skills
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvskill
|
||||
{Languages} % Category
|
||||
{Korean, English, Japanese} % Skills
|
||||
|
||||
%---------------------------------------------------------
|
||||
\end{cvskills}
|
||||
|
|
@ -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}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 72 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 171 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 139 KiB |
Binary file not shown.
|
|
@ -1,114 +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 <posquit0.bj@gmail.com>
|
||||
% 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}
|
||||
|
||||
% 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}{3E6D9C}
|
||||
|
||||
% 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}
|
||||
% \definecolor{sectiondivider}{HTML}{5D5D5D}
|
||||
|
||||
% 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{DevOps Engineer{\enskip\cdotp\enskip}Software Architect}
|
||||
\address{Mapo-gu, Seoul, Republic of Korea}
|
||||
|
||||
\mobile{(+82) 10-9030-1843}
|
||||
%\whatsapp{(+82) 10-9030-1843}
|
||||
\email{posquit0.bj@gmail.com}
|
||||
%\dateofbirth{January 1st, 1970}
|
||||
\homepage{www.posquit0.com}
|
||||
\github{posquit0}
|
||||
\linkedin{posquit0}
|
||||
% \gitlab{gitlab-id}
|
||||
% \stackoverflow{SO-id}{SO-name}
|
||||
% \twitter{@twit}
|
||||
% \x{x-id}
|
||||
% \skype{skype-id}
|
||||
% \reddit{reddit-id}
|
||||
% \medium{madium-id}
|
||||
% \kaggle{kaggle-id}
|
||||
% \hackerrank{hackerrank-id}
|
||||
% \telegram{telegram-username}
|
||||
% \googlescholar{googlescholar-id}{name-to-display}
|
||||
%% \firstname and \lastname will be used
|
||||
% \googlescholar{googlescholar-id}{}
|
||||
% \extrainfo{extra information}
|
||||
|
||||
\quote{``Be the change that you want to see in the world."}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{document}
|
||||
|
||||
% Print the header with above personal information
|
||||
% Give optional argument to change alignment(C: center, L: left, R: right)
|
||||
\makecvheader[C]
|
||||
|
||||
% Print the footer with 3 arguments(<left>, <center>, <right>)
|
||||
% Leave any of these blank if they are not needed
|
||||
\makecvfooter
|
||||
{\today}
|
||||
{Byungjin 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/certificates.tex}
|
||||
% \input{resume/presentation.tex}
|
||||
% \input{resume/writing.tex}
|
||||
% \input{resume/committees.tex}
|
||||
\input{resume/education.tex}
|
||||
% \input{resume/extracurricular.tex}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
\end{document}
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Certificates}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvhonors}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Certified Advanced Networking - Specialty} % Name
|
||||
{Amazon Web Services (AWS)} % Issuer
|
||||
{} % Credential ID
|
||||
{2023} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Certified Security - Specialty} % Name
|
||||
{Amazon Web Services (AWS)} % Issuer
|
||||
{} % Credential ID
|
||||
{2022} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Certified Solutions Architect – Professional} % Name
|
||||
{Amazon Web Services (AWS)} % Issuer
|
||||
{} % Credential ID
|
||||
{2022} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Certified SysOps Administrator – Associate} % Name
|
||||
{Amazon Web Services (AWS)} % Issuer
|
||||
{} % Credential ID
|
||||
{2021} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{Certified Kubernetes Application Developer (CKAD)} % Name
|
||||
{The Linux Foundation} % Issuer
|
||||
{} % Credential ID
|
||||
{2020} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Certified: Terraform Authoring and Operations Professional} % Name
|
||||
{HashiCorp} % Issuer
|
||||
{} % Credential ID
|
||||
{2024} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Certified: Terraform Associate (003)} % Name
|
||||
{HashiCorp} % Issuer
|
||||
{} % Credential ID
|
||||
{2023} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Certified: Consul Associate (003)} % Name
|
||||
{HashiCorp} % Issuer
|
||||
{} % Credential ID
|
||||
{2024} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Certified: Vault Associate (003)} % Name
|
||||
{HashiCorp} % Issuer
|
||||
{} % Credential ID
|
||||
{2025} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\end{cvhonors}
|
||||
|
|
@ -1,129 +0,0 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Work Experience}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cventries}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{DevOps Engineer} % Job title
|
||||
{Dunamu Inc.} % Organization
|
||||
{Seoul, S.Korea} % Location
|
||||
{Sep. 2023 - Mar. 2024} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description(s) of tasks/responsibilities
|
||||
\item {Led service mesh technology research and implementation across enterprise cross-cluster environments, evaluating Istio, Cilium, Kuma, Consul, and AWS VPC Lattice for enhanced security and scalability.}
|
||||
\item {Designed Terraform modules to efficiently manage and scale infrastructure across dozens of AWS accounts, enabling standardized, repeatable deployments.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Founding Member \& Site Reliability Engineer \& Infrastructure Team Lead} % Job title
|
||||
{Danggeun Pay Inc. (KarrotPay)} % Organization
|
||||
{Seoul, S.Korea} % Location
|
||||
{Mar. 2021 - Jun. 2023} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description(s) of tasks/responsibilities
|
||||
\item {Everything that matters.}
|
||||
\item {Designed and provisioned the entire infrastructure on the AWS cloud to meet security compliance and acquire a business license for financial services in Korea.}
|
||||
\item {Continuously improved the infrastructure architecture since launching the service. (currently 3.6 million users)}
|
||||
\item {Established a standardized base for declarative management of infrastructures and service deployments, enabling operational efficiency and consistency. Over 90\% of AWS resources were all managed through standardized terraform modules. All add-ons and service workloads on the Kubernetes cluster were managed on a GitOps basis with Kustomize and ArgoCD.}
|
||||
\item {Saved over 30\% of the overall AWS costs by establishing a quarterly purchasing strategiy for RI (Reserved Instance) and SP (Savings Plan) and by introducing Graviton instances.}
|
||||
\item {Established a core architecture for regulating of outbound DNS traffic in multi-account and multi-VPC environments utilizing AWS Route53 DNS Firewall and FMS. This significantly increased the level of security confidence in the financial sector's segregated environment.}
|
||||
\item {Introduced Okta employee identity solution in the company, establishing security policies and configuring SSO integration with over 20 enterprise systems including AWS, GitHub, Slack, Google Workspace. Set up a Hub and Spoke architecture, enabling a collaborative account structure with the parent company, Daangn Market.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Site Reliability Engineer} % Job title
|
||||
{Danggeun Market Inc.} % Organization
|
||||
{Seoul, S.Korea} % Location
|
||||
{Feb. 2021 - Mar. 2021} % Date(s)
|
||||
{
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Founding Member \& Director of Infrastructure Division} % Job title
|
||||
{Kasa} % Organization
|
||||
{Seoul, S.Korea} % Location
|
||||
{Jun. 2018 - Jan. 2021} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description(s) of tasks/responsibilities
|
||||
\item {Designed on-boarding process to guide new engineers, help them to focus on the right tasks, and set expectations to help them be successful at Infrastructure team.}
|
||||
\item {Migrated the orchestration system from DC/OS to Kubernetes which is based on AWS EKS. Managed 3 Kubernetes clusters and 300+ pods. Managed all Kubernetes manifests declaratively with Kustomize and ArgoCD.}
|
||||
\item {Designed and managed complex network configurations on AWS with 4 VPC and 100+ subnets. Separated the development network and operation network according to financial regulations. Established dedicated network connections from AWS VPC to partners' on-premise network based on AWS Direct Connect with secure connection using IPsec VPN. Provisioned OpenVPN servers with LDAP integration.}
|
||||
\item {Provisioned a observability system with Kafka, Elastic Stack(Filebeat, Heartbeat, APM Server, Logstash, Elasticsearch, Kibana). Collected log, uptime, tracing data from hosts, containers, pods and more. The ES cluster which has 9 nodes processed more than 1 billion documents per month. Wrote Terraform module to easily provision ES cluster on AWS EC2 instances.}
|
||||
\item {Provisioned a monitoring system with Kafka, Telegraf, InfluxDB, Grafana. Collected metrics from hosts, containers, pods and more. Wrote Terraform module to easily provision InfluxDB with HA on AWS EC2 instances.}
|
||||
\item {Introduced Kong API Gateway to easily connect all API microservices with a declarative management method based on Terraform and Atlantis to collaborate and audit change history.}
|
||||
\item {Provisioned the Directory Service for employee identity management based on OpenLDAP which guarantees HA with multi-master replication.}
|
||||
\item {Implemented Worker microservices consuming Kafka event topics for email, SMS, Kakaotalk and Slack notification. Developed in-house framework to easily build Kafka consumer microservice with common features including retry on failure, DLQ(Dead Letter Queue), event routing and more.}
|
||||
\item {Introduced Elastic APM to help distributed tracing, trouble-shooting and performance testing in MSA.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Software Architect} % Job title
|
||||
{Omnious. Co., Ltd.} % Organization
|
||||
{Seoul, S.Korea} % Location
|
||||
{Jun. 2017 - May. 2018} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description(s) of tasks/responsibilities
|
||||
\item {Provisioned an easily managable hybrid infrastructure(Amazon AWS + On-premise) utilizing IaC(Infrastructure as Code) tools like Ansible, Packer and Terraform.}
|
||||
\item {Built fully automated CI/CD pipelines on CircleCI for containerized applications using Docker, AWS ECR and Rancher.}
|
||||
\item {Designed an overall service architecture and pipelines of the Machine Learning based Fashion Tagging API SaaS product with the micro-services architecture.}
|
||||
\item {Implemented several API microservices in Node.js Koa and in the serverless AWS Lambda functions.}
|
||||
\item {Deployed a centralized logging environment(ELK, Filebeat, CloudWatch, S3) which gather log data from docker containers and AWS resources.}
|
||||
\item {Deployed a centralized monitoring environment(Grafana, InfluxDB, CollectD) which gather system metrics as well as docker run-time metrics.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Co-founder \& Software Engineer} % Job title
|
||||
{PLAT Corp.} % Organization
|
||||
{Seoul, S.Korea} % Location
|
||||
{Jan. 2016 - Jun. 2017} % 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.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Software Engineer} % Job title
|
||||
{ShitOne Corp.} % 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}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\end{cventries}
|
||||
|
|
@ -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 - Jun. 2017} % 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}
|
||||
|
|
@ -1,146 +0,0 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Honors \& Awards}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% SUBSECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsubsection{International Awards}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvhonors}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{2nd Place} % Award
|
||||
{AWS ASEAN AI/ML GameDay} % Event
|
||||
{Online} % Location
|
||||
{2021} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{Finalist} % Award
|
||||
{DEFCON 28th CTF Hacking Competition World Final} % Event
|
||||
{Las Vegas, U.S.A} % Location
|
||||
{2020} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{Finalist} % Award
|
||||
{DEFCON 26th CTF Hacking Competition World Final} % Event
|
||||
{Las Vegas, U.S.A} % Location
|
||||
{2018} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{Finalist} % Award
|
||||
{DEFCON 25th CTF Hacking Competition World Final} % Event
|
||||
{Las Vegas, U.S.A} % Location
|
||||
{2017} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\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)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\end{cvhonors}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% SUBSECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsubsection{Domestic Awards}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvhonors}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{2nd Place} % Award
|
||||
{AWS Korea GameDay} % Event
|
||||
{Seoul, S.Korea} % Location
|
||||
{2021} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\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
|
||||
{2017} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{Silver Prize} % Award
|
||||
{KISA HDCON Hacking Competition Final} % Event
|
||||
{Seoul, S.Korea} % Location
|
||||
{2013} % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\end{cvhonors}
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% SUBSECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsubsection{Community}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvhonors}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{AWS Community Builder (Container)} % Award
|
||||
{Amazon Web Services (AWS)} % Event
|
||||
{} % Location
|
||||
{2022 - } % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{HashiCorp Ambassador} % Award
|
||||
{HashiCorp} % Event
|
||||
{} % Location
|
||||
{2022 - } % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cvhonor
|
||||
{Organizer of HashiCorp Korea User Group} % Award
|
||||
{HashiCorp} % Event
|
||||
{} % Location
|
||||
{2018 - } % Date(s)
|
||||
|
||||
%---------------------------------------------------------
|
||||
\end{cvhonors}
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Presentation}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cventries}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Presenter for <Hosting Web Application for Free utilizing GitHub, Netlify and CloudFlare>} % Role
|
||||
{DevFest Seoul by Google Developer Group Korea} % Event
|
||||
{Seoul, S.Korea} % Location
|
||||
{Nov. 2017} % Date(s)
|
||||
{
|
||||
\begin{cvitems} % Description(s)
|
||||
\item {Introduced the history of web technology and the JAM stack which is for the modern web application development.}
|
||||
\item {Introduced how to freely host the web application with high performance utilizing global CDN services.}
|
||||
\end{cvitems}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\cventry
|
||||
{Presenter for <DEFCON 20th : The way to go to Las Vegas>} % 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}
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
%-------------------------------------------------------------------------------
|
||||
% SECTION TITLE
|
||||
%-------------------------------------------------------------------------------
|
||||
\cvsection{Summary}
|
||||
|
||||
|
||||
%-------------------------------------------------------------------------------
|
||||
% CONTENT
|
||||
%-------------------------------------------------------------------------------
|
||||
\begin{cvparagraph}
|
||||
|
||||
%---------------------------------------------------------
|
||||
Seasoned SRE/DevOps leader currently on a career sabbatical cherishing family moments, seeking high-impact opportunities in fast-growing start-up companies. With 15+ years of hands-on software engineering expertise — specializing in service architecture, DevOps \& SRE practices, infrastructure operations, and security engineering — proven in scaling infrastructure teams as lead engineer and founding member at two fintech companies. Delivered technical advisory and consulting for DeFi, AI, and B2B SaaS startups, optimizing cloud-native architectures (AWS multi-account, Kubernetes, Terraform) for reliability and scalability.
|
||||
|
||||
Passionate to contribute to open-source projects and tech communities through knowledge sharing knowledge and experience. Big fan of terminal-centric workflows on macOS with zsh, Tmux, NeoVim, and chezmoi; relentlessly optimizes personal setups and experiments with Claude Code-powered AI workflows to tackle complex challenges faster.
|
||||
\end{cvparagraph}
|
||||
|
|
@ -1,25 +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}
|
||||
}
|
||||
|
||||
%---------------------------------------------------------
|
||||
\end{cventries}
|
||||
BIN
fonts/roboto/OTF/Roboto-Black.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-Black.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/Roboto-BlackItalic.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-BlackItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/Roboto-Bold.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-Bold.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/Roboto-BoldItalic.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-BoldItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/Roboto-Italic.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-Italic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/Roboto-Light.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-Light.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/Roboto-LightItalic.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-LightItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/Roboto-Medium.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-Medium.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/Roboto-MediumItalic.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-MediumItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/Roboto-Regular.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-Regular.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/Roboto-Thin.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-Thin.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/Roboto-ThinItalic.otf
Normal file
BIN
fonts/roboto/OTF/Roboto-ThinItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoCondensed-Bold.otf
Normal file
BIN
fonts/roboto/OTF/RobotoCondensed-Bold.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoCondensed-BoldItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoCondensed-BoldItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoCondensed-Italic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoCondensed-Italic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoCondensed-Light.otf
Normal file
BIN
fonts/roboto/OTF/RobotoCondensed-Light.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoCondensed-LightItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoCondensed-LightItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoCondensed-Regular.otf
Normal file
BIN
fonts/roboto/OTF/RobotoCondensed-Regular.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoMono-Bold.otf
Normal file
BIN
fonts/roboto/OTF/RobotoMono-Bold.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoMono-BoldItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoMono-BoldItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoMono-Italic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoMono-Italic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoMono-Light.otf
Normal file
BIN
fonts/roboto/OTF/RobotoMono-Light.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoMono-LightItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoMono-LightItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoMono-Medium.otf
Normal file
BIN
fonts/roboto/OTF/RobotoMono-Medium.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoMono-MediumItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoMono-MediumItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoMono-Regular.otf
Normal file
BIN
fonts/roboto/OTF/RobotoMono-Regular.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoMono-Thin.otf
Normal file
BIN
fonts/roboto/OTF/RobotoMono-Thin.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoMono-ThinItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoMono-ThinItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-Black.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-Black.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-BlackItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-BlackItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-Bold.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-Bold.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-BoldItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-BoldItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-ExtraBold.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-ExtraBold.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-ExtraBoldItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-ExtraBoldItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-ExtraLight.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-ExtraLight.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-ExtraLightItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-ExtraLightItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-Italic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-Italic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-Light.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-Light.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-LightItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-LightItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-Medium.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-Medium.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-MediumItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-MediumItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-Regular.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-Regular.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-SemiBold.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-SemiBold.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-SemiBoldItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-SemiBoldItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-Thin.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-Thin.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif-ThinItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif-ThinItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Black.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Black.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-BlackItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-BlackItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Bold.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Bold.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-BoldItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-BoldItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-ExtraBold.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-ExtraBold.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-ExtraBoldItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-ExtraBoldItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-ExtraLight.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-ExtraLight.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-ExtraLightItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-ExtraLightItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Italic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Italic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Light.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Light.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-LightItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-LightItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Medium.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Medium.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-MediumItalic.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-MediumItalic.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Regular.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-Regular.otf
Normal file
Binary file not shown.
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-SemiBold.otf
Normal file
BIN
fonts/roboto/OTF/RobotoSerif_Condensed-SemiBold.otf
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue