@jaimanm/resumake 1.0.0 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/.github/workflows/npm-publish.yml +0 -2
  2. package/CONTRIBUTING.md +14 -1
  3. package/package.json +5 -1
  4. package/src/commands/config.js +5 -2
  5. package/src/commands/setup.js +6 -4
  6. package/src/index.js +4 -2
  7. package/templates/awesome-cv/.github/workflows/build-resume.yml +65 -0
  8. package/templates/awesome-cv/README.md +1 -0
  9. package/templates/awesome-cv/awesome-cv.cls +885 -0
  10. package/templates/awesome-cv/build_all.sh +12 -0
  11. package/templates/awesome-cv/cv/certificates.tex +111 -0
  12. package/templates/awesome-cv/cv/committees.tex +48 -0
  13. package/templates/awesome-cv/cv/education.tex +25 -0
  14. package/templates/awesome-cv/cv/experience.tex +186 -0
  15. package/templates/awesome-cv/cv/extracurricular.tex +81 -0
  16. package/templates/awesome-cv/cv/honors.tex +181 -0
  17. package/templates/awesome-cv/cv/presentation.tex +50 -0
  18. package/templates/awesome-cv/cv/skills.tex +38 -0
  19. package/templates/awesome-cv/cv/writing.tex +37 -0
  20. package/templates/awesome-cv/cv.tex +114 -0
  21. package/templates/jakes-cv/.github/workflows/build-resume.yml +65 -0
  22. package/templates/jakes-cv/README.md +29 -0
  23. package/templates/jakes-cv/build_all.sh +22 -0
  24. package/templates/jakes-cv/cv-sections/certificates.tex +8 -0
  25. package/templates/jakes-cv/cv-sections/committees.tex +19 -0
  26. package/templates/jakes-cv/cv-sections/education.tex +10 -0
  27. package/templates/jakes-cv/cv-sections/experience.tex +22 -0
  28. package/templates/jakes-cv/cv-sections/extracurricular.tex +20 -0
  29. package/templates/jakes-cv/cv-sections/honors.tex +10 -0
  30. package/templates/jakes-cv/cv-sections/presentation.tex +19 -0
  31. package/templates/jakes-cv/cv-sections/projects.tex +15 -0
  32. package/templates/jakes-cv/cv-sections/skills.tex +10 -0
  33. package/templates/jakes-cv/cv-sections/writing.tex +19 -0
  34. package/templates/jakes-cv/cv.tex +174 -0
  35. package/templates/jakes-cv/fonts/Roboto-Bold.ttf +0 -0
  36. package/templates/jakes-cv/fonts/Roboto-BoldItalic.ttf +0 -0
  37. package/templates/jakes-cv/fonts/Roboto-Italic.ttf +0 -0
  38. package/templates/jakes-cv/fonts/Roboto-Light.ttf +0 -0
  39. package/templates/jakes-cv/fonts/Roboto-LightItalic.ttf +0 -0
  40. package/templates/jakes-cv/fonts/Roboto-Medium.ttf +0 -0
  41. package/templates/jakes-cv/fonts/Roboto-MediumItalic.ttf +0 -0
  42. package/templates/jakes-cv/fonts/Roboto-Regular.ttf +0 -0
  43. package/templates/jakes-cv/fonts/Roboto-Thin.ttf +0 -0
  44. package/templates/jakes-cv/fonts/Roboto-ThinItalic.ttf +0 -0
  45. package/templates/jakes-resume/.github/workflows/build-resume.yml +65 -0
  46. package/templates/jakes-resume/README.md +1 -0
  47. package/templates/jakes-resume/build_all.sh +7 -0
  48. package/templates/jakes-resume/resume.tex +218 -0
  49. package/templates/modular-multi/.github/workflows/build-resume.yml +65 -0
  50. package/templates/modular-multi/README.md +1 -0
  51. package/templates/modular-multi/build_all.sh +23 -0
  52. package/templates/modular-multi/resume_aiml.tex +5 -0
  53. package/templates/modular-multi/resume_backend.tex +5 -0
  54. package/templates/modular-multi/resume_content.tex +136 -0
  55. package/templates/modular-multi/resume_preamble.tex +87 -0
  56. package/templates/modular-multi/resume_quantum.tex +5 -0
  57. package/templates/modular-multi/test.txt +80 -0
  58. package/tests/index.test.js +22 -90
  59. package/tests/setup.test.js +8 -4
@@ -0,0 +1,12 @@
1
+ #!/bin/bash
2
+
3
+ mkdir -p PDF_Exports
4
+
5
+ echo "Building CV..."
6
+ latexmk -xelatex -interaction=nonstopmode -halt-on-error -jobname="Resume" -output-directory="PDF_Exports" cv.tex
7
+
8
+ # Clean up auxiliary build files
9
+ find PDF_Exports -type f ! -name "*.pdf" -delete
10
+
11
+ echo "Done! Your PDFs are organized in the PDF_Exports directory."
12
+
@@ -0,0 +1,111 @@
1
+ %-------------------------------------------------------------------------------
2
+ % SECTION TITLE
3
+ %-------------------------------------------------------------------------------
4
+ \cvsection{Certificates}
5
+
6
+
7
+ %-------------------------------------------------------------------------------
8
+ % CONTENT
9
+ %-------------------------------------------------------------------------------
10
+ \begin{cvhonors}
11
+
12
+ %---------------------------------------------------------
13
+ \cvhonor
14
+ {AWS Certified Advanced Networking - Specialty} % Name
15
+ {Amazon Web Services (AWS)} % Issuer
16
+ {} % Credential ID
17
+ {2023} % Date(s)
18
+
19
+ %---------------------------------------------------------
20
+ \cvhonor
21
+ {AWS Certified Developer – Associate} % Name
22
+ {Amazon Web Services (AWS)} % Issuer
23
+ {} % Credential ID
24
+ {2023} % Date(s)
25
+
26
+ %---------------------------------------------------------
27
+ \cvhonor
28
+ {AWS Certified Cloud Practitioner} % Name
29
+ {Amazon Web Services (AWS)} % Issuer
30
+ {} % Credential ID
31
+ {2023} % Date(s)
32
+
33
+ %---------------------------------------------------------
34
+ \cvhonor
35
+ {AWS Certified Security - Specialty} % Name
36
+ {Amazon Web Services (AWS)} % Issuer
37
+ {} % Credential ID
38
+ {2022} % Date(s)
39
+
40
+ %---------------------------------------------------------
41
+ \cvhonor
42
+ {AWS Certified Solutions Architect – Professional} % Name
43
+ {Amazon Web Services (AWS)} % Issuer
44
+ {} % Credential ID
45
+ {2022} % Date(s)
46
+
47
+ %---------------------------------------------------------
48
+ \cvhonor
49
+ {AWS Certified Solutions Architect – Associate} % Name
50
+ {Amazon Web Services (AWS)} % Issuer
51
+ {} % Credential ID
52
+ {2019} % Date(s)
53
+
54
+ %---------------------------------------------------------
55
+ \cvhonor
56
+ {AWS Certified SysOps Administrator – Associate} % Name
57
+ {Amazon Web Services (AWS)} % Issuer
58
+ {} % Credential ID
59
+ {2021} % Date(s)
60
+
61
+ %---------------------------------------------------------
62
+ \cvhonor
63
+ {Certified Kubernetes Application Developer (CKAD)} % Name
64
+ {The Linux Foundation} % Issuer
65
+ {} % Credential ID
66
+ {2020} % Date(s)
67
+
68
+ %---------------------------------------------------------
69
+ \cvhonor
70
+ {HashiCorp Certified: Terraform Authoring and Operations Professional} % Name
71
+ {HashiCorp} % Issuer
72
+ {} % Credential ID
73
+ {2024} % Date(s)
74
+
75
+ %---------------------------------------------------------
76
+ \cvhonor
77
+ {HashiCorp Certified: Terraform Associate (003)} % Name
78
+ {HashiCorp} % Issuer
79
+ {} % Credential ID
80
+ {2023} % Date(s)
81
+
82
+ %---------------------------------------------------------
83
+ \cvhonor
84
+ {HashiCorp Certified: Terraform Associate (002)} % Name
85
+ {HashiCorp} % Issuer
86
+ {} % Credential ID
87
+ {2020} % Date(s)
88
+
89
+ %---------------------------------------------------------
90
+ \cvhonor
91
+ {HashiCorp Certified: Consul Associate (003)} % Name
92
+ {HashiCorp} % Issuer
93
+ {} % Credential ID
94
+ {2024} % Date(s)
95
+
96
+ %---------------------------------------------------------
97
+ \cvhonor
98
+ {HashiCorp Certified: Consul Associate (002)} % Name
99
+ {HashiCorp} % Issuer
100
+ {} % Credential ID
101
+ {2023} % Date(s)
102
+
103
+ %---------------------------------------------------------
104
+ \cvhonor
105
+ {HashiCorp Certified: Vault Associate (003)} % Name
106
+ {HashiCorp} % Issuer
107
+ {} % Credential ID
108
+ {2025} % Date(s)
109
+
110
+ %---------------------------------------------------------
111
+ \end{cvhonors}
@@ -0,0 +1,48 @@
1
+ %-------------------------------------------------------------------------------
2
+ % SECTION TITLE
3
+ %-------------------------------------------------------------------------------
4
+ \cvsection{Program Committees}
5
+
6
+
7
+ %-------------------------------------------------------------------------------
8
+ % CONTENT
9
+ %-------------------------------------------------------------------------------
10
+ \begin{cvhonors}
11
+
12
+ %---------------------------------------------------------
13
+ \cvhonor
14
+ {Problem Writer} % Position
15
+ {2016 CODEGATE Hacking Competition World Final} % Committee
16
+ {S.Korea} % Location
17
+ {2016} % Date(s)
18
+
19
+ %---------------------------------------------------------
20
+ \cvhonor
21
+ {Organizer \& Co-director} % Position
22
+ {1st POSTECH Hackathon} % Committee
23
+ {S.Korea} % Location
24
+ {2013} % Date(s)
25
+
26
+ %---------------------------------------------------------
27
+ \cvhonor
28
+ {Staff} % Position
29
+ {7th Hacking Camp} % Committee
30
+ {S.Korea} % Location
31
+ {2012} % Date(s)
32
+
33
+ %---------------------------------------------------------
34
+ \cvhonor
35
+ {Problem Writer} % Position
36
+ {1st Hoseo University Teenager Hacking Competition} % Committee
37
+ {S.Korea} % Location
38
+ {2012} % Date(s)
39
+
40
+ %---------------------------------------------------------
41
+ \cvhonor
42
+ {Staff \& Problem Writer} % Position
43
+ {JFF(Just for Fun) Hacking Competition} % Committee
44
+ {S.Korea} % Location
45
+ {2012} % Date(s)
46
+
47
+ %---------------------------------------------------------
48
+ \end{cvhonors}
@@ -0,0 +1,25 @@
1
+ %-------------------------------------------------------------------------------
2
+ % SECTION TITLE
3
+ %-------------------------------------------------------------------------------
4
+ \cvsection{Education}
5
+
6
+
7
+ %-------------------------------------------------------------------------------
8
+ % CONTENT
9
+ %-------------------------------------------------------------------------------
10
+ \begin{cventries}
11
+
12
+ %---------------------------------------------------------
13
+ \cventry
14
+ {B.S. in Computer Science and Engineering} % Degree
15
+ {POSTECH(Pohang University of Science and Technology)} % Institution
16
+ {Pohang, S.Korea} % Location
17
+ {Mar. 2010 - Aug. 2017} % Date(s)
18
+ {
19
+ \begin{cvitems} % Description(s) bullet points
20
+ \item {Got a Chun Shin-Il Scholarship which is given to promising students in CSE Dept.}
21
+ \end{cvitems}
22
+ }
23
+
24
+ %---------------------------------------------------------
25
+ \end{cventries}
@@ -0,0 +1,186 @@
1
+ %-------------------------------------------------------------------------------
2
+ % SECTION TITLE
3
+ %-------------------------------------------------------------------------------
4
+ \cvsection{Experience}
5
+
6
+
7
+ %-------------------------------------------------------------------------------
8
+ % CONTENT
9
+ %-------------------------------------------------------------------------------
10
+ \begin{cventries}
11
+
12
+ %---------------------------------------------------------
13
+ \cventry
14
+ {Founding Member \& Site Reliability Engineer \& Infrastructure Team Lead} % Job title
15
+ {Danggeun Pay Inc. (KarrotPay)} % Organization
16
+ {Seoul, S.Korea} % Location
17
+ {Mar. 2021 - Present} % Date(s)
18
+ {
19
+ \begin{cvitems} % Description(s) of tasks/responsibilities
20
+ \item {Everything that matters.}
21
+ \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.}
22
+ \item {Continuously improved the infrastructure architecture since launching the service. (currently 3.6 million users)}
23
+ \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.}
24
+ \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.}
25
+ \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.}
26
+ \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.}
27
+ \end{cvitems}
28
+ }
29
+
30
+ %---------------------------------------------------------
31
+ \cventry
32
+ {Site Reliability Engineer} % Job title
33
+ {Danggeun Market Inc.} % Organization
34
+ {Seoul, S.Korea} % Location
35
+ {Feb. 2021 - Mar. 2021} % Date(s)
36
+ {
37
+ }
38
+
39
+ %---------------------------------------------------------
40
+ \cventry
41
+ {Founding Member \& Director of Infrastructure Division} % Job title
42
+ {Kasa} % Organization
43
+ {Seoul, S.Korea} % Location
44
+ {Jun. 2018 - Jan. 2021} % Date(s)
45
+ {
46
+ \begin{cvitems} % Description(s) of tasks/responsibilities
47
+ \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.}
48
+ \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.}
49
+ \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.}
50
+ \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.}
51
+ \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.}
52
+ \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.}
53
+ \item {Provisioned the Directory Service for employee identity management based on OpenLDAP which guarantees HA with multi-master replication.}
54
+ \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.}
55
+ \item {Introduced Elastic APM to help distributed tracing, trouble-shooting and performance testing in MSA.}
56
+ \end{cvitems}
57
+ }
58
+
59
+ %---------------------------------------------------------
60
+ \cventry
61
+ {Software Architect} % Job title
62
+ {Omnious. Co., Ltd.} % Organization
63
+ {Seoul, S.Korea} % Location
64
+ {Jun. 2017 - May 2018} % Date(s)
65
+ {
66
+ \begin{cvitems} % Description(s) of tasks/responsibilities
67
+ \item {Provisioned an easily managable hybrid infrastructure(Amazon AWS + On-premise) utilizing IaC(Infrastructure as Code) tools like Ansible, Packer and Terraform.}
68
+ \item {Built fully automated CI/CD pipelines on CircleCI for containerized applications using Docker, AWS ECR and Rancher.}
69
+ \item {Designed an overall service architecture and pipelines of the Machine Learning based Fashion Tagging API SaaS product with the micro-services architecture.}
70
+ \item {Implemented several API microservices in Node.js Koa and in the serverless AWS Lambda functions.}
71
+ \item {Deployed a centralized logging environment(ELK, Filebeat, CloudWatch, S3) which gather log data from docker containers and AWS resources.}
72
+ \item {Deployed a centralized monitoring environment(Grafana, InfluxDB, CollectD) which gather system metrics as well as docker run-time metrics.}
73
+ \end{cvitems}
74
+ }
75
+
76
+ %---------------------------------------------------------
77
+ \cventry
78
+ {Co-founder \& Software Engineer} % Job title
79
+ {PLAT Corp.} % Organization
80
+ {Seoul, S.Korea} % Location
81
+ {Jan. 2016 - Jun. 2017} % Date(s)
82
+ {
83
+ \begin{cvitems} % Description(s) of tasks/responsibilities
84
+ \item {Implemented RESTful API server for car rental booking application(CARPLAT in Google Play).}
85
+ \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.}
86
+ \item {Developed an easy-to-use Payment module which connects to major PG(Payment Gateway) companies in Korea.}
87
+ \end{cvitems}
88
+ }
89
+
90
+ %---------------------------------------------------------
91
+ \cventry
92
+ {Researcher} % Job title
93
+ {Undergraduate Research, Machine Learning Lab(Prof. Seungjin Choi)} % Organization
94
+ {Pohang, S.Korea} % Location
95
+ {Mar. 2016 - Exp. Jun. 2017} % Date(s)
96
+ {
97
+ \begin{cvitems} % Description(s) of tasks/responsibilities
98
+ \item {Researched classification algorithms(SVM, CNN) to improve accuracy of human exercise recognition with wearable device.}
99
+ \item {Developed two TIZEN applications to collect sample data set and to recognize user exercise on SAMSUNG Gear S.}
100
+ \end{cvitems}
101
+ }
102
+
103
+ %---------------------------------------------------------
104
+ \cventry
105
+ {Software Engineer \& Security Researcher (Compulsory Military Service)} % Job title
106
+ {R.O.K Cyber Command, MND} % Organization
107
+ {Seoul, S.Korea} % Location
108
+ {Aug. 2014 - Apr. 2016} % Date(s)
109
+ {
110
+ \begin{cvitems} % Description(s) of tasks/responsibilities
111
+ \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.}
112
+ \item {Implemented a distributed web stress test tool with high anonymity.}
113
+ \item {Implemented a military cooperation system which is web based real time messenger in Scala on Lift.}
114
+ \end{cvitems}
115
+ }
116
+
117
+ %---------------------------------------------------------
118
+ \cventry
119
+ {Game Developer Intern at Global Internship Program} % Job title
120
+ {NEXON} % Organization
121
+ {Seoul, S.Korea \& LA, U.S.A} % Location
122
+ {Jan. 2013 - Feb. 2013} % Date(s)
123
+ {
124
+ \begin{cvitems} % Description(s) of tasks/responsibilities
125
+ \item {Developed in Cocos2d-x an action puzzle game(Dragon Buster) targeting U.S. market.}
126
+ \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.}
127
+ \item {Won the 2nd prize in final evaluation.}
128
+ \end{cvitems}
129
+ }
130
+
131
+ %---------------------------------------------------------
132
+ \cventry
133
+ {Researcher for <Detecting video’s torrents using image similarity algorithms>} % Job title
134
+ {Undergraduate Research, Computer Vision Lab(Prof. Bohyung Han)} % Organization
135
+ {Pohang, S.Korea} % Location
136
+ {Sep. 2012 - Feb. 2013} % Date(s)
137
+ {
138
+ \begin{cvitems} % Description(s) of tasks/responsibilities
139
+ \item {Researched means of retrieving a corresponding video based on image contents using image similarity algorithm.}
140
+ \item {Implemented prototype that users can obtain torrent magnet links of corresponding video relevant to an image on web site.}
141
+ \end{cvitems}
142
+ }
143
+
144
+ %---------------------------------------------------------
145
+ \cventry
146
+ {Software Engineer Trainee} % Job title
147
+ {Software Maestro (funded by Korea Ministry of Knowledge and Economy)} % Organization
148
+ {Seoul, S.Korea} % Location
149
+ {Jul. 2012 - Jun. 2013} % Date(s)
150
+ {
151
+ \begin{cvitems} % Description(s) of tasks/responsibilities
152
+ \item {Performed research memory management strategies of OS and implemented in Python an interactive simulator for Linux kernel memory management.}
153
+ \end{cvitems}
154
+ }
155
+
156
+ %---------------------------------------------------------
157
+ \cventry
158
+ {Software Engineer} % Job title
159
+ {ShitOne Corp.} % Organization
160
+ {Seoul, S.Korea} % Location
161
+ {Dec. 2011 - Feb. 2012} % Date(s)
162
+ {
163
+ \begin{cvitems} % Description(s) of tasks/responsibilities
164
+ \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.}
165
+ \end{cvitems}
166
+ }
167
+
168
+ %---------------------------------------------------------
169
+ \cventry
170
+ {Freelance Penetration Tester} % Job title
171
+ {SAMSUNG Electronics} % Organization
172
+ {S.Korea} % Location
173
+ {Sep. 2013, Mar. 2011 - Oct. 2011} % Date(s)
174
+ {
175
+ \begin{cvitems} % Description(s) of tasks/responsibilities
176
+ \item {Conducted penetration testing on SAMSUNG KNOX, which is solution for enterprise mobile security.}
177
+ \item {Conducted penetration testing on SAMSUNG Smart TV.}
178
+ \end{cvitems}
179
+ %\begin{cvsubentries}
180
+ % \cvsubentry{}{KNOX(Solution for Enterprise Mobile Security) Penetration Testing}{Sep. 2013}{}
181
+ % \cvsubentry{}{Smart TV Penetration Testing}{Mar. 2011 - Oct. 2011}{}
182
+ %\end{cvsubentries}
183
+ }
184
+
185
+ %---------------------------------------------------------
186
+ \end{cventries}
@@ -0,0 +1,81 @@
1
+ %-------------------------------------------------------------------------------
2
+ % SECTION TITLE
3
+ %-------------------------------------------------------------------------------
4
+ \cvsection{Extracurricular Activity}
5
+
6
+
7
+ %-------------------------------------------------------------------------------
8
+ % CONTENT
9
+ %-------------------------------------------------------------------------------
10
+ \begin{cventries}
11
+
12
+ %---------------------------------------------------------
13
+ \cventry
14
+ {Core Member} % Affiliation/role
15
+ {B10S (B1t 0n the Security, Underground hacker team)} % Organization/group
16
+ {S.Korea} % Location
17
+ {Nov. 2011 - PRESENT} % Date(s)
18
+ {
19
+ \begin{cvitems} % Description(s) of experience/contributions/knowledge
20
+ \item {Gained expertise in penetration testing areas, especially targeted on web application and software.}
21
+ \item {Participated on a lot of hacking competition and won a good award.}
22
+ \item {Held several hacking competitions non-profit, just for fun.}
23
+ \end{cvitems}
24
+ }
25
+
26
+ %---------------------------------------------------------
27
+ \cventry
28
+ {Member} % Affiliation/role
29
+ {WiseGuys (Hacking \& Security research group)} % Organization/group
30
+ {S.Korea} % Location
31
+ {Jun. 2012 - PRESENT} % Date(s)
32
+ {
33
+ \begin{cvitems} % Description(s) of experience/contributions/knowledge
34
+ \item {Gained expertise in hardware hacking areas from penetration testing on several devices including wireless router, smartphone, CCTV and set-top box.}
35
+ \item {Trained wannabe hacker about hacking technique from basic to advanced and ethics for white hackers by hosting annual Hacking Camp.}
36
+ \end{cvitems}
37
+ }
38
+
39
+ %---------------------------------------------------------
40
+ \cventry
41
+ {Core Member \& President at 2013} % Affiliation/role
42
+ {PoApper (Developers' Network of POSTECH)} % Organization/group
43
+ {Pohang, S.Korea} % Location
44
+ {Jun. 2010 - Jun. 2017} % Date(s)
45
+ {
46
+ \begin{cvitems} % Description(s) of experience/contributions/knowledge
47
+ \item {Reformed the society focusing on software engineering and building network on and off campus.}
48
+ \item {Proposed various marketing and network activities to raise awareness.}
49
+ \end{cvitems}
50
+ }
51
+
52
+ %---------------------------------------------------------
53
+ \cventry
54
+ {Member} % Affiliation/role
55
+ {PLUS (Laboratory for UNIX Security in POSTECH)} % Organization/group
56
+ {Pohang, S.Korea} % Location
57
+ {Sep. 2010 - Oct. 2011} % Date(s)
58
+ {
59
+ \begin{cvitems} % Description(s) of experience/contributions/knowledge
60
+ \item {Gained expertise in hacking \& security areas, especially about internal of operating system based on UNIX and several exploit techniques.}
61
+ \item {Participated on several hacking competition and won a good award.}
62
+ \item {Conducted periodic security checks on overall IT system as a member of POSTECH CERT.}
63
+ \item {Conducted penetration testing commissioned by national agency and corporation.}
64
+ \end{cvitems}
65
+ }
66
+
67
+ %---------------------------------------------------------
68
+ \cventry
69
+ {Member} % Affiliation/role
70
+ {MSSA (Management Strategy Club of POSTECH)} % Organization/group
71
+ {Pohang, S.Korea} % Location
72
+ {Sep. 2013 - Jun. 2017} % Date(s)
73
+ {
74
+ \begin{cvitems} % Description(s) of experience/contributions/knowledge
75
+ \item {Gained knowledge about several business field like Management, Strategy, Financial and marketing from group study.}
76
+ \item {Gained expertise in business strategy areas and inisght for various industry from weekly industry analysis session.}
77
+ \end{cvitems}
78
+ }
79
+
80
+ %---------------------------------------------------------
81
+ \end{cventries}
@@ -0,0 +1,181 @@
1
+ %-------------------------------------------------------------------------------
2
+ % SECTION TITLE
3
+ %-------------------------------------------------------------------------------
4
+ \cvsection{Honors \& Awards}
5
+
6
+
7
+ %-------------------------------------------------------------------------------
8
+ % SUBSECTION TITLE
9
+ %-------------------------------------------------------------------------------
10
+ \cvsubsection{International Awards}
11
+
12
+
13
+ %-------------------------------------------------------------------------------
14
+ % CONTENT
15
+ %-------------------------------------------------------------------------------
16
+ \begin{cvhonors}
17
+
18
+ %---------------------------------------------------------
19
+ \cvhonor
20
+ {2nd Place} % Award
21
+ {AWS ASEAN AI/ML GameDay} % Event
22
+ {Online} % Location
23
+ {2021} % Date(s)
24
+
25
+ %---------------------------------------------------------
26
+ \cvhonor
27
+ {Finalist} % Award
28
+ {DEFCON 28th CTF Hacking Competition World Final} % Event
29
+ {Las Vegas, U.S.A} % Location
30
+ {2020} % Date(s)
31
+
32
+ %---------------------------------------------------------
33
+ \cvhonor
34
+ {Finalist} % Award
35
+ {DEFCON 26th CTF Hacking Competition World Final} % Event
36
+ {Las Vegas, U.S.A} % Location
37
+ {2018} % Date(s)
38
+
39
+ %---------------------------------------------------------
40
+ \cvhonor
41
+ {Finalist} % Award
42
+ {DEFCON 25th CTF Hacking Competition World Final} % Event
43
+ {Las Vegas, U.S.A} % Location
44
+ {2017} % Date(s)
45
+
46
+ %---------------------------------------------------------
47
+ \cvhonor
48
+ {Finalist} % Award
49
+ {DEFCON 22nd CTF Hacking Competition World Final} % Event
50
+ {Las Vegas, U.S.A} % Location
51
+ {2014} % Date(s)
52
+
53
+ %---------------------------------------------------------
54
+ \cvhonor
55
+ {Finalist} % Award
56
+ {DEFCON 21st CTF Hacking Competition World Final} % Event
57
+ {Las Vegas, U.S.A} % Location
58
+ {2013} % Date(s)
59
+
60
+ %---------------------------------------------------------
61
+ \cvhonor
62
+ {Finalist} % Award
63
+ {DEFCON 19th CTF Hacking Competition World Final} % Event
64
+ {Las Vegas, U.S.A} % Location
65
+ {2011} % Date(s)
66
+
67
+ %---------------------------------------------------------
68
+ \cvhonor
69
+ {6th Place} % Award
70
+ {SECUINSIDE Hacking Competition World Final} % Event
71
+ {Seoul, S.Korea} % Location
72
+ {2012} % Date(s)
73
+
74
+ %---------------------------------------------------------
75
+ \end{cvhonors}
76
+
77
+
78
+ %-------------------------------------------------------------------------------
79
+ % SUBSECTION TITLE
80
+ %-------------------------------------------------------------------------------
81
+ \cvsubsection{Domestic Awards}
82
+
83
+
84
+ %-------------------------------------------------------------------------------
85
+ % CONTENT
86
+ %-------------------------------------------------------------------------------
87
+ \begin{cvhonors}
88
+
89
+ %---------------------------------------------------------
90
+ \cvhonor
91
+ {2nd Place} % Award
92
+ {AWS Korea GameDay} % Event
93
+ {Seoul, S.Korea} % Location
94
+ {2021} % Date(s)
95
+
96
+ %---------------------------------------------------------
97
+ \cvhonor
98
+ {3rd Place} % Award
99
+ {WITHCON Hacking Competition Final} % Event
100
+ {Seoul, S.Korea} % Location
101
+ {2015} % Date(s)
102
+
103
+ %---------------------------------------------------------
104
+ \cvhonor
105
+ {Silver Prize} % Award
106
+ {KISA HDCON Hacking Competition Final} % Event
107
+ {Seoul, S.Korea} % Location
108
+ {2017} % Date(s)
109
+
110
+ %---------------------------------------------------------
111
+ \cvhonor
112
+ {Silver Prize} % Award
113
+ {KISA HDCON Hacking Competition Final} % Event
114
+ {Seoul, S.Korea} % Location
115
+ {2013} % Date(s)
116
+
117
+ %---------------------------------------------------------
118
+ \cvhonor
119
+ {2nd Award} % Award
120
+ {HUST Hacking Festival} % Event
121
+ {S.Korea} % Location
122
+ {2013} % Date(s)
123
+
124
+ %---------------------------------------------------------
125
+ \cvhonor
126
+ {3rd Award} % Award
127
+ {HUST Hacking Festival} % Event
128
+ {S.Korea} % Location
129
+ {2010} % Date(s)
130
+
131
+ %---------------------------------------------------------
132
+ \cvhonor
133
+ {3rd Award} % Award
134
+ {Holyshield 3rd Hacking Festival} % Event
135
+ {S.Korea} % Location
136
+ {2012} % Date(s)
137
+
138
+ %---------------------------------------------------------
139
+ \cvhonor
140
+ {2nd Award} % Award
141
+ {Holyshield 3rd Hacking Festival} % Event
142
+ {S.Korea} % Location
143
+ {2011} % Date(s)
144
+
145
+ %---------------------------------------------------------
146
+ \cvhonor
147
+ {5th Place} % Award
148
+ {PADOCON Hacking Competition Final} % Event
149
+ {Seoul, S.Korea} % Location
150
+ {2011} % Date(s)
151
+
152
+ %---------------------------------------------------------
153
+ \end{cvhonors}
154
+
155
+ %-------------------------------------------------------------------------------
156
+ % SUBSECTION TITLE
157
+ %-------------------------------------------------------------------------------
158
+ \cvsubsection{Community}
159
+
160
+
161
+ %-------------------------------------------------------------------------------
162
+ % CONTENT
163
+ %-------------------------------------------------------------------------------
164
+ \begin{cvhonors}
165
+
166
+ %---------------------------------------------------------
167
+ \cvhonor
168
+ {AWS Community Builder (Container)} % Award
169
+ {Amazon Web Services (AWS)} % Event
170
+ {} % Location
171
+ {2022} % Date(s)
172
+
173
+ %---------------------------------------------------------
174
+ \cvhonor
175
+ {HashiCorp Ambassador} % Award
176
+ {HashiCorp} % Event
177
+ {} % Location
178
+ {2022} % Date(s)
179
+
180
+ %---------------------------------------------------------
181
+ \end{cvhonors}