[
  {
    "path": ".github/CODEOWNERS",
    "content": "*      @posquit0 @OJFord\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n- package-ecosystem: \"github-actions\"\n  directory: \"/\"\n  schedule:\n    interval: \"daily\"\n"
  },
  {
    "path": ".github/labeler.yaml",
    "content": ""
  },
  {
    "path": ".github/labels.yaml",
    "content": "# Warning\n- color: \"ee0701\"\n  description: \"Categorize bug reports.\"\n  name: \":warning: bug\"\n- color: \"ee0701\"\n  description: \"Categorize vulnerability reports.\"\n  name: \":warning: vulnerability\"\n\n# Highlight\n- color: \"0e8a16\"\n  description: \"Good for newcomers.\"\n  name: \":fire: good first issue\"\n- color: \"0e8a16\"\n  description: \"Extra attention is needed.\"\n  name: \":fire: help wanted\"\n\n# Cancel\n- color: \"b60205\"\n  description: \"This issue or pull request already exists.\"\n  name: \":pray: duplicate\"\n- color: \"b60205\"\n  description: \"This will not be worked on.\"\n  name: \":pray: wontfix\"\n\n# Size\n- color: \"cfd3d7\"\n  description: \"Extra Small size issue or PR.\"\n  name: \"size/XS\"\n- color: \"cfd3d7\"\n  description: \"Small size issue or PR.\"\n  name: \"size/S\"\n- color: \"cfd3d7\"\n  description: \"Medium size issue or PR.\"\n  name: \"size/M\"\n- color: \"cfd3d7\"\n  description: \"Large size issue or PR.\"\n  name: \"size/L\"\n- color: \"cfd3d7\"\n  description: \"Extra Large size issue or PR.\"\n  name: \"size/XL\"\n"
  },
  {
    "path": ".github/workflows/integration.yaml",
    "content": "name: Integration\n\non:\n  push:\n    branches:\n    - master\n  pull_request: {}\n\nconcurrency:\n  group: integration-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  changed:\n    runs-on: ubuntu-latest\n\n    outputs:\n      yaml_changed: ${{ steps.filter-yaml.outputs.changed }}\n      yaml_files: ${{ steps.filter-yaml.outputs.files }}\n\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v6\n      with:\n        fetch-depth: 0\n\n    - name: Get Changed Files\n      id: changed-files\n      uses: dorny/paths-filter@v3\n      with:\n        list-files: json\n        filters: |\n          yaml:\n          - '**/*.yaml'\n          - '**/*.yml'\n\n    - name: Filter changed YAML files to outputs\n      id: filter-yaml\n      run: |\n        echo ::set-output name=changed::${{ steps.changed-files.outputs.yaml }}\n        echo ::set-output name=files::${{ steps.changed-files.outputs.yaml_files }}\n\n\n  yaml:\n    needs:\n    - changed\n    if: ${{ needs.changed.outputs.yaml_changed != 'false' }}\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v6\n\n    - name: Lint YAML Files\n      id: yaml-lint\n      run: |\n        yamllint .\n"
  },
  {
    "path": ".github/workflows/main.yml",
    "content": "name: Compile PDFs\n\non:\n  push: {}\n  pull_request: {}\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    container: texlive/texlive:latest\n\n    steps:\n    - name: Checkout repo\n      uses: actions/checkout@v6\n\n    - name: Install fonts\n      run: |\n        apt update\n        apt install --yes \\\n          fonts-roboto \\\n          fonts-adobe-sourcesans3 \\\n          ;\n\n    - name: Compile\n      run: make\n\n    - uses: actions/upload-artifact@v6\n      with:\n        name: examples\n        path: examples/*.pdf\n"
  },
  {
    "path": ".github/workflows/pull-request-labeler.yaml",
    "content": "name: Label Pull Requests\n\non:\n- pull_request_target\n\njobs:\n  label-pr:\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Add Labels for PR\n      uses: actions/labeler@v6\n      with:\n        repo-token: \"${{ secrets.GITHUB_TOKEN }}\"\n        configuration-path: .github/labeler.yaml\n        sync-labels: true\n\n    - name: Add PR Size Labels for PR\n      uses: codelytv/pr-size-labeler@v1\n      with:\n        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n        xs_label: 'size/XS'\n        xs_max_size: '20'\n        s_label: 'size/S'\n        s_max_size: '100'\n        m_label: 'size/M'\n        m_max_size: '500'\n        l_label: 'size/L'\n        l_max_size: '1000'\n        xl_label: 'size/XL'\n        fail_if_xl: 'false'\n        message_if_xl: >\n          'This PR has too many changes.\n          Please make sure you are NOT addressing multiple issues with one PR.'\n        files_to_ignore: |\n          \"examples/*\"\n          \"*.otf\"\n          \"*.pdf\"\n          \"*.png\"\n          \"*.sty\"\n          \"*.ttf\"\n"
  },
  {
    "path": ".github/workflows/sync-labels.yaml",
    "content": "name: Sync labels\n\non:\n  push:\n    branches:\n    - master\n    paths:\n    - .github/labels.yaml\n\njobs:\n  sync-labels:\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v6\n\n    - name: Sync labels\n      uses: crazy-max/ghaction-github-labeler@v5\n      with:\n        github-token: ${{ secrets.GITHUB_TOKEN }}\n        yaml-file: .github/labels.yaml\n        skip-delete: false\n        dry-run: false\n        # exclude: |\n"
  },
  {
    "path": ".github/workflows/welcome.yaml",
    "content": "name: Welcome for First Issue or Pull Request\n\non:\n  pull_request_target:\n    types:\n    - opened\n  issues:\n    types:\n    - opened\n\njobs:\n  welcome:\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Welcome for First Issue or Pull Request\n      uses: actions/first-interaction@v1\n      with:\n        repo-token: ${{ secrets.GITHUB_TOKEN }}\n        issue-message: |\n          ### :wave: Welcome! Looks like this is your first issue.\n\n          Hey, thanks for your contribution! Please give us a bit of time to review it. 😄\n        pr-message: |\n          ### :wave: Welcome! Looks like this is your first pull request.\n\n          Hey, thanks for your contribution! Please give us a bit of time to review it. 😄\n"
  },
  {
    "path": ".gitignore",
    "content": "### TeX ###\n## Core latex/pdflatex auxiliary files:\n*.aux\n*.lof\n*.log\n*.lot\n*.fls\n*.out\n*.toc\n\n## Intermediate documents:\n*.dvi\n*-converted-to.*\n\n### Editor ###\n## Vim & Emacs temp files:\n.*sw[op]\n*~\n\n### Mac OS X ###\n## Mac OS X metadata files:\n*.DS_Store\n\n"
  },
  {
    "path": ".yamllint.yaml",
    "content": "yaml-files:\n- '*.yaml'\n- '*.yml'\n\nrules:\n  braces:\n    min-spaces-inside: 0\n    max-spaces-inside: 1\n    min-spaces-inside-empty: 0\n    max-spaces-inside-empty: 0\n  brackets:\n    min-spaces-inside: 0\n    max-spaces-inside: 1\n    min-spaces-inside-empty: 0\n    max-spaces-inside-empty: 0\n  colons:\n    max-spaces-before: 0\n    max-spaces-after: 1\n  commas:\n    max-spaces-before: 0\n  comments:\n    level: warning\n    require-starting-space: true\n    min-spaces-from-content: 1\n  comments-indentation: disable\n  document-end: disable\n  document-start: disable\n  empty-lines:\n    level: warning\n    max: 2\n    max-start: 0\n    max-end: 1\n  empty-values:\n    forbid-in-block-mappings: true\n    forbid-in-flow-mappings: true\n  hyphens:\n    max-spaces-after: 1\n  indentation:\n    spaces: consistent\n    indent-sequences: false\n  key-duplicates: enable\n  key-ordering: disable\n  line-length: disable\n  new-line-at-end-of-file: enable\n  # Use UNIX new line characters `\\n` instead of DOS new line characters `\\r\\n`\n  new-lines:\n    type: unix\n  octal-values: disable\n  quoted-strings:\n    quote-type: any\n    required: false\n  trailing-spaces: enable\n  truthy: disable\n"
  },
  {
    "path": "LICENCE",
    "content": "The LaTeX Project Public License\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n\nLPPL Version 1.3c  2008-05-04\n\nCopyright 1999 2002-2008 LaTeX3 Project\n    Everyone is allowed to distribute verbatim copies of this\n    license document, but modification of it is not allowed.\n\n\nPREAMBLE\n========\n\nThe LaTeX Project Public License (LPPL) is the primary license under\nwhich the LaTeX kernel and the base LaTeX packages are distributed.\n\nYou may use this license for any work of which you hold the copyright\nand which you wish to distribute.  This license may be particularly\nsuitable if your work is TeX-related (such as a LaTeX package), but \nit is written in such a way that you can use it even if your work is \nunrelated to TeX.\n\nThe section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE',\nbelow, gives instructions, examples, and recommendations for authors\nwho are considering distributing their works under this license.\n\nThis license gives conditions under which a work may be distributed\nand modified, as well as conditions under which modified versions of\nthat work may be distributed.\n\nWe, the LaTeX3 Project, believe that the conditions below give you\nthe freedom to make and distribute modified versions of your work\nthat conform with whatever technical specifications you wish while\nmaintaining the availability, integrity, and reliability of\nthat work.  If you do not see how to achieve your goal while\nmeeting these conditions, then read the document `cfgguide.tex'\nand `modguide.tex' in the base LaTeX distribution for suggestions.\n\n\nDEFINITIONS\n===========\n\nIn this license document the following terms are used:\n\n   `Work'\n    Any work being distributed under this License.\n    \n   `Derived Work'\n    Any work that under any applicable law is derived from the Work.\n\n   `Modification' \n    Any procedure that produces a Derived Work under any applicable\n    law -- for example, the production of a file containing an\n    original file associated with the Work or a significant portion of\n    such a file, either verbatim or with modifications and/or\n    translated into another language.\n\n   `Modify'\n    To apply any procedure that produces a Derived Work under any\n    applicable law.\n    \n   `Distribution'\n    Making copies of the Work available from one person to another, in\n    whole or in part.  Distribution includes (but is not limited to)\n    making any electronic components of the Work accessible by\n    file transfer protocols such as FTP or HTTP or by shared file\n    systems such as Sun's Network File System (NFS).\n\n   `Compiled Work'\n    A version of the Work that has been processed into a form where it\n    is directly usable on a computer system.  This processing may\n    include using installation facilities provided by the Work,\n    transformations of the Work, copying of components of the Work, or\n    other activities.  Note that modification of any installation\n    facilities provided by the Work constitutes modification of the Work.\n\n   `Current Maintainer'\n    A person or persons nominated as such within the Work.  If there is\n    no such explicit nomination then it is the `Copyright Holder' under\n    any applicable law.\n\n   `Base Interpreter' \n    A program or process that is normally needed for running or\n    interpreting a part or the whole of the Work.    \n\n    A Base Interpreter may depend on external components but these\n    are not considered part of the Base Interpreter provided that each\n    external component clearly identifies itself whenever it is used\n    interactively.  Unless explicitly specified when applying the\n    license to the Work, the only applicable Base Interpreter is a\n    `LaTeX-Format' or in the case of files belonging to the \n    `LaTeX-format' a program implementing the `TeX language'.\n\n\n\nCONDITIONS ON DISTRIBUTION AND MODIFICATION\n===========================================\n\n1.  Activities other than distribution and/or modification of the Work\nare not covered by this license; they are outside its scope.  In\nparticular, the act of running the Work is not restricted and no\nrequirements are made concerning any offers of support for the Work.\n\n2.  You may distribute a complete, unmodified copy of the Work as you\nreceived it.  Distribution of only part of the Work is considered\nmodification of the Work, and no right to distribute such a Derived\nWork may be assumed under the terms of this clause.\n\n3.  You may distribute a Compiled Work that has been generated from a\ncomplete, unmodified copy of the Work as distributed under Clause 2\nabove, as long as that Compiled Work is distributed in such a way that\nthe recipients may install the Compiled Work on their system exactly\nas it would have been installed if they generated a Compiled Work\ndirectly from the Work.\n\n4.  If you are the Current Maintainer of the Work, you may, without\nrestriction, modify the Work, thus creating a Derived Work.  You may\nalso distribute the Derived Work without restriction, including\nCompiled Works generated from the Derived Work.  Derived Works\ndistributed in this manner by the Current Maintainer are considered to\nbe updated versions of the Work.\n\n5.  If you are not the Current Maintainer of the Work, you may modify\nyour copy of the Work, thus creating a Derived Work based on the Work,\nand compile this Derived Work, thus creating a Compiled Work based on\nthe Derived Work.\n\n6.  If you are not the Current Maintainer of the Work, you may\ndistribute a Derived Work provided the following conditions are met\nfor every component of the Work unless that component clearly states\nin the copyright notice that it is exempt from that condition.  Only\nthe Current Maintainer is allowed to add such statements of exemption \nto a component of the Work. \n\n  a. If a component of this Derived Work can be a direct replacement\n     for a component of the Work when that component is used with the\n     Base Interpreter, then, wherever this component of the Work\n     identifies itself to the user when used interactively with that\n     Base Interpreter, the replacement component of this Derived Work\n     clearly and unambiguously identifies itself as a modified version\n     of this component to the user when used interactively with that\n     Base Interpreter.\n     \n  b. Every component of the Derived Work contains prominent notices\n     detailing the nature of the changes to that component, or a\n     prominent reference to another file that is distributed as part\n     of the Derived Work and that contains a complete and accurate log\n     of the changes.\n  \n  c. No information in the Derived Work implies that any persons,\n     including (but not limited to) the authors of the original version\n     of the Work, provide any support, including (but not limited to)\n     the reporting and handling of errors, to recipients of the\n     Derived Work unless those persons have stated explicitly that\n     they do provide such support for the Derived Work.\n\n  d. You distribute at least one of the following with the Derived Work:\n\n       1. A complete, unmodified copy of the Work; \n          if your distribution of a modified component is made by\n          offering access to copy the modified component from a\n          designated place, then offering equivalent access to copy\n          the Work from the same or some similar place meets this\n          condition, even though third parties are not compelled to\n          copy the Work along with the modified component;\n\n       2. Information that is sufficient to obtain a complete,\n          unmodified copy of the Work.\n\n7.  If you are not the Current Maintainer of the Work, you may\ndistribute a Compiled Work generated from a Derived Work, as long as\nthe Derived Work is distributed to all recipients of the Compiled\nWork, and as long as the conditions of Clause 6, above, are met with\nregard to the Derived Work.\n\n8.  The conditions above are not intended to prohibit, and hence do not\napply to, the modification, by any method, of any component so that it\nbecomes identical to an updated version of that component of the Work as\nit is distributed by the Current Maintainer under Clause 4, above.\n\n9.  Distribution of the Work or any Derived Work in an alternative\nformat, where the Work or that Derived Work (in whole or in part) is\nthen produced by applying some process to that format, does not relax or\nnullify any sections of this license as they pertain to the results of\napplying that process.\n     \n10. a. A Derived Work may be distributed under a different license\n       provided that license itself honors the conditions listed in\n       Clause 6 above, in regard to the Work, though it does not have\n       to honor the rest of the conditions in this license.\n      \n    b. If a Derived Work is distributed under a different license, that\n       Derived Work must provide sufficient documentation as part of\n       itself to allow each recipient of that Derived Work to honor the \n       restrictions in Clause 6 above, concerning changes from the Work.\n\n11. This license places no restrictions on works that are unrelated to\nthe Work, nor does this license place any restrictions on aggregating\nsuch works with the Work by any means.\n\n12.  Nothing in this license is intended to, or may be used to, prevent\ncomplete compliance by all parties with all applicable laws.\n\n\nNO WARRANTY\n===========\n\nThere is no warranty for the Work.  Except when otherwise stated in\nwriting, the Copyright Holder provides the Work `as is', without\nwarranty of any kind, either expressed or implied, including, but not\nlimited to, the implied warranties of merchantability and fitness for a\nparticular purpose.  The entire risk as to the quality and performance\nof the Work is with you.  Should the Work prove defective, you assume\nthe cost of all necessary servicing, repair, or correction.\n\nIn no event unless required by applicable law or agreed to in writing\nwill The Copyright Holder, or any author named in the components of the\nWork, or any other party who may distribute and/or modify the Work as\npermitted above, be liable to you for damages, including any general,\nspecial, incidental or consequential damages arising out of any use of\nthe Work or out of inability to use the Work (including, but not limited\nto, loss of data, data being rendered inaccurate, or losses sustained by\nanyone as a result of any failure of the Work to operate with any other\nprograms), even if the Copyright Holder or said author or said other\nparty has been advised of the possibility of such damages.\n\n\nMAINTENANCE OF THE WORK\n=======================\n\nThe Work has the status `author-maintained' if the Copyright Holder\nexplicitly and prominently states near the primary copyright notice in\nthe Work that the Work can only be maintained by the Copyright Holder\nor simply that it is `author-maintained'.\n\nThe Work has the status `maintained' if there is a Current Maintainer\nwho has indicated in the Work that they are willing to receive error\nreports for the Work (for example, by supplying a valid e-mail\naddress). It is not required for the Current Maintainer to acknowledge\nor act upon these error reports.\n\nThe Work changes from status `maintained' to `unmaintained' if there\nis no Current Maintainer, or the person stated to be Current\nMaintainer of the work cannot be reached through the indicated means\nof communication for a period of six months, and there are no other\nsignificant signs of active maintenance.\n\nYou can become the Current Maintainer of the Work by agreement with\nany existing Current Maintainer to take over this role.\n\nIf the Work is unmaintained, you can become the Current Maintainer of\nthe Work through the following steps:\n\n 1.  Make a reasonable attempt to trace the Current Maintainer (and\n     the Copyright Holder, if the two differ) through the means of\n     an Internet or similar search.\n\n 2.  If this search is successful, then enquire whether the Work\n     is still maintained.\n\n  a. If it is being maintained, then ask the Current Maintainer\n     to update their communication data within one month.\n     \n  b. If the search is unsuccessful or no action to resume active\n     maintenance is taken by the Current Maintainer, then announce\n     within the pertinent community your intention to take over\n     maintenance.  (If the Work is a LaTeX work, this could be\n     done, for example, by posting to comp.text.tex.)\n\n 3a. If the Current Maintainer is reachable and agrees to pass\n     maintenance of the Work to you, then this takes effect\n     immediately upon announcement.\n     \n  b. If the Current Maintainer is not reachable and the Copyright\n     Holder agrees that maintenance of the Work be passed to you,\n     then this takes effect immediately upon announcement.  \n    \n 4.  If you make an `intention announcement' as described in 2b. above\n     and after three months your intention is challenged neither by\n     the Current Maintainer nor by the Copyright Holder nor by other\n     people, then you may arrange for the Work to be changed so as\n     to name you as the (new) Current Maintainer.\n     \n 5.  If the previously unreachable Current Maintainer becomes\n     reachable once more within three months of a change completed\n     under the terms of 3b) or 4), then that Current Maintainer must\n     become or remain the Current Maintainer upon request provided\n     they then update their communication data within one month.\n\nA change in the Current Maintainer does not, of itself, alter the fact\nthat the Work is distributed under the LPPL license.\n\nIf you become the Current Maintainer of the Work, you should\nimmediately provide, within the Work, a prominent and unambiguous\nstatement of your status as Current Maintainer.  You should also\nannounce your new status to the same pertinent community as\nin 2b) above.\n\n\nWHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE\n======================================================\n\nThis section contains important instructions, examples, and\nrecommendations for authors who are considering distributing their\nworks under this license.  These authors are addressed as `you' in\nthis section.\n\nChoosing This License or Another License\n----------------------------------------\n\nIf for any part of your work you want or need to use *distribution*\nconditions that differ significantly from those in this license, then\ndo not refer to this license anywhere in your work but, instead,\ndistribute your work under a different license.  You may use the text\nof this license as a model for your own license, but your license\nshould not refer to the LPPL or otherwise give the impression that\nyour work is distributed under the LPPL.\n\nThe document `modguide.tex' in the base LaTeX distribution explains\nthe motivation behind the conditions of this license.  It explains,\nfor example, why distributing LaTeX under the GNU General Public\nLicense (GPL) was considered inappropriate.  Even if your work is\nunrelated to LaTeX, the discussion in `modguide.tex' may still be\nrelevant, and authors intending to distribute their works under any\nlicense are encouraged to read it.\n\nA Recommendation on Modification Without Distribution\n-----------------------------------------------------\n\nIt is wise never to modify a component of the Work, even for your own\npersonal use, without also meeting the above conditions for\ndistributing the modified component.  While you might intend that such\nmodifications will never be distributed, often this will happen by\naccident -- you may forget that you have modified that component; or\nit may not occur to you when allowing others to access the modified\nversion that you are thus distributing it and violating the conditions\nof this license in ways that could have legal implications and, worse,\ncause problems for the community.  It is therefore usually in your\nbest interest to keep your copy of the Work identical with the public\none.  Many works provide ways to control the behavior of that work\nwithout altering any of its licensed components.\n\nHow to Use This License\n-----------------------\n\nTo use this license, place in each of the components of your work both\nan explicit copyright notice including your name and the year the work\nwas authored and/or last substantially modified.  Include also a\nstatement that the distribution and/or modification of that\ncomponent is constrained by the conditions in this license.\n\nHere is an example of such a notice and statement:\n\n  %% pig.dtx\n  %% Copyright 2005 M. Y. Name\n  %\n  % This work may be distributed and/or modified under the\n  % conditions of the LaTeX Project Public License, either version 1.3\n  % of this license or (at your option) any later version.\n  % The latest version of this license is in\n  %   http://www.latex-project.org/lppl.txt\n  % and version 1.3 or later is part of all distributions of LaTeX\n  % version 2005/12/01 or later.\n  %\n  % This work has the LPPL maintenance status `maintained'.\n  % \n  % The Current Maintainer of this work is M. Y. Name.\n  %\n  % This work consists of the files pig.dtx and pig.ins\n  % and the derived file pig.sty.\n\nGiven such a notice and statement in a file, the conditions\ngiven in this license document would apply, with the `Work' referring\nto the three files `pig.dtx', `pig.ins', and `pig.sty' (the last being\ngenerated from `pig.dtx' using `pig.ins'), the `Base Interpreter'\nreferring to any `LaTeX-Format', and both `Copyright Holder' and\n`Current Maintainer' referring to the person `M. Y. Name'.\n\nIf you do not want the Maintenance section of LPPL to apply to your\nWork, change `maintained' above into `author-maintained'.  \nHowever, we recommend that you use `maintained', as the Maintenance\nsection was added in order to ensure that your Work remains useful to\nthe community even when you can no longer maintain and support it\nyourself.\n\nDerived Works That Are Not Replacements\n---------------------------------------\n\nSeveral clauses of the LPPL specify means to provide reliability and\nstability for the user community. They therefore concern themselves\nwith the case that a Derived Work is intended to be used as a\n(compatible or incompatible) replacement of the original Work. If\nthis is not the case (e.g., if a few lines of code are reused for a\ncompletely different task), then clauses 6b and 6d shall not apply.\n\n\nImportant Recommendations\n-------------------------\n\n Defining What Constitutes the Work\n\n   The LPPL requires that distributions of the Work contain all the\n   files of the Work.  It is therefore important that you provide a\n   way for the licensee to determine which files constitute the Work.\n   This could, for example, be achieved by explicitly listing all the\n   files of the Work near the copyright notice of each file or by\n   using a line such as:\n\n    % This work consists of all files listed in manifest.txt.\n   \n   in that place.  In the absence of an unequivocal list it might be\n   impossible for the licensee to determine what is considered by you\n   to comprise the Work and, in such a case, the licensee would be\n   entitled to make reasonable conjectures as to which files comprise\n   the Work.\n\n\n"
  },
  {
    "path": "Makefile",
    "content": ".PHONY: examples\n\nCC = lualatex\nEXAMPLES_DIR = examples\nRESUME_DIR = examples/resume\nCV_DIR = examples/cv\nRESUME_SRCS = $(shell find $(RESUME_DIR) -name '*.tex')\nCV_SRCS = $(shell find $(CV_DIR) -name '*.tex')\n\nexamples: $(foreach x, coverletter cv resume, $x.pdf)\n\nresume.pdf: $(EXAMPLES_DIR)/resume.tex $(RESUME_SRCS)\n\t$(CC) -output-directory=$(EXAMPLES_DIR) $<\n\ncv.pdf: $(EXAMPLES_DIR)/cv.tex $(CV_SRCS)\n\t$(CC) -output-directory=$(EXAMPLES_DIR) $<\n\ncoverletter.pdf: $(EXAMPLES_DIR)/coverletter.tex\n\t$(CC) -output-directory=$(EXAMPLES_DIR) $<\n\nclean:\n\trm -rf $(EXAMPLES_DIR)/*.pdf\n"
  },
  {
    "path": "README.md",
    "content": "<h1 align=\"center\">\n  <a href=\"https://github.com/posquit0/Awesome-CV\" title=\"AwesomeCV Documentation\">\n    <img alt=\"AwesomeCV\" src=\"https://github.com/posquit0/Awesome-CV/raw/master/icon.png\" width=\"200px\" height=\"200px\" />\n  </a>\n  <br />\n  Awesome CV\n</h1>\n\n<p align=\"center\">\n  LaTeX template for your outstanding job application\n</p>\n\n<div align=\"center\">\n  <a href=\"https://www.paypal.me/posquit0\">\n    <img alt=\"Donate\" src=\"https://img.shields.io/badge/Donate-PayPal-blue.svg\" />\n  </a>\n  <a href=\"https://github.com/posquit0/Awesome-CV/actions/workflows/main.yml\">\n    <img alt=\"GitHub Actions\" src=\"https://github.com/posquit0/Awesome-CV/actions/workflows/main.yml/badge.svg\" />\n  </a>\n  <a href=\"https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf\">\n    <img alt=\"Example Resume\" src=\"https://img.shields.io/badge/resume-pdf-green.svg\" />\n  </a>\n  <a href=\"https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/cv.pdf\">\n    <img alt=\"Example CV\" src=\"https://img.shields.io/badge/cv-pdf-green.svg\" />\n  </a>\n  <a href=\"https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter.pdf\">\n    <img alt=\"Example Coverletter\" src=\"https://img.shields.io/badge/coverletter-pdf-green.svg\" />\n  </a>\n</div>\n\n<br />\n\n## What is Awesome CV?\n\n**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.\n\n\n## Donate\n\nPlease help keep this project alive! Donations are welcome and will go towards further development of this project.\n\n    PayPal: paypal.me/posquit0\n\n*Thank you for your support!*\n\n## Preview\n\n#### Résumé\n\nYou can see [PDF](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf)\n\n| Page. 1 | Page. 2 |\n|:---:|:---:|\n| [![Résumé](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume-0.png)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf)  | [![Résumé](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume-1.png)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/resume.pdf) |\n\n#### Cover Letter\n\nYou can see [PDF](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter.pdf)\n\n| Without Sections | With Sections |\n|:---:|:---:|\n| [![Cover Letter(Traditional)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter-0.png)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter.pdf)  | [![Cover Letter(Awesome)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter-1.png)](https://raw.githubusercontent.com/posquit0/Awesome-CV/master/examples/coverletter.pdf) |\n\n\n## Quick Start\n\n* [**Edit Résumé on OverLeaf.com**](https://www.overleaf.com/latex/templates/awesome-cv/tvmzpvdjfqxp)\n* [**Edit Cover Letter on OverLeaf.com**](https://www.overleaf.com/latex/templates/awesome-cv-cover-letter/pfzzjspkthbk)\n\n**_Note:_ Above services do not guarantee up-to-date source code of Awesome CV**\n\n\n## How to Use\n\n#### Requirements\n\nA 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.\nYou 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.)\n\nIf you don't want to install the dependencies on your system, this can also be obtained via [Docker](https://docker.com).\n\n#### Usage\n\nAt a command prompt, run\n\n```bash\nxelatex {your-cv}.tex\n```\n\nOr using docker:\n\n```bash\ndocker run --rm --user $(id -u):$(id -g) -i -w \"/doc\" -v \"$PWD\":/doc texlive/texlive:latest make\n```\n\nIn either case, this should result in the creation of ``{your-cv}.pdf``\n\n\n## Credit\n\n[**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.\n\n[**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.\n\n[**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.\n\n[**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.\n\n\n## Contact\n\nYou 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!\n\nIf 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.\n\nGood luck!\n\n\n## Maintainers\n- [posquit0](https://github.com/posquit0)\n- [OJFord](https://github.com/OJFord)\n\n\n## See Also\n\n* [Awesome Identity](https://github.com/posquit0/hugo-awesome-identity) - A single-page Hugo theme to introduce yourself.\n"
  },
  {
    "path": "awesome-cv.cls",
    "content": "%% Start of file `awesome-cv.cls'.\n% Awesome CV Class File\n%\n% This class has been downloaded from:\n% https://github.com/posquit0/Awesome-CV\n%\n% Author:\n% Claud D. Park <posquit0.bj@gmail.com>\n% http://www.posquit0.com\n%\n% Notes:\n% 1) This class file defines the structure and layout of the template file (cv.tex, resume.tex).\n% 2) It has been written in such a way that under most circumstances you\n% should not need to edit it.\n%\n% Class license:\n% LPPL v1.3c (http://www.latex-project.org/lppl)\n%\n\n\n%-------------------------------------------------------------------------------\n%                Identification\n%-------------------------------------------------------------------------------\n\\ProvidesClass{awesome-cv}[2017/02/05 v1.6.1 Awesome Curriculum Vitae Class]\n\\NeedsTeXFormat{LaTeX2e}\n\n\n%-------------------------------------------------------------------------------\n%                Class options\n%\n% (need to be done before the external package loading, for example because\n% we need \\paperwidth, \\paperheight and \\@ptsize to be defined before loading\n% geometry and fancyhdr)\n%-------------------------------------------------------------------------------\n% Options for draft or final\n\\DeclareOption{draft}{\\setlength\\overfullrule{5pt}}\n\\DeclareOption{final}{\\setlength\\overfullrule{0pt}}\n% Inherit options of article\n\\DeclareOption*{%\n  \\PassOptionsToClass{\\CurrentOption}{article}\n}\n\\ProcessOptions\\relax\n\\LoadClass{article}\n\n\n%-------------------------------------------------------------------------------\n%                3rd party packages\n%-------------------------------------------------------------------------------\n% Needed to make fixed length table\n\\RequirePackage{array}\n\\RequirePackage{tabularx}\n% Needed to handle list environment\n\\RequirePackage{enumitem}\n% Needed to handle text alignment\n\\RequirePackage{ragged2e}\n% Needed to configure page layout\n\\RequirePackage{geometry}\n% Needed to make header & footer efficiently\n\\RequirePackage{fancyhdr}\n% Needed to manage colors\n\\RequirePackage{xcolor}\n% Needed to use \\ifxetex-\\else-\\fi statement\n\\RequirePackage{ifxetex}\n% Needed to use \\if-\\then-\\else statement\n\\RequirePackage{xifthen}\n% Needed to strip chars from telephone number\n\\RequirePackage{xstring}\n% Needed to use a toolbox of programming tools\n\\RequirePackage{etoolbox}\n% Needed to change line spacing in specific environment\n\\RequirePackage{setspace}\n% Needed to manage fonts\n\\RequirePackage[quiet]{fontspec}\n% To support LaTeX quoting style\n\\defaultfontfeatures{Ligatures=TeX}\n% Needed to manage math fonts\n\\RequirePackage{unicode-math}\n% Needed to use icons from font-awesome\n\\RequirePackage{fontawesome6}\n\\RequirePackage{accsupp}\n\\defaultfontfeatures{\n  Renderer=HarfBuzz,\n}\n\\setmainfont{Source Sans 3}[\n  UprightFont=*,\n  ItalicFont=* Italic,\n  BoldFont=* Bold,\n  BoldItalicFont=* Bold Italic,\n  FontFace={l}{n}{Font=* Light},\n  FontFace={l}{it}{Font=* Light Italic},\n]\n\\setsansfont{Source Sans 3}[\n  UprightFont=*,\n  ItalicFont=* Italic,\n  BoldFont=* Bold,\n  BoldItalicFont=* Bold Italic,\n  FontFace={l}{n}{Font=* Light},\n  FontFace={l}{it}{Font=* Light Italic},\n]\n\\newfontfamily\\roboto{Roboto}[\n  UprightFont=*,\n  ItalicFont=* Italic,\n  BoldFont=* Bold,\n  BoldItalicFont=* Bold Italic,\n  FontFace={l}{n}{Font=* Light},\n  FontFace={l}{it}{Font=* Light Italic},\n]\n% Needed for the photo ID\n\\RequirePackage[skins]{tcolorbox}\n% Needed to deal a paragraphs\n\\RequirePackage{parskip}\n% Needed to deal hyperlink\n\\RequirePackage[hidelinks,unicode,pdfpagelabels=false]{hyperref}\n\\hypersetup{%\n  pdftitle={},\n  pdfauthor={},\n  pdfsubject={},\n  pdfkeywords={}\n}\n% Solves issues Warning: File `cv.out' has changed\n\\RequirePackage{bookmark}\n\n%-------------------------------------------------------------------------------\n%                Configuration for directory locations\n%-------------------------------------------------------------------------------\n% Configure an optional directory location for fonts(default: 'fonts/')\n% Not required anymore but left in place for backward compatability.\n\\newcommand*{\\fontdir}[1][fonts/]{\\def\\@fontdir{#1}}\n\n%-------------------------------------------------------------------------------\n%                Configuration for layout\n%-------------------------------------------------------------------------------\n%% Page Layout\n% Configure page margins with geometry\n\\geometry{left=2.0cm, top=1.5cm, right=2.0cm, bottom=2.0cm, footskip=.5cm}\n\n%% Header & Footer\n% Set offset to each header and footer\n\\fancyhfoffset{0em}\n% Remove head rule\n\\renewcommand{\\headrulewidth}{0pt}\n% Clear all header & footer fields\n\\fancyhf{}\n% Enable if you want to make header or footer using fancyhdr\n\\pagestyle{fancy}\n\n\n%-------------------------------------------------------------------------------\n%                Configuration for colors\n%-------------------------------------------------------------------------------\n% Gray-scale colors\n\\definecolor{white}{HTML}{FFFFFF}\n\\definecolor{black}{HTML}{000000}\n\\definecolor{darkgray}{HTML}{333333}\n\\definecolor{gray}{HTML}{5D5D5D}\n\\definecolor{lightgray}{HTML}{999999}\n% Basic colors\n\\definecolor{green}{HTML}{C2E15F}\n\\definecolor{orange}{HTML}{FDA333}\n\\definecolor{purple}{HTML}{D3A4F9}\n\\definecolor{red}{HTML}{FB4485}\n\\definecolor{blue}{HTML}{6CE0F1}\n% Text colors\n\\definecolor{darktext}{HTML}{414141}\n\\colorlet{text}{darkgray}\n\\colorlet{graytext}{gray}\n\\colorlet{lighttext}{lightgray}\n\\colorlet{sectiondivider}{gray}\n% Awesome colors\n\\definecolor{awesome-emerald}{HTML}{00A388}\n\\definecolor{awesome-skyblue}{HTML}{0395DE}\n\\definecolor{awesome-red}{HTML}{DC3522}\n\\definecolor{awesome-pink}{HTML}{EF4089}\n\\definecolor{awesome-orange}{HTML}{FF6138}\n\\definecolor{awesome-nephritis}{HTML}{27AE60}\n\\definecolor{awesome-concrete}{HTML}{95A5A6}\n\\definecolor{awesome-darknight}{HTML}{131A28}\n\\colorlet{awesome}{awesome-red}\n\n% Boolean value to switch section color highlighting\n\\newbool{acvSectionColorHighlight}\n\\setbool{acvSectionColorHighlight}{true}\n\n%-------------------------------------------------------------------------------\n%                Configuration for fonts\n%-------------------------------------------------------------------------------\n\\newcommand*{\\headerfont}{\\roboto\\selectfont}\n\\newcommand*{\\headerfontlight}{\\roboto\\fontseries{l}\\selectfont}\n\\newcommand*{\\footerfont}{\\sffamily}\n\\newcommand*{\\bodyfont}{\\sffamily}\n\\newcommand*{\\bodyfontlight}{\\sffamily\\fontseries{l}\\selectfont}\n\n%-------------------------------------------------------------------------------\n%                Configuration for styles\n%-------------------------------------------------------------------------------\n% Configure styles for each CV elements\n% For fundamental structures\n\\newcommand*{\\headerfirstnamestyle}[1]{{\\fontsize{32pt}{1em}\\headerfontlight\\color{graytext} #1}}\n\\newcommand*{\\headerlastnamestyle}[1]{{\\fontsize{32pt}{1em}\\headerfont\\bfseries\\color{text} #1}}\n\\newcommand*{\\headerpositionstyle}[1]{{\\fontsize{7.6pt}{1em}\\bodyfont\\scshape\\color{awesome} #1}}\n\\newcommand*{\\headeraddressstyle}[1]{{\\fontsize{8pt}{1em}\\headerfont\\itshape\\color{lighttext} #1}}\n\\newcommand*{\\headersocialstyle}[1]{{\\fontsize{6.8pt}{1em}\\headerfont\\color{text} #1}}\n\\newcommand*{\\headerquotestyle}[1]{{\\fontsize{9pt}{1em}\\bodyfont\\itshape\\color{darktext} #1}}\n\\newcommand*{\\footerstyle}[1]{{\\fontsize{8pt}{1em}\\footerfont\\scshape\\color{lighttext} #1}}\n\\newcommand*{\\sectionstyleface}[1]{{\\fontsize{16pt}{1em}\\bodyfont\\bfseries #1}}\n\\newcommand*{\\sectionstyle}[1]{%\n  \\def\\@acvSectionTmp{#1}\n  \\ifthenelse{\\boolean{acvSectionColorHighlight}}{%\n    \\StrSplit{\\@acvSectionTmp}{3}{\\acvSectionStringAwesome}{\\acvSectionStringPlain}%\n      \\color{awesome}\\sectionstyleface{\\acvSectionStringAwesome%\n      \\color{text}{\\acvSectionStringPlain}}}%\n      {\\color{text}\\sectionstyleface{\\@acvSectionTmp}}}\n\\newcommand*{\\subsectionstyle}[1]{{\\fontsize{12pt}{1em}\\bodyfont\\scshape\\textcolor{text}{#1}}}\n\\newcommand*{\\paragraphstyle}{\\fontsize{9pt}{1em}\\bodyfontlight\\upshape\\color{text}}\n\n% For elements of entry\n\\newcommand*{\\entrytitlestyle}[1]{{\\fontsize{10pt}{1em}\\bodyfont\\bfseries\\color{darktext} #1}}\n\\newcommand*{\\entrypositionstyle}[1]{{\\fontsize{8pt}{1em}\\bodyfont\\scshape\\color{graytext} #1}}\n\\newcommand*{\\entrydatestyle}[1]{{\\fontsize{8pt}{1em}\\bodyfontlight\\slshape\\color{graytext} #1}}\n\\newcommand*{\\entrylocationstyle}[1]{{\\fontsize{9pt}{1em}\\bodyfontlight\\slshape\\color{awesome} #1}}\n\\newcommand*{\\descriptionstyle}[1]{{\\fontsize{9pt}{1em}\\bodyfontlight\\upshape\\color{text} #1}}\n\n% For elements of subentry\n\\newcommand*{\\subentrytitlestyle}[1]{{\\fontsize{8pt}{1em}\\bodyfont\\mdseries\\color{graytext} #1}}\n\\newcommand*{\\subentrypositionstyle}[1]{{\\fontsize{7pt}{1em}\\bodyfont\\scshape\\color{graytext} #1}}\n\\newcommand*{\\subentrydatestyle}[1]{{\\fontsize{7pt}{1em}\\bodyfontlight\\slshape\\color{graytext} #1}}\n\\newcommand*{\\subentrylocationstyle}[1]{{\\fontsize{7pt}{1em}\\bodyfontlight\\slshape\\color{awesome} #1}}\n\\newcommand*{\\subdescriptionstyle}[1]{{\\fontsize{8pt}{1em}\\bodyfontlight\\upshape\\color{text} #1}}\n\n% For elements of honor\n\\newcommand*{\\honortitlestyle}[1]{{\\fontsize{9pt}{1em}\\bodyfont\\color{graytext} #1}}\n\\newcommand*{\\honorpositionstyle}[1]{{\\fontsize{9pt}{1em}\\bodyfont\\bfseries\\color{darktext} #1}}\n\\newcommand*{\\honordatestyle}[1]{{\\fontsize{9pt}{1em}\\bodyfont\\color{graytext} #1}}\n\\newcommand*{\\honorlocationstyle}[1]{{\\fontsize{9pt}{1em}\\bodyfontlight\\slshape\\color{awesome} #1}}\n\n% For elements of skill\n\\newcommand*{\\skilltypestyle}[1]{{\\fontsize{10pt}{1em}\\bodyfont\\bfseries\\color{darktext} #1}}\n\\newcommand*{\\skillsetstyle}[1]{{\\fontsize{9pt}{1em}\\bodyfontlight\\color{text} #1}}\n\n% For elements of the cover letter\n\\newcommand*{\\lettersectionstyleface}[1]{{\\fontsize{14pt}{1em}\\bodyfont\\bfseries #1}}\n\\newcommand*{\\lettersectionstyle}[1]{%\n  \\def\\@acvLetterSectionTmp{#1}\n  \\ifthenelse{\\boolean{acvSectionColorHighlight}}{%\n    \\StrSplit{\\@acvLetterSectionTmp}{3}{\\acvLetterSectionStringAwesome}{\\acvLetterSectionStringPlain}%\n      \\color{awesome}\\sectionstyleface{\\acvLetterSectionStringAwesome%\n      \\color{text}{\\acvLetterSectionStringPlain}}}%\n      {\\color{text}\\lettersectionstyleface{\\@acvLetterSectionTmp}}}\n\\newcommand*{\\recipientaddressstyle}[1]{{\\fontsize{9pt}{1em}\\bodyfont\\scshape\\color{graytext} #1}}\n\\newcommand*{\\recipienttitlestyle}[1]{{\\fontsize{11pt}{1em}\\bodyfont\\bfseries\\color{darktext} #1}}\n\\newcommand*{\\lettertitlestyle}[1]{{\\fontsize{10pt}{1em}\\bodyfontlight\\bfseries\\color{darktext} \\underline{#1}}}\n\\newcommand*{\\letterdatestyle}[1]{{\\fontsize{9pt}{1em}\\bodyfontlight\\slshape\\color{graytext} #1}}\n\\newcommand*{\\lettertextstyle}{\\fontsize{10pt}{1.4em}\\bodyfontlight\\upshape\\color{graytext}}\n\\newcommand*{\\letternamestyle}[1]{{\\fontsize{10pt}{1em}\\bodyfont\\bfseries\\color{darktext} #1}}\n\\newcommand*{\\letterenclosurestyle}[1]{{\\fontsize{10pt}{1em}\\bodyfontlight\\slshape\\color{lighttext} #1}}\n\n\n%-------------------------------------------------------------------------------\n%                Commands for personal information\n%-------------------------------------------------------------------------------\n% Define photo ID\n% Usage: \\photo[circle|rectangle,edge|noedge,left|right]{<path-to-image>}\n\\newcommand{\\photo}[2][circle,edge,left]{%\n  \\def\\@photo{#2}\n  \\@for\\tmp:=#1\\do{%\n    \\ifthenelse{\\equal{\\tmp}{circle} \\or \\equal{\\tmp}{rectangle}}%\n      {\\let\\@photoshape\\tmp}{}%\n    \\ifthenelse{\\equal{\\tmp}{edge} \\or \\equal{\\tmp}{noedge}}%\n      {\\let\\@photoedge\\tmp}{}%\n    \\ifthenelse{\\equal{\\tmp}{left} \\or \\equal{\\tmp}{right}}%\n      {\\let\\@photoalign\\tmp}{}%\n  }%\n}\n\\def\\@photoshape{circle}\n\\def\\@photoedge{edge}\n\\def\\@photoalign{left}\n\n% Define writer's name\n% Usage: \\name{<firstname>}{<lastname>}\n% Usage: \\firstname{<firstname>}\n% Usage: \\lastname{<lastname>}\n% Usage: \\familyname{<familyname>}\n\\newcommand*{\\name}[2]{\\def\\@firstname{#1}\\def\\@lastname{#2}}\n\\newcommand*{\\firstname}[1]{\\def\\@firstname{#1}}\n\\newcommand*{\\lastname}[1]{\\def\\@lastname{#1}}\n\\newcommand*{\\familyname}[1]{\\def\\@lastname{#1}}\n\\def\\@familyname{\\@lastname}\n\n% Define writer's address\n% Usage: \\address{<address>}\n\\newcommand*{\\address}[1]{\\def\\@address{#1}}\n\n% Define writer's position\n% Usage: \\position{<position>}\n\\newcommand*{\\position}[1]{\\def\\@position{#1}}\n\n% Defines writer's mobile (optional)\n% Usage: \\mobile{<mobile number>}\n\\newcommand*{\\mobile}[1]\n{\n  \\def\\@mobile{#1}\n  \\def\\@teluri{tel:\\@mobile}\n  % Strip unwanted characters\n  \\StrDel{\\@teluri}{ }[\\@teluri]%\n  \\StrDel{\\@teluri}{-}[\\@teluri]%\n  \\StrDel{\\@teluri}{(}[\\@teluri]%\n  \\StrDel{\\@teluri}{)}[\\@teluri]%\n}\n\n% Defines writer's WhatsApp (optional)\n% Usage: \\whatsapp{<mobile number>}\n\\newcommand*{\\whatsapp}[1]\n{\n  \\def\\@whatsapp{#1}\n  \\def\\@wameuri{https://wa.me/\\@whatsapp}\n  % Strip unwanted characters\n  \\StrDel{\\@wameuri}{ }[\\@wameuri]%\n  \\StrDel{\\@wameuri}{+}[\\@wameuri]%\n  \\StrDel{\\@wameuri}{-}[\\@wameuri]%\n  \\StrDel{\\@wameuri}{(}[\\@wameuri]%\n  \\StrDel{\\@wameuri}{)}[\\@wameuri]%\n}\n\n% Defines writer's email (optional)\n% Usage: \\email{<email address>}\n\\newcommand*{\\email}[1]{\\def\\@email{#1}}\n\n% Defines writer's date of birth (optional)\n% Usage: \\dateofbirth{<date>}\n\\newcommand*{\\dateofbirth}[1]{\\def\\@dateofbirth{#1}}\n\n% Defines writer's homepage (optional)\n% Usage: \\homepage{<url>}\n\\newcommand*{\\homepage}[1]{\\def\\@homepage{#1}}\n\n% Defines writer's github (optional)\n% Usage: \\github{<github-nick>}\n\\newcommand*{\\github}[1]{\\def\\@github{#1}}\n\n% Defines writer's gitlab (optional)\n% Usage: \\gitlab{<gitlab-nick>}\n\\newcommand*{\\gitlab}[1]{\\def\\@gitlab{#1}}\n\n% Defines writer's bitbucket (optional)\n% Usage: \\bitbucket{<bitbucket-nick>}\n\\newcommand*{\\bitbucket}[1]{\\def\\@bitbucket{#1}}\n\n% Defines writer's stackoverflow profile (optional)\n% Usage: \\stackoverflow{<so userid>}{<so username>}\n%   e.g.https://stackoverflow.com/users/123456/sam-smith\n%       would be \\stackoverflow{123456}{sam-smith}\n\\newcommand*{\\stackoverflow}[2]{\\def\\@stackoverflowid{#1}\\def\\@stackoverflowname{#2}}\n\n% Defines writer's linked-in (optional)\n% Usage: \\linkedin{<linked-in-nick>}\n\\newcommand*{\\linkedin}[1]{\\def\\@linkedin{#1}}\n\n% Defines writer's orcid (optional)\n% Usage: \\orcid{<orcid-num>}\n\\newcommand*{\\orcid}[1]{\\def\\@orcid{#1}}\n\n% Defines writer's twitter (optional)\n% Usage: \\twitter{<twitter handle>}\n\\newcommand*{\\twitter}[1]{\\def\\@twitter{#1}}\n\n% Defines writer's x (formerly twitter) (optional)\n% Usage: \\x{<x account>}\n\\newcommand*{\\x}[1]{\\def\\@x{#1}}\n\n% Defines writer's Mastodon (optional)\n% Usage: \\mastodon{<instance>}{<mastodon-nick>}\n\\newcommand*{\\mastodon}[2]{\\def\\@mastodoninstance{#1}\\def\\@mastodonname{#2}}\n\n% Defines writer's resarchgate (optional)\n% Usage: \\researchgate{<researchgate-account>}\n\\newcommand*{\\researchgate}[1]{\\def\\@researchgate{#1}}\n\n% Defines writer's skype (optional)\n% Usage: \\skype{<skype account>}\n\\newcommand*{\\skype}[1]{\\def\\@skype{#1}}\n\n% Defines writer's reddit (optional)\n% Usage: \\reddit{<reddit account>}\n\\newcommand*{\\reddit}[1]{\\def\\@reddit{#1}}\n\n% Defines writer's xing (optional)\n% Usage: \\xing{<xing name>}\n\\newcommand*{\\xing}[1]{\\def\\@xing{#1}}\n\n% Defines writer's medium profile (optional)\n% Usage: \\medium{<medium account>}\n\\newcommand*{\\medium}[1]{\\def\\@medium{#1}}\n\n% Defines writer's kaggle (optional)\n% Usage: \\kaggle{<kaggle handle>}\n\\newcommand*{\\kaggle}[1]{\\def\\@kaggle{#1}}\n\n% Defines writer's Hackerrank (optional)\n% Usage: \\hackerrank{<Hackerrank profile name>}\n\\newcommand*{\\hackerrank}[1]{\\def\\@hackerrank{#1}}\n\n% Defines writer's Telegram (optional)\n% Usage: \\telegram{<Telegram username>}\n\\newcommand*{\\telegram}[1]{\\def\\@telegram{#1}}\n\n% Defines writer's google scholar profile (optional)\n% Usage: \\googlescholar{<googlescholar userid>}{<googlescholar username>}\n% e.g.https://scholar.google.co.uk/citations?user=wpZDx1cAAAAJ\n% would be \\googlescholar{wpZDx1cAAAAJ}{Name-to-display-next-icon}\n% If 'googlescholar-name' is not provided than it defaults to\n% '\\firstname \\lastname'\n\\newcommand*{\\googlescholar}[2]{%\n  \\def\\@googlescholarid{#1}%\n  \\ifthenelse{\\equal{#2}{}}{%\n    \\def\\@googlescholarname{\\@firstname~\\@lastname}%\n  }{%\n    \\def\\@googlescholarname{#2}%\n  }%\n}\n\n% Defines writer's extra information (optional)\n% Usage: \\extrainfo{<extra information>}\n\\newcommand*{\\extrainfo}[1]{\\def\\@extrainfo{#1}}\n\n% Defines writer's quote (optional)\n% Usage: \\quote{<quote>}\n\\renewcommand*{\\quote}[1]{\\def\\@quote{#1}}\n\n% Defines recipient's information (cover letter only)\n% Usage: \\recipient{<recipient name>}{<recipient address>}\n% Usage: \\recipientname{<recipient name>}\n% Usage: \\recipientaddress{<recipient address>}\n\\newcommand*{\\recipient}[2]{\\def\\@recipientname{#1}\\def\\@recipientaddress{#2}}\n\\newcommand*{\\recipientname}[1]{\\def\\@recipientname{#1}}\n\\newcommand*{\\recipientaddress}[1]{\\def\\@recipientaddress{#1}}\n\n% Defines the title for letter (cover letter only, optional)\n% Usage: \\lettertitle{<title>}\n\\newcommand*{\\lettertitle}[1]{\\def\\@lettertitle{#1}}\n\n% Defines the date for letter (cover letter only)\n% Usage: \\letterdate{<date>}\n\\newcommand*{\\letterdate}[1]{\\def\\@letterdate{#1}}\n\n% Defines a message of opening for letter (cover letter only)\n% Usage: \\letteropening{<message>}\n\\newcommand*{\\letteropening}[1]{\\def\\@letteropening{#1}}\n\n% Defines a message of closing for letter (cover letter only)\n% Usage: \\letterclosing{<message>}\n\\newcommand*{\\letterclosing}[1]{\\def\\@letterclosing{#1}}\n\n% Defines an enclosure for letter (cover letter only, optional)\n% Usage: \\letterenclosure[<enclosure name>]{<enclosure>}\n\\newcommand*{\\letterenclname}[1][Enclosure]{\\def\\@letterenclname{#1}}\n\\newcommand*{\\letterenclosure}[2][]{%\n  % if an optional argument is provided, use it to redefine \\enclname\n  \\ifthenelse{\\equal{#1}{}}{}{\\def\\@letterenclname{#1}}\n  \\def\\@letterenclosure{#2}\n}\n\n\n%-------------------------------------------------------------------------------\n%                Commands for extra\n%-------------------------------------------------------------------------------\n%% Define helper macros a user can change easily\n% Header\n\\newcommand{\\acvHeaderNameDelim}{\\space}\n\\newcommand{\\acvHeaderAfterNameSkip}{.4mm}\n\\newcommand{\\acvHeaderAfterPositionSkip}{.4mm}\n\\newcommand{\\acvHeaderAfterAddressSkip}{-.5mm}\n\\newcommand{\\acvHeaderIconSep}{\\space}\n\\newcommand{\\acvHeaderSocialSep}{\\BeginAccSupp{ActualText={}}\\quad\\textbar\\quad\\EndAccSupp{}}\n\\newcommand{\\acvHeaderAfterSocialSkip}{6mm}\n\\newcommand{\\acvHeaderAfterQuoteSkip}{5mm}\n\n% Others\n\\newcommand{\\acvSectionTopSkip}{3mm}\n\\newcommand{\\acvSectionContentTopSkip}{2.5mm}\n\n\n%-------------------------------------------------------------------------------\n%                Commands for utilities\n%-------------------------------------------------------------------------------\n% Use to align an element of tabular table\n\\renewcommand{\\tabularxcolumn}{p}\n\\newcolumntype{L}[1]{>{\\raggedright\\let\\newline\\\\\\arraybackslash\\hspace{0pt}}m{#1}}\n\\newcolumntype{C}[1]{>{\\centering\\let\\newline\\\\\\arraybackslash\\hspace{0pt}}m{#1}}\n\\newcolumntype{R}[1]{>{\\raggedleft\\let\\newline\\\\\\arraybackslash\\hspace{0pt}}m{#1}}\n\n% Use to draw horizontal line with specific thickness\n\\def\\vhrulefill#1{\\leavevmode\\leaders\\hrule\\@height#1\\hfill \\kern\\z@}\n\n% Use to execute conditional statements by checking empty string\n\\newcommand*{\\ifempty}[3]{\\ifthenelse{\\isempty{#1}}{#2}{#3}}\n\n\\newcommand{\\faAlt}[3]{%\n  \\BeginAccSupp{ActualText={#1}}%\n    \\mbox{#2\\acvHeaderIconSep#3}%\n  \\EndAccSupp{}%\n}\n\n%-------------------------------------------------------------------------------\n%                Commands for elements of CV structure\n%-------------------------------------------------------------------------------\n% Define a header for CV\n% Usage: \\makecvheader\n\\newcommand*{\\makecvheader}[1][C]{%\n  \\newcommand*{\\drawphoto}{%\n    \\ifthenelse{\\isundefined{\\@photo}}{}{%\n      \\newlength{\\photodim}\n      \\ifthenelse{\\equal{\\@photoshape}{circle}}%\n        {\\setlength{\\photodim}{1.3cm}}%\n        {\\setlength{\\photodim}{1.8cm}}%\n      \\ifthenelse{\\equal{\\@photoedge}{edge}}%\n        {\\def\\@photoborder{darkgray}}%\n        {\\def\\@photoborder{none}}%\n      \\begin{tikzpicture}%\n        \\node[\\@photoshape, draw=\\@photoborder, line width=0.3mm, inner sep=\\photodim, fill overzoom image=\\@photo] () {};\n      \\end{tikzpicture}\n    }%\n  }\n  \\newlength{\\headertextwidth}\n  \\newlength{\\headerphotowidth}\n  \\ifthenelse{\\isundefined{\\@photo}}{\n    \\setlength{\\headertextwidth}{\\textwidth}\n    \\setlength{\\headerphotowidth}{0cm}\n  }{%\n    \\setlength{\\headertextwidth}{0.76\\textwidth}\n    \\setlength{\\headerphotowidth}{0.24\\textwidth}\n  }%\n  \\begin{minipage}[c]{\\headerphotowidth}%\n    \\ifthenelse{\\equal{\\@photoalign}{left}}{\\raggedright\\drawphoto}{}\n  \\end{minipage}\n  \\begin{minipage}[c]{\\headertextwidth}\n    \\ifthenelse{\\equal{#1}{L}}{\\raggedright}{\\ifthenelse{\\equal{#1}{R}}{\\raggedleft}{\\centering}}\n    \\headerfirstnamestyle{\\@firstname}\\headerlastnamestyle{{}\\acvHeaderNameDelim\\@lastname}%\n    \\\\[\\acvHeaderAfterNameSkip]%\n    \\ifthenelse{\\isundefined{\\@position}}{}{\\headerpositionstyle{\\@position\\\\[\\acvHeaderAfterPositionSkip]}}%\n    \\ifthenelse{\\isundefined{\\@address}}{}{\\headeraddressstyle{\\@address\\\\[\\acvHeaderAfterAddressSkip]}}%\n    \\headersocialstyle{%\n      \\newbool{isstart}%\n      \\setbool{isstart}{true}%\n      \\ifthenelse{\\isundefined{\\@mobile}}%\n        {}%\n        {%\n          \\href{\\@teluri}{\\faAlt{tel:\\@mobile}{\\faMobile}{\\@mobile}}%\n          \\setbool{isstart}{false}%\n        }%\n      \\ifthenelse{\\isundefined{\\@whatsapp}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{\\@wameuri}{\\faAlt{WhatsApp: \\@whatsapp}{\\faSquareWhatsapp}{\\@whatsapp}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@email}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{mailto:\\@email}{\\faAlt{mailto:\\@email}{\\faEnvelope}{\\@email}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@dateofbirth}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\faAlt{DoB: \\@dateofbirth}{\\faCakeCandles}{\\@dateofbirth}%\n        }%\n      \\ifthenelse{\\isundefined{\\@homepage}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{\\@homepage}{\\faAlt{homepage: \\@homepage}{\\faHouseChimney}{\\@homepage}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@github}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://github.com/\\@github}{\\faAlt{GitHub: @\\@github}{\\faSquareGithub}{\\@github}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@gitlab}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://gitlab.com/\\@gitlab}{\\faAlt{GitLab: @\\@gitlab}{\\faGitlab}{\\@gitlab}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@bitbucket}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://bitbucket.com/\\@bitbucket}{\\faAlt{BitBucket: @\\@bitbucket}{\\faBitbucket}{\\@bitbucket}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@stackoverflowid}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://stackoverflow.com/users/\\@stackoverflowid}{\\faAlt{StackOverflow: @\\@stackoverflowname}{\\faStackOverflow}{\\@stackoverflowname}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@linkedin}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://www.linkedin.com/in/\\@linkedin}{\\faAlt{LinkedIn: /in/\\@linkedin}{\\faLinkedin}{\\@linkedin}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@orcid}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://orcid.org/\\@orcid}{\\faAlt{OrcID: \\@orcid}{\\faOrcid}{\\@orcid}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@twitter}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://twitter.com/\\@twitter}{\\faAlt{Twitter: @\\@twitter}{\\faTwitter}{\\@twitter}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@x}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://x.com/\\@x}{\\faAlt{X: @\\@x}{\\faXTwitter}{\\@x}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@mastodonname}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://\\@mastodoninstance/@\\@mastodonname}{\\faAlt{Mastodon: \\@mastodonname{}@\\@mastodoninstance}{\\faMastodon}{\\@mastodonname}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@skype}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\faAlt{Skype: \\@skype}{\\faSkype}{\\@skype}%\n        }%\n      \\ifthenelse{\\isundefined{\\@reddit}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://www.reddit.com/user/\\@reddit}{\\faAlt{Reddit: /u/\\@reddit}{\\faReddit}{\\@reddit}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@researchgate}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://www.researchgate.net/profile/\\@researchgate}{\\faAlt{ResearchGate: \\@researchgate}{\\faResearchgate}{\\@researchgate}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@xing}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://www.xing.com/profile/\\@xing}{\\faAlt{Xing: \\@xing}{\\faSquareXing}{\\@xing}}\n        }%\n      \\ifthenelse{\\isundefined{\\@medium}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://medium.com/@\\@medium}{\\faAlt{Medium: @\\@medium}{\\faMedium}{\\@medium}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@kaggle}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://kaggle.com/\\@kaggle}{\\faAlt{Kaggle: \\@kaggle}{\\faKaggle}{\\@kaggle}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@hackerrank}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://www.hackerrank.com/\\@hackerrank}{\\faAlt{HackerRank: \\@hackerrank}{\\faHackerrank}{\\@hackerrank}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@telegram}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://t.me/\\@telegram}{\\faAlt{Telegram: \\@telegram}{\\faTelegram}{\\@telegram}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@googlescholarid}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\href{https://scholar.google.com/citations?user=\\@googlescholarid}{\\faAlt{Google Scholar: \\@googlescholarid}{\\faGraduationCap}{\\@googlescholarname}}%\n        }%\n      \\ifthenelse{\\isundefined{\\@extrainfo}}%\n        {}%\n        {%\n          \\ifbool{isstart}{\\setbool{isstart}{false}}{\\acvHeaderSocialSep}%\n          \\@extrainfo%\n        }%\n    } \\\\[\\acvHeaderAfterSocialSkip]%\n    \\ifthenelse{\\isundefined{\\@quote}}%\n      {}%\n      {\\headerquotestyle{\\@quote\\\\}\\vspace{\\acvHeaderAfterQuoteSkip}}%\n  \\end{minipage}%\n  \\begin{minipage}[c]{\\headerphotowidth}%\n    \\ifthenelse{\\equal{\\@photoalign}{right}}{\\raggedleft\\drawphoto}{}\n  \\end{minipage}\n}\n\n% Define a footer for CV\n% Usage: \\makecvfooter{<left>}{<center>}{<right>}\n\\newcommand*{\\makecvfooter}[3]{%\n  \\fancyfoot{}\n  \\fancyfoot[L]{\\footerstyle{#1}}\n  \\fancyfoot[C]{\\footerstyle{#2}}\n  \\fancyfoot[R]{\\footerstyle{#3}}\n}\n\n% Define a section for CV\n% Usage: \\cvsection{<section-title>}\n\\newcommand{\\cvsection}[1]{%\n  \\vspace{\\acvSectionTopSkip}\n  \\sectionstyle{#1}\n  \\phantomsection\n  \\color{sectiondivider}\\vhrulefill{0.9pt}\n}\n\n% Define a subsection for CV\n% Usage: \\cvsubsection{<subsection-title>}\n\\newcommand{\\cvsubsection}[1]{%\n  \\vspace{\\acvSectionContentTopSkip}\n  \\vspace{-3mm}\n  \\subsectionstyle{#1}\n  \\phantomsection\n}\n\n% Define a paragraph for CV\n\\newenvironment{cvparagraph}{%\n  \\vspace{\\acvSectionContentTopSkip}\n  \\vspace{-3mm}\n  \\paragraphstyle\n}{%\n  \\par\n  \\vspace{2mm}\n}\n\n% Define an environment for cventry\n\\newenvironment{cventries}{%\n  \\vspace{\\acvSectionContentTopSkip}\n  \\begin{center}\n}{%\n  \\end{center}\n}\n% Define an entry of cv information\n% Usage: \\cventry{<position>}{<title>}{<location>}{<date>}{<description>}\n\\newcommand*{\\cventry}[5]{%\n  \\vspace{-2.0mm}\n  \\setlength\\tabcolsep{0pt}\n  \\setlength{\\extrarowheight}{0pt}\n  \\begin{tabular*}{\\textwidth}{@{\\extracolsep{\\fill}} L{\\textwidth - 4.5cm} R{4.5cm}}\n    \\ifempty{#2#3}\n      {\\entrypositionstyle{#1} & \\entrydatestyle{#4} \\\\}\n      {\\entrytitlestyle{#2} & \\entrylocationstyle{#3} \\\\\n      \\entrypositionstyle{#1} & \\entrydatestyle{#4} \\\\}\n    \\ifstrempty{#5}\n      {}\n      {\\multicolumn{2}{L{\\textwidth}}{\\descriptionstyle{#5}} \\\\}\n  \\end{tabular*}%\n}\n\n% Define an environment for cvsubentry\n\\newenvironment{cvsubentries}{%\n  \\begin{center}\n}{%\n  \\end{center}\n}\n% Define a subentry of cv information\n% Usage: \\cvsubentry{<position>}{<title>}{<date>}{<description>}\n\\newcommand*{\\cvsubentry}[4]{%\n  \\setlength\\tabcolsep{0pt}\n  \\setlength{\\extrarowheight}{0pt}\n  \\begin{tabular*}{\\textwidth}{@{\\extracolsep{\\fill}} L{\\textwidth - 4.5cm} R{4.5cm}}\n    \\setlength\\leftskip{0.2cm}\n    \\subentrytitlestyle{#2} & \\ifthenelse{\\equal{#1}{}}\n      {\\subentrydatestyle{#3}}{}\n    \\ifthenelse{\\equal{#1}{}}\n      {}\n      {\\subentrypositionstyle{#1} & \\subentrydatestyle{#3} \\\\}\n    \\ifthenelse{\\equal{#4}{}}\n      {}\n      {\\multicolumn{2}{L{17.0cm}}{\\subdescriptionstyle{#4}} \\\\}\n  \\end{tabular*}\n}\n\n% Define an environment for cvhonor\n\\newenvironment{cvhonors}{%\n  \\vspace{\\acvSectionContentTopSkip}\n  \\vspace{-2mm}\n  \\begin{center}\n    \\setlength\\tabcolsep{0pt}\n    \\setlength{\\extrarowheight}{0pt}\n    \\begin{tabular*}{\\textwidth}{@{\\extracolsep{\\fill}} C{1.5cm} L{\\textwidth - 4.0cm} R{2.5cm}}\n}{%\n    \\end{tabular*}\n  \\end{center}\n}\n% Define a line of cv information(honor, award or something else)\n% Usage: \\cvhonor{<position>}{<title>}{<location>}{<date>}\n\\newcommand*{\\cvhonor}[4]{%\n  \\honordatestyle{#4} & \\honorpositionstyle{#1}\\ifempty{#2}{}{,} \\honortitlestyle{#2} & \\honorlocationstyle{#3} \\\\\n}\n\n% Define an environment for cvskill\n\\newenvironment{cvskills}{%\n  \\vspace{\\acvSectionContentTopSkip}\n  \\vspace{-2.0mm}\n    \\setlength\\tabcolsep{1ex}\n    \\setlength{\\extrarowheight}{0pt}\n    \\tabularx{\\textwidth}{r>{\\raggedright\\let\\newline\\\\\\arraybackslash\\hspace{0pt}}X}\n}{%\n\\endtabularx\\par\n}\n\n% Define a line of cv information(skill)\n% Usage: \\cvskill{<type>}{<skillset>}\n\\newcommand*{\\cvskill}[2]{%\n  \\skilltypestyle{#1} & \\leavevmode\\skillsetstyle{#2} \\\\\n}\n\n% Define an environment for cvitems(for cventry)\n\\newenvironment{cvitems}{%\n  \\vspace{-4.0mm}\n  \\begin{justify}\n  \\begin{itemize}[leftmargin=2ex, nosep, noitemsep]\n    \\setlength{\\parskip}{0pt}\n    \\renewcommand{\\labelitemi}{\\bullet}\n}{%\n  \\end{itemize}\n  \\end{justify}\n  \\vspace{1.0mm}\n}\n\n\n%-------------------------------------------------------------------------------\n%                Commands for elements of Cover Letter\n%-------------------------------------------------------------------------------\n% Define an environment for cvletter\n\\newenvironment{cvletter}{%\n  \\lettertextstyle\n}{%\n}\n\n% Define a section for the cover letter\n% Usage: \\lettersection{<section-title>}\n\\newcommand{\\lettersection}[1]{%\n  \\par\\addvspace{2.5ex}\n  \\phantomsection{}\n  \\lettersectionstyle{#1}\n  \\color{sectiondivider}\\vhrulefill{0.9pt}\n  \\par\\nobreak\\addvspace{0.4ex}\n  \\lettertextstyle\n}\n\n% Define a title of the cover letter\n% Usage: \\makelettertitle\n\\newcommand*{\\makelettertitle}{%\n  \\vspace{8.4mm}\n  \\setlength\\tabcolsep{0pt}\n  \\setlength{\\extrarowheight}{0pt}\n  \\begin{tabular*}{\\textwidth}{@{\\extracolsep{\\fill}} L{\\textwidth - 4.5cm} R{4.5cm}}\n    \\recipienttitlestyle{\\@recipientname} & \\letterdatestyle{\\@letterdate}\n  \\end{tabular*}\n  \\begin{singlespace}\n    \\recipientaddressstyle{\\@recipientaddress} \\\\\\\\\n  \\end{singlespace}\n  \\ifthenelse{\\isundefined{\\@lettertitle}}\n    {}\n    {\\lettertitlestyle{\\@lettertitle} \\\\}\n  \\lettertextstyle{\\@letteropening}\n}\n\n% Define a closing of the cover letter\n% Usage: \\makeletterclosing\n\\newcommand*{\\makeletterclosing}{%\n  \\vspace{3.4mm}\n  \\lettertextstyle{\\@letterclosing} \\\\\\\\\n  \\letternamestyle{\\@firstname\\ \\@lastname}\n  \\ifthenelse{\\isundefined{\\@letterenclosure}}\n    {\\\\}\n    {%\n      \\\\\\\\\\\\\n      \\letterenclosurestyle{\\@letterenclname: \\@letterenclosure} \\\\\n    }\n}\n"
  },
  {
    "path": "examples/coverletter.tex",
    "content": "%!TEX TS-program = xelatex\n%!TEX encoding = UTF-8 Unicode\n% Awesome CV LaTeX Template for Cover Letter\n%\n% This template has been downloaded from:\n% https://github.com/posquit0/Awesome-CV\n%\n% Authors:\n% Claud D. Park <posquit0.bj@gmail.com>\n% Lars Richter <mail@ayeks.de>\n%\n% Template license:\n% CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)\n%\n\n\n%-------------------------------------------------------------------------------\n% CONFIGURATIONS\n%-------------------------------------------------------------------------------\n% A4 paper size by default, use 'letterpaper' for US letter\n\\documentclass[11pt, a4paper]{awesome-cv}\n\n% Configure page margins with geometry\n\\geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}\n\n% Color for highlights\n% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange\n%                 awesome-nephritis, awesome-concrete, awesome-darknight\n\\colorlet{awesome}{awesome-red}\n% Uncomment if you would like to specify your own color\n% \\definecolor{awesome}{HTML}{CA63A8}\n\n% Colors for text\n% Uncomment if you would like to specify your own color\n% \\definecolor{darktext}{HTML}{414141}\n% \\definecolor{text}{HTML}{333333}\n% \\definecolor{graytext}{HTML}{5D5D5D}\n% \\definecolor{lighttext}{HTML}{999999}\n% \\definecolor{sectiondivider}{HTML}{5D5D5D}\n\n% Set false if you don't want to highlight section with awesome color\n\\setbool{acvSectionColorHighlight}{true}\n\n% If you would like to change the social information separator from a pipe (|) to something else\n\\renewcommand{\\acvHeaderSocialSep}{\\quad\\textbar\\quad}\n\n\n%-------------------------------------------------------------------------------\n%\tPERSONAL INFORMATION\n%\tComment any of the lines below if they are not required\n%-------------------------------------------------------------------------------\n% Available options: circle|rectangle,edge/noedge,left/right\n\\photo[circle,noedge,left]{./examples/profile}\n\\name{Claud D.}{Park}\n\\position{Site Reliability Engineer{\\enskip\\cdotp\\enskip}Software Architect}\n\\address{235, World Cup buk-ro, Mapo-gu, Seoul, 03936, Republic of Korea}\n\n\\mobile{(+82) 10-9030-1843}\n%\\whatsapp{(+82) 10-9030-1843}\n\\email{posquit0.bj@gmail.com}\n%\\dateofbirth{January 1st, 1970}\n\\homepage{www.posquit0.com}\n\\github{posquit0}\n\\linkedin{posquit0}\n% \\gitlab{gitlab-id}\n% \\stackoverflow{SO-id}{SO-name}\n% \\twitter{@twit}\n% \\x{x-id}\n% \\skype{skype-id}\n% \\reddit{reddit-id}\n% \\medium{madium-id}\n% \\kaggle{kaggle-id}\n% \\hackerrank{hackerrank-id}\n% \\telegram{telegram-username}\n% \\googlescholar{googlescholar-id}{name-to-display}\n%% \\firstname and \\lastname will be used\n% \\googlescholar{googlescholar-id}{}\n% \\extrainfo{extra information}\n\n\\quote{``Be the change that you want to see in the world.\"}\n\n\n%-------------------------------------------------------------------------------\n%\tLETTER INFORMATION\n%\tAll of the below lines must be filled out\n%-------------------------------------------------------------------------------\n% The company being applied to\n\\recipient\n  {Company Recruitment Team}\n  {Google Inc.\\\\1600 Amphitheatre Parkway\\\\Mountain View, CA 94043}\n% The date on the letter, default is the date of compilation\n\\letterdate{\\today}\n% The title of the letter\n\\lettertitle{Job Application for Software Engineer}\n% How the letter is opened\n\\letteropening{Dear Mr./Ms./Dr. LastName,}\n% How the letter is closed\n\\letterclosing{Sincerely,}\n% Any enclosures with the letter\n\\letterenclosure[Attached]{Curriculum Vitae}\n\n\n%-------------------------------------------------------------------------------\n\\begin{document}\n\n% Print the header with above personal information\n% Give optional argument to change alignment(C: center, L: left, R: right)\n\\makecvheader[R]\n\n% Print the footer with 3 arguments(<left>, <center>, <right>)\n% Leave any of these blank if they are not needed\n\\makecvfooter\n  {\\today}\n  {Claud D. Park~~~·~~~Cover Letter}\n  {}\n\n% Print the title with above letter information\n\\makelettertitle\n\n%-------------------------------------------------------------------------------\n%\tLETTER CONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvletter}\n\n\\lettersection{About Me}\nLorem 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.\n\n\\lettersection{Why Google?}\nSuspendisse 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.\n\n\\lettersection{Why Me?}\nDuis 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.\n\n\\end{cvletter}\n\n\n%-------------------------------------------------------------------------------\n% Print the signature and enclosures with above letter information\n\\makeletterclosing\n\n\\end{document}\n"
  },
  {
    "path": "examples/cv/certificates.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Certificates}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvhonors}\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Certified Advanced Networking - Specialty} % Name\n    {Amazon Web Services (AWS)} % Issuer\n    {} % Credential ID\n    {2023} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Certified Developer – Associate} % Name\n    {Amazon Web Services (AWS)} % Issuer\n    {} % Credential ID\n    {2023} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Certified Cloud Practitioner} % Name\n    {Amazon Web Services (AWS)} % Issuer\n    {} % Credential ID\n    {2023} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Certified Security - Specialty} % Name\n    {Amazon Web Services (AWS)} % Issuer\n    {} % Credential ID\n    {2022} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Certified Solutions Architect – Professional} % Name\n    {Amazon Web Services (AWS)} % Issuer\n    {} % Credential ID\n    {2022} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Certified Solutions Architect – Associate} % Name\n    {Amazon Web Services (AWS)} % Issuer\n    {} % Credential ID\n    {2019} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Certified SysOps Administrator – Associate} % Name\n    {Amazon Web Services (AWS)} % Issuer\n    {} % Credential ID\n    {2021} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Certified Kubernetes Application Developer (CKAD)} % Name\n    {The Linux Foundation} % Issuer\n    {} % Credential ID\n    {2020} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Certified: Terraform Authoring and Operations Professional} % Name\n    {HashiCorp} % Issuer\n    {} % Credential ID\n    {2024} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Certified: Terraform Associate (003)} % Name\n    {HashiCorp} % Issuer\n    {} % Credential ID\n    {2023} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Certified: Terraform Associate (002)} % Name\n    {HashiCorp} % Issuer\n    {} % Credential ID\n    {2020} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Certified: Consul Associate (003)} % Name\n    {HashiCorp} % Issuer\n    {} % Credential ID\n    {2024} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Certified: Consul Associate (002)} % Name\n    {HashiCorp} % Issuer\n    {} % Credential ID\n    {2023} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Certified: Vault Associate (003)} % Name\n    {HashiCorp} % Issuer\n    {} % Credential ID\n    {2025} % Date(s)\n\n%---------------------------------------------------------\n\\end{cvhonors}\n"
  },
  {
    "path": "examples/cv/committees.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Program Committees}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvhonors}\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Problem Writer} % Position\n    {2016 CODEGATE Hacking Competition World Final} % Committee\n    {S.Korea} % Location\n    {2016} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Organizer \\& Co-director} % Position\n    {1st POSTECH Hackathon} % Committee\n    {S.Korea} % Location\n    {2013} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Staff} % Position\n    {7th Hacking Camp} % Committee\n    {S.Korea} % Location\n    {2012} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Problem Writer} % Position\n    {1st Hoseo University Teenager Hacking Competition} % Committee\n    {S.Korea} % Location\n    {2012} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Staff \\& Problem Writer} % Position\n    {JFF(Just for Fun) Hacking Competition} % Committee\n    {S.Korea} % Location\n    {2012} % Date(s)\n\n%---------------------------------------------------------\n\\end{cvhonors}\n"
  },
  {
    "path": "examples/cv/education.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Education}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cventries}\n\n%---------------------------------------------------------\n  \\cventry\n    {B.S. in Computer Science and Engineering} % Degree\n    {POSTECH(Pohang University of Science and Technology)} % Institution\n    {Pohang, S.Korea} % Location\n    {Mar. 2010 - Aug. 2017} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) bullet points\n        \\item {Got a Chun Shin-Il Scholarship which is given to promising students in CSE Dept.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n\\end{cventries}\n"
  },
  {
    "path": "examples/cv/experience.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Experience}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cventries}\n\n%---------------------------------------------------------\n  \\cventry\n    {Founding Member \\& Site Reliability Engineer \\& Infrastructure Team Lead} % Job title\n    {Danggeun Pay Inc. (KarrotPay)} % Organization\n    {Seoul, S.Korea} % Location\n    {Mar. 2021 - Present} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Everything that matters.}\n        \\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.}\n        \\item {Continuously improved the infrastructure architecture since launching the service. (currently 3.6 million users)}\n        \\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.}\n        \\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.}\n        \\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.}\n        \\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.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Site Reliability Engineer} % Job title\n    {Danggeun Market Inc.} % Organization\n    {Seoul, S.Korea} % Location\n    {Feb. 2021 - Mar. 2021} % Date(s)\n    {\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Founding Member \\& Director of Infrastructure Division} % Job title\n    {Kasa} % Organization\n    {Seoul, S.Korea} % Location\n    {Jun. 2018 - Jan. 2021} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\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.}\n        \\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.}\n        \\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.}\n        \\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.}\n        \\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.}\n        \\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.}\n        \\item {Provisioned the Directory Service for employee identity management based on OpenLDAP which guarantees HA with multi-master replication.}\n        \\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.}\n        \\item {Introduced Elastic APM to help distributed tracing, trouble-shooting and performance testing in MSA.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Software Architect} % Job title\n    {Omnious. Co., Ltd.} % Organization\n    {Seoul, S.Korea} % Location\n    {Jun. 2017 - May 2018} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Provisioned an easily managable hybrid infrastructure(Amazon AWS + On-premise) utilizing IaC(Infrastructure as Code) tools like Ansible, Packer and Terraform.}\n        \\item {Built fully automated CI/CD pipelines on CircleCI for containerized applications using Docker, AWS ECR and Rancher.}\n        \\item {Designed an overall service architecture and pipelines of the Machine Learning based Fashion Tagging API SaaS product with the micro-services architecture.}\n        \\item {Implemented several API microservices in Node.js Koa and in the serverless AWS Lambda functions.}\n        \\item {Deployed a centralized logging environment(ELK, Filebeat, CloudWatch, S3) which gather log data from docker containers and AWS resources.}\n        \\item {Deployed a centralized monitoring environment(Grafana, InfluxDB, CollectD) which gather system metrics as well as docker run-time metrics.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Co-founder \\& Software Engineer} % Job title\n    {PLAT Corp.} % Organization\n    {Seoul, S.Korea} % Location\n    {Jan. 2016 - Jun. 2017} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Implemented RESTful API server for car rental booking application(CARPLAT in Google Play).}\n        \\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.}\n        \\item {Developed an easy-to-use Payment module which connects to major PG(Payment Gateway) companies in Korea.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Researcher} % Job title\n    {Undergraduate Research, Machine Learning Lab(Prof. Seungjin Choi)} % Organization\n    {Pohang, S.Korea} % Location\n    {Mar. 2016 - Exp. Jun. 2017} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Researched classification algorithms(SVM, CNN) to improve accuracy of human exercise recognition with wearable device.}\n        \\item {Developed two TIZEN applications to collect sample data set and to recognize user exercise on SAMSUNG Gear S.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Software Engineer \\& Security Researcher (Compulsory Military Service)} % Job title\n    {R.O.K Cyber Command, MND} % Organization\n    {Seoul, S.Korea} % Location\n    {Aug. 2014 - Apr. 2016} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\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.}\n        \\item {Implemented a distributed web stress test tool with high anonymity.}\n        \\item {Implemented a military cooperation system which is web based real time messenger in Scala on Lift.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Game Developer Intern at Global Internship Program} % Job title\n    {NEXON} % Organization\n    {Seoul, S.Korea \\& LA, U.S.A} % Location\n    {Jan. 2013 - Feb. 2013} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Developed in Cocos2d-x an action puzzle game(Dragon Buster) targeting U.S. market.}\n        \\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.}\n        \\item {Won the 2nd prize in final evaluation.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Researcher for <Detecting video’s torrents using image similarity algorithms>} % Job title\n    {Undergraduate Research, Computer Vision Lab(Prof. Bohyung Han)} % Organization\n    {Pohang, S.Korea} % Location\n    {Sep. 2012 - Feb. 2013} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Researched means of retrieving a corresponding video based on image contents using image similarity algorithm.}\n        \\item {Implemented prototype that users can obtain torrent magnet links of corresponding video relevant to an image on web site.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Software Engineer Trainee} % Job title\n    {Software Maestro (funded by Korea Ministry of Knowledge and Economy)} % Organization\n    {Seoul, S.Korea} % Location\n    {Jul. 2012 - Jun. 2013} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Performed research memory management strategies of OS and implemented in Python an interactive simulator for Linux kernel memory management.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Software Engineer} % Job title\n    {ShitOne Corp.} % Organization\n    {Seoul, S.Korea} % Location\n    {Dec. 2011 - Feb. 2012} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\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.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Freelance Penetration Tester} % Job title\n    {SAMSUNG Electronics} % Organization\n    {S.Korea} % Location\n    {Sep. 2013, Mar. 2011 - Oct. 2011} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Conducted penetration testing on SAMSUNG KNOX, which is solution for enterprise mobile security.}\n        \\item {Conducted penetration testing on SAMSUNG Smart TV.}\n      \\end{cvitems}\n      %\\begin{cvsubentries}\n      %  \\cvsubentry{}{KNOX(Solution for Enterprise Mobile Security) Penetration Testing}{Sep. 2013}{}\n      %  \\cvsubentry{}{Smart TV Penetration Testing}{Mar. 2011 - Oct. 2011}{}\n      %\\end{cvsubentries}\n    }\n\n%---------------------------------------------------------\n\\end{cventries}\n"
  },
  {
    "path": "examples/cv/extracurricular.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Extracurricular Activity}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cventries}\n\n%---------------------------------------------------------\n  \\cventry\n    {Core Member} % Affiliation/role\n    {B10S (B1t 0n the Security, Underground hacker team)} % Organization/group\n    {S.Korea} % Location\n    {Nov. 2011 - PRESENT} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of experience/contributions/knowledge\n        \\item {Gained expertise in penetration testing areas, especially targeted on web application and software.}\n        \\item {Participated on a lot of hacking competition and won a good award.}\n        \\item {Held several hacking competitions non-profit, just for fun.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Member} % Affiliation/role\n    {WiseGuys (Hacking \\& Security research group)} % Organization/group\n    {S.Korea} % Location\n    {Jun. 2012 - PRESENT} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of experience/contributions/knowledge\n        \\item {Gained expertise in hardware hacking areas from penetration testing on several devices including wireless router, smartphone, CCTV and set-top box.}\n        \\item {Trained wannabe hacker about hacking technique from basic to advanced and ethics for white hackers by hosting annual Hacking Camp.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Core Member \\& President at 2013} % Affiliation/role\n    {PoApper (Developers' Network of POSTECH)} % Organization/group\n    {Pohang, S.Korea} % Location\n    {Jun. 2010 - Jun. 2017} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of experience/contributions/knowledge\n        \\item {Reformed the society focusing on software engineering and building network on and off campus.}\n        \\item {Proposed various marketing and network activities to raise awareness.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Member} % Affiliation/role\n    {PLUS (Laboratory for UNIX Security in POSTECH)} % Organization/group\n    {Pohang, S.Korea} % Location\n    {Sep. 2010 - Oct. 2011} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of experience/contributions/knowledge\n        \\item {Gained expertise in hacking \\& security areas, especially about internal of operating system based on UNIX and several exploit techniques.}\n        \\item {Participated on several hacking competition and won a good award.}\n        \\item {Conducted periodic security checks on overall IT system as a member of POSTECH CERT.}\n        \\item {Conducted penetration testing commissioned by national agency and corporation.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Member} % Affiliation/role\n    {MSSA (Management Strategy Club of POSTECH)} % Organization/group\n    {Pohang, S.Korea} % Location\n    {Sep. 2013 - Jun. 2017} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of experience/contributions/knowledge\n        \\item {Gained knowledge about several business field like Management, Strategy, Financial and marketing from group study.}\n        \\item {Gained expertise in business strategy areas and inisght for various industry from weekly industry analysis session.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n\\end{cventries}\n"
  },
  {
    "path": "examples/cv/honors.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Honors \\& Awards}\n\n\n%-------------------------------------------------------------------------------\n%\tSUBSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsubsection{International Awards}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvhonors}\n\n%---------------------------------------------------------\n  \\cvhonor\n    {2nd Place} % Award\n    {AWS ASEAN AI/ML GameDay} % Event\n    {Online} % Location\n    {2021} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 28th CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2020} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 26th CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2018} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 25th CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2017} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 22nd CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2014} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 21st CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2013} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 19th CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2011} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {6th Place} % Award\n    {SECUINSIDE Hacking Competition World Final} % Event\n    {Seoul, S.Korea} % Location\n    {2012} % Date(s)\n\n%---------------------------------------------------------\n\\end{cvhonors}\n\n\n%-------------------------------------------------------------------------------\n%\tSUBSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsubsection{Domestic Awards}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvhonors}\n\n%---------------------------------------------------------\n  \\cvhonor\n    {2nd Place} % Award\n    {AWS Korea GameDay} % Event\n    {Seoul, S.Korea} % Location\n    {2021} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {3rd Place} % Award\n    {WITHCON Hacking Competition Final} % Event\n    {Seoul, S.Korea} % Location\n    {2015} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Silver Prize} % Award\n    {KISA HDCON Hacking Competition Final} % Event\n    {Seoul, S.Korea} % Location\n    {2017} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Silver Prize} % Award\n    {KISA HDCON Hacking Competition Final} % Event\n    {Seoul, S.Korea} % Location\n    {2013} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {2nd Award} % Award\n    {HUST Hacking Festival} % Event\n    {S.Korea} % Location\n    {2013} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {3rd Award} % Award\n    {HUST Hacking Festival} % Event\n    {S.Korea} % Location\n    {2010} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {3rd Award} % Award\n    {Holyshield 3rd Hacking Festival} % Event\n    {S.Korea} % Location\n    {2012} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {2nd Award} % Award\n    {Holyshield 3rd Hacking Festival} % Event\n    {S.Korea} % Location\n    {2011} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {5th Place} % Award\n    {PADOCON Hacking Competition Final} % Event\n    {Seoul, S.Korea} % Location\n    {2011} % Date(s)\n\n%---------------------------------------------------------\n\\end{cvhonors}\n\n%-------------------------------------------------------------------------------\n%\tSUBSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsubsection{Community}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvhonors}\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Community Builder (Container)} % Award\n    {Amazon Web Services (AWS)} % Event\n    {} % Location\n    {2022} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Ambassador} % Award\n    {HashiCorp} % Event\n    {} % Location\n    {2022} % Date(s)\n\n%---------------------------------------------------------\n\\end{cvhonors}\n"
  },
  {
    "path": "examples/cv/presentation.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Presentation}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cventries}\n\n%---------------------------------------------------------\n  \\cventry\n    {Presenter for <Hosting Web Application for Free utilizing GitHub, Netlify and CloudFlare>} % Role\n    {DevFest Seoul by Google Developer Group Korea} % Event\n    {Seoul, S.Korea} % Location\n    {Nov. 2017} % Date(s)\n    {\n      \\begin{cvitems} % Description(s)\n        \\item {Introduced the history of web technology and the JAM stack which is for the modern web application development.}\n        \\item {Introduced how to freely host the web application with high performance utilizing global CDN services.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Presenter for <DEFCON 20th : The way to go to Las Vegas>} % Role\n    {6th CodeEngn (Reverse Engineering Conference)} % Event\n    {Seoul, S.Korea} % Location\n    {Jul. 2012} % Date(s)\n    {\n      \\begin{cvitems} % Description(s)\n        \\item {Introduced CTF(Capture the Flag) hacking competition and advanced techniques and strategy for CTF}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Presenter for <Metasploit 101>} % Role\n    {6th Hacking Camp - S.Korea} % Event\n    {S.Korea} % Location\n    {Sep. 2012} % Date(s)\n    {\n      \\begin{cvitems} % Description(s)\n        \\item {Introduced basic procedure for penetration testing and how to use Metasploit}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n\\end{cventries}\n"
  },
  {
    "path": "examples/cv/skills.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Skills}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvskills}\n\n%---------------------------------------------------------\n  \\cvskill\n    {DevOps} % Category\n    {AWS, Docker, Kubernetes, Rancher, Vagrant, Packer, Terraform, Jenkins, CircleCI} % Skills\n\n%---------------------------------------------------------\n  \\cvskill\n    {Back-end} % Category\n    {Koa, Express, Django, REST API} % Skills\n\n%---------------------------------------------------------\n  \\cvskill\n    {Front-end} % Category\n    {Hugo, Redux, React, HTML5, LESS, SASS} % Skills\n\n%---------------------------------------------------------\n  \\cvskill\n    {Programming} % Category\n    {Node.js, Python, JAVA, OCaml, LaTeX} % Skills\n\n%---------------------------------------------------------\n  \\cvskill\n    {Languages} % Category\n    {Korean, English, Japanese} % Skills\n\n%---------------------------------------------------------\n\\end{cvskills}\n"
  },
  {
    "path": "examples/cv/writing.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Writing}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cventries}\n\n%---------------------------------------------------------\n  \\cventry\n    {Founder \\& Writer} % Role\n    {A Guide for Developers in Start-up} % Title\n    {Facebook Page} % Location\n    {Jan. 2015 - PRESENT} % Date(s)\n    {\n      \\begin{cvitems} % Description(s)\n        \\item {Drafted daily news for developers in Korea about IT technologies, issues about start-up.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Undergraduate Student Reporter} % Role\n    {AhnLab} % Title\n    {S.Korea} % Location\n    {Oct. 2012 - Jul. 2013} % Date(s)\n    {\n      \\begin{cvitems} % Description(s)\n        \\item {Drafted reports about IT trends and Security issues on AhnLab Company magazine.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n\\end{cventries}\n"
  },
  {
    "path": "examples/cv.tex",
    "content": "%!TEX TS-program = xelatex\n%!TEX encoding = UTF-8 Unicode\n% Awesome CV LaTeX Template for CV/Resume\n%\n% This template has been downloaded from:\n% https://github.com/posquit0/Awesome-CV\n%\n% Author:\n% Claud D. Park <posquit0.bj@gmail.com>\n% http://www.posquit0.com\n%\n% Template license:\n% CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)\n%\n\n\n%-------------------------------------------------------------------------------\n% CONFIGURATIONS\n%-------------------------------------------------------------------------------\n% A4 paper size by default, use 'letterpaper' for US letter\n\\documentclass[11pt, a4paper]{awesome-cv}\n\n% Configure page margins with geometry\n\\geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}\n\n% Color for highlights\n% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange\n%                 awesome-nephritis, awesome-concrete, awesome-darknight\n\\colorlet{awesome}{awesome-red}\n% Uncomment if you would like to specify your own color\n% \\definecolor{awesome}{HTML}{CA63A8}\n\n% Colors for text\n% Uncomment if you would like to specify your own color\n% \\definecolor{darktext}{HTML}{414141}\n% \\definecolor{text}{HTML}{333333}\n% \\definecolor{graytext}{HTML}{5D5D5D}\n% \\definecolor{lighttext}{HTML}{999999}\n% \\definecolor{sectiondivider}{HTML}{5D5D5D}\n\n% Set false if you don't want to highlight section with awesome color\n\\setbool{acvSectionColorHighlight}{true}\n\n% If you would like to change the social information separator from a pipe (|) to something else\n\\renewcommand{\\acvHeaderSocialSep}{\\quad\\textbar\\quad}\n\n\n%-------------------------------------------------------------------------------\n%\tPERSONAL INFORMATION\n%\tComment any of the lines below if they are not required\n%-------------------------------------------------------------------------------\n% Available options: circle|rectangle,edge/noedge,left/right\n% \\photo{./examples/profile.png}\n\\name{Claud D.}{Park}\n\\position{DevOps Engineer{\\enskip\\cdotp\\enskip}Software Architect}\n\\address{Mapo-gu, Seoul, Republic of Korea}\n\n\\mobile{(+82) 10-9030-1843}\n%\\whatsapp{(+82) 10-9030-1843}\n\\email{posquit0.bj@gmail.com}\n%\\dateofbirth{January 1st, 1970}\n\\homepage{www.posquit0.com}\n\\github{posquit0}\n\\linkedin{posquit0}\n% \\gitlab{gitlab-id}\n% \\stackoverflow{SO-id}{SO-name}\n% \\twitter{@twit}\n% \\x{x-id}\n% \\skype{skype-id}\n% \\reddit{reddit-id}\n% \\medium{medium-id}\n% \\kaggle{kaggle-id}\n% \\hackerrank{hackerrank-id}\n% \\telegram{telegram-username}\n% \\googlescholar{googlescholar-id}{name-to-display}\n%% \\firstname and \\lastname will be used\n% \\googlescholar{googlescholar-id}{}\n% \\extrainfo{extra information}\n\n\\quote{``Be the change that you want to see in the world.\"}\n\n\n%-------------------------------------------------------------------------------\n\\begin{document}\n\n% Print the header with above personal information\n% Give optional argument to change alignment(C: center, L: left, R: right)\n\\makecvheader\n\n% Print the footer with 3 arguments(<left>, <center>, <right>)\n% Leave any of these blank if they are not needed\n\\makecvfooter\n  {\\today}\n  {Claud D. Park~~~·~~~Curriculum Vitae}\n  {\\thepage}\n\n\n%-------------------------------------------------------------------------------\n%\tCV/RESUME CONTENT\n%\tEach section is imported separately, open each file in turn to modify content\n%-------------------------------------------------------------------------------\n\\input{cv/education.tex}\n\\input{cv/skills.tex}\n\\input{cv/experience.tex}\n\\input{cv/extracurricular.tex}\n\\input{cv/honors.tex}\n\\input{cv/certificates.tex}\n\\input{cv/presentation.tex}\n\\input{cv/writing.tex}\n\\input{cv/committees.tex}\n\n\n%-------------------------------------------------------------------------------\n\\end{document}\n"
  },
  {
    "path": "examples/resume/certificates.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Certificates}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvhonors}\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Certified Advanced Networking - Specialty} % Name\n    {Amazon Web Services (AWS)} % Issuer\n    {} % Credential ID\n    {2023} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Certified Security - Specialty} % Name\n    {Amazon Web Services (AWS)} % Issuer\n    {} % Credential ID\n    {2022} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Certified Solutions Architect – Professional} % Name\n    {Amazon Web Services (AWS)} % Issuer\n    {} % Credential ID\n    {2022} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Certified SysOps Administrator – Associate} % Name\n    {Amazon Web Services (AWS)} % Issuer\n    {} % Credential ID\n    {2021} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Certified Kubernetes Application Developer (CKAD)} % Name\n    {The Linux Foundation} % Issuer\n    {} % Credential ID\n    {2020} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Certified: Terraform Authoring and Operations Professional} % Name\n    {HashiCorp} % Issuer\n    {} % Credential ID\n    {2024} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Certified: Terraform Associate (003)} % Name\n    {HashiCorp} % Issuer\n    {} % Credential ID\n    {2023} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Certified: Consul Associate (003)} % Name\n    {HashiCorp} % Issuer\n    {} % Credential ID\n    {2024} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Certified: Vault Associate (003)} % Name\n    {HashiCorp} % Issuer\n    {} % Credential ID\n    {2025} % Date(s)\n\n%---------------------------------------------------------\n\\end{cvhonors}\n"
  },
  {
    "path": "examples/resume/committees.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Program Committees}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvhonors}\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Problem Writer} % Position\n    {2016 CODEGATE Hacking Competition World Final} % Committee\n    {S.Korea} % Location\n    {2016} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Organizer \\& Co-director} % Position\n    {1st POSTECH Hackathon} % Committee\n    {S.Korea} % Location\n    {2013} % Date(s)\n\n%---------------------------------------------------------\n\\end{cvhonors}\n"
  },
  {
    "path": "examples/resume/education.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Education}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cventries}\n\n%---------------------------------------------------------\n  \\cventry\n    {B.S. in Computer Science and Engineering} % Degree\n    {POSTECH(Pohang University of Science and Technology)} % Institution\n    {Pohang, S.Korea} % Location\n    {Mar. 2010 - Aug. 2017} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) bullet points\n        \\item {Got a Chun Shin-Il Scholarship which is given to promising students in CSE Dept.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n\\end{cventries}\n"
  },
  {
    "path": "examples/resume/experience.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Work Experience}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cventries}\n\n%---------------------------------------------------------\n  \\cventry\n    {DevOps Engineer} % Job title\n    {Dunamu Inc.} % Organization\n    {Seoul, S.Korea} % Location\n    {Sep. 2023 - Mar. 2024} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\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.}\n        \\item {Designed Terraform modules to efficiently manage and scale infrastructure across dozens of AWS accounts, enabling standardized, repeatable deployments.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Founding Member \\& Site Reliability Engineer \\& Infrastructure Team Lead} % Job title\n    {Danggeun Pay Inc. (KarrotPay)} % Organization\n    {Seoul, S.Korea} % Location\n    {Mar. 2021 - Jun. 2023} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Everything that matters.}\n        \\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.}\n        \\item {Continuously improved the infrastructure architecture since launching the service. (currently 3.6 million users)}\n        \\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.}\n        \\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.}\n        \\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.}\n        \\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.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Site Reliability Engineer} % Job title\n    {Danggeun Market Inc.} % Organization\n    {Seoul, S.Korea} % Location\n    {Feb. 2021 - Mar. 2021} % Date(s)\n    {\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Founding Member \\& Director of Infrastructure Division} % Job title\n    {Kasa} % Organization\n    {Seoul, S.Korea} % Location\n    {Jun. 2018 - Jan. 2021} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\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.}\n        \\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.}\n        \\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.}\n        \\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.}\n        \\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.}\n        \\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.}\n        \\item {Provisioned the Directory Service for employee identity management based on OpenLDAP which guarantees HA with multi-master replication.}\n        \\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.}\n        \\item {Introduced Elastic APM to help distributed tracing, trouble-shooting and performance testing in MSA.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Software Architect} % Job title\n    {Omnious. Co., Ltd.} % Organization\n    {Seoul, S.Korea} % Location\n    {Jun. 2017 - May. 2018} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Provisioned an easily managable hybrid infrastructure(Amazon AWS + On-premise) utilizing IaC(Infrastructure as Code) tools like Ansible, Packer and Terraform.}\n        \\item {Built fully automated CI/CD pipelines on CircleCI for containerized applications using Docker, AWS ECR and Rancher.}\n        \\item {Designed an overall service architecture and pipelines of the Machine Learning based Fashion Tagging API SaaS product with the micro-services architecture.}\n        \\item {Implemented several API microservices in Node.js Koa and in the serverless AWS Lambda functions.}\n        \\item {Deployed a centralized logging environment(ELK, Filebeat, CloudWatch, S3) which gather log data from docker containers and AWS resources.}\n        \\item {Deployed a centralized monitoring environment(Grafana, InfluxDB, CollectD) which gather system metrics as well as docker run-time metrics.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Co-founder \\& Software Engineer} % Job title\n    {PLAT Corp.} % Organization\n    {Seoul, S.Korea} % Location\n    {Jan. 2016 - Jun. 2017} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Implemented RESTful API server for car rental booking application(CARPLAT in Google Play).}\n        \\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.}\n        \\item {Developed an easy-to-use Payment module which connects to major PG(Payment Gateway) companies in Korea.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Software Engineer \\& Security Researcher (Compulsory Military Service)} % Job title\n    {R.O.K Cyber Command, MND} % Organization\n    {Seoul, S.Korea} % Location\n    {Aug. 2014 - Apr. 2016} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\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.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Software Engineer} % Job title\n    {ShitOne Corp.} % Organization\n    {Seoul, S.Korea} % Location\n    {Dec. 2011 - Feb. 2012} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of tasks/responsibilities\n        \\item {Developed a proxy drive smartphone application which connects proxy driver and customer.}\n        \\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.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n\\end{cventries}\n"
  },
  {
    "path": "examples/resume/extracurricular.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Extracurricular Activity}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cventries}\n\n%---------------------------------------------------------\n  \\cventry\n    {Core Member \\& President at 2013} % Affiliation/role\n    {PoApper (Developers' Network of POSTECH)} % Organization/group\n    {Pohang, S.Korea} % Location\n    {Jun. 2010 - Jun. 2017} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of experience/contributions/knowledge\n        \\item {Reformed the society focusing on software engineering and building network on and off campus.}\n        \\item {Proposed various marketing and network activities to raise awareness.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Member} % Affiliation/role\n    {PLUS (Laboratory for UNIX Security in POSTECH)} % Organization/group\n    {Pohang, S.Korea} % Location\n    {Sep. 2010 - Oct. 2011} % Date(s)\n    {\n      \\begin{cvitems} % Description(s) of experience/contributions/knowledge\n        \\item {Gained expertise in hacking \\& security areas, especially about internal of operating system based on UNIX and several exploit techniques.}\n        \\item {Participated on several hacking competition and won a good award.}\n        \\item {Conducted periodic security checks on overall IT system as a member of POSTECH CERT.}\n        \\item {Conducted penetration testing commissioned by national agency and corporation.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n\\end{cventries}\n"
  },
  {
    "path": "examples/resume/honors.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Honors \\& Awards}\n\n\n%-------------------------------------------------------------------------------\n%\tSUBSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsubsection{International Awards}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvhonors}\n\n%---------------------------------------------------------\n  \\cvhonor\n    {2nd Place} % Award\n    {AWS ASEAN AI/ML GameDay} % Event\n    {Online} % Location\n    {2021} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 28th CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2020} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 26th CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2018} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 25th CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2017} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 22nd CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2014} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 21st CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2013} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Finalist} % Award\n    {DEFCON 19th CTF Hacking Competition World Final} % Event\n    {Las Vegas, U.S.A} % Location\n    {2011} % Date(s)\n\n%---------------------------------------------------------\n\\end{cvhonors}\n\n\n%-------------------------------------------------------------------------------\n%\tSUBSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsubsection{Domestic Awards}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvhonors}\n\n%---------------------------------------------------------\n  \\cvhonor\n    {2nd Place} % Award\n    {AWS Korea GameDay} % Event\n    {Seoul, S.Korea} % Location\n    {2021} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {3rd Place} % Award\n    {WITHCON Hacking Competition Final} % Event\n    {Seoul, S.Korea} % Location\n    {2015} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Silver Prize} % Award\n    {KISA HDCON Hacking Competition Final} % Event\n    {Seoul, S.Korea} % Location\n    {2017} % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Silver Prize} % Award\n    {KISA HDCON Hacking Competition Final} % Event\n    {Seoul, S.Korea} % Location\n    {2013} % Date(s)\n\n%---------------------------------------------------------\n\\end{cvhonors}\n\n%-------------------------------------------------------------------------------\n%\tSUBSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsubsection{Community}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvhonors}\n\n%---------------------------------------------------------\n  \\cvhonor\n    {AWS Community Builder (Container)} % Award\n    {Amazon Web Services (AWS)} % Event\n    {} % Location\n    {2022 - } % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {HashiCorp Ambassador} % Award\n    {HashiCorp} % Event\n    {} % Location\n    {2022 - } % Date(s)\n\n%---------------------------------------------------------\n  \\cvhonor\n    {Organizer of HashiCorp Korea User Group} % Award\n    {HashiCorp} % Event\n    {} % Location\n    {2018 - } % Date(s)\n\n%---------------------------------------------------------\n\\end{cvhonors}\n"
  },
  {
    "path": "examples/resume/presentation.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Presentation}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cventries}\n\n%---------------------------------------------------------\n  \\cventry\n    {Presenter for <Hosting Web Application for Free utilizing GitHub, Netlify and CloudFlare>} % Role\n    {DevFest Seoul by Google Developer Group Korea} % Event\n    {Seoul, S.Korea} % Location\n    {Nov. 2017} % Date(s)\n    {\n      \\begin{cvitems} % Description(s)\n        \\item {Introduced the history of web technology and the JAM stack which is for the modern web application development.}\n        \\item {Introduced how to freely host the web application with high performance utilizing global CDN services.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n  \\cventry\n    {Presenter for <DEFCON 20th : The way to go to Las Vegas>} % Role\n    {6th CodeEngn (Reverse Engineering Conference)} % Event\n    {Seoul, S.Korea} % Location\n    {Jul. 2012} % Date(s)\n    {\n      \\begin{cvitems} % Description(s)\n        \\item {Introduced CTF(Capture the Flag) hacking competition and advanced techniques and strategy for CTF}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n\\end{cventries}\n"
  },
  {
    "path": "examples/resume/summary.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Summary}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cvparagraph}\n\n%---------------------------------------------------------\nSeasoned 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.\n\nPassionate 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.\n\\end{cvparagraph}\n"
  },
  {
    "path": "examples/resume/writing.tex",
    "content": "%-------------------------------------------------------------------------------\n%\tSECTION TITLE\n%-------------------------------------------------------------------------------\n\\cvsection{Writing}\n\n\n%-------------------------------------------------------------------------------\n%\tCONTENT\n%-------------------------------------------------------------------------------\n\\begin{cventries}\n\n%---------------------------------------------------------\n  \\cventry\n    {Founder \\& Writer} % Role\n    {A Guide for Developers in Start-up} % Title\n    {Facebook Page} % Location\n    {Jan. 2015 - PRESENT} % Date(s)\n    {\n      \\begin{cvitems} % Description(s)\n        \\item {Drafted daily news for developers in Korea about IT technologies, issues about start-up.}\n      \\end{cvitems}\n    }\n\n%---------------------------------------------------------\n\\end{cventries}\n"
  },
  {
    "path": "examples/resume.tex",
    "content": "%!TEX TS-program = xelatex\n%!TEX encoding = UTF-8 Unicode\n% Awesome CV LaTeX Template for CV/Resume\n%\n% This template has been downloaded from:\n% https://github.com/posquit0/Awesome-CV\n%\n% Author:\n% Claud D. Park <posquit0.bj@gmail.com>\n% http://www.posquit0.com\n%\n% Template license:\n% CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)\n%\n\n\n%-------------------------------------------------------------------------------\n% CONFIGURATIONS\n%-------------------------------------------------------------------------------\n% A4 paper size by default, use 'letterpaper' for US letter\n\\documentclass[11pt, a4paper]{awesome-cv}\n\n% Configure page margins with geometry\n\\geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}\n\n% Color for highlights\n% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange\n%                 awesome-nephritis, awesome-concrete, awesome-darknight\n\\colorlet{awesome}{awesome-red}\n% Uncomment if you would like to specify your own color\n% \\definecolor{awesome}{HTML}{3E6D9C}\n\n% Colors for text\n% Uncomment if you would like to specify your own color\n% \\definecolor{darktext}{HTML}{414141}\n% \\definecolor{text}{HTML}{333333}\n% \\definecolor{graytext}{HTML}{5D5D5D}\n% \\definecolor{lighttext}{HTML}{999999}\n% \\definecolor{sectiondivider}{HTML}{5D5D5D}\n\n% Set false if you don't want to highlight section with awesome color\n\\setbool{acvSectionColorHighlight}{true}\n\n% If you would like to change the social information separator from a pipe (|) to something else\n\\renewcommand{\\acvHeaderSocialSep}{\\quad\\textbar\\quad}\n\n\n%-------------------------------------------------------------------------------\n%\tPERSONAL INFORMATION\n%\tComment any of the lines below if they are not required\n%-------------------------------------------------------------------------------\n% Available options: circle|rectangle,edge/noedge,left/right\n% \\photo[rectangle,edge,right]{./examples/profile}\n\\name{Byungjin}{Park}\n\\position{DevOps Engineer{\\enskip\\cdotp\\enskip}Software Architect}\n\\address{Mapo-gu, Seoul, Republic of Korea}\n\n\\mobile{(+82) 10-9030-1843}\n%\\whatsapp{(+82) 10-9030-1843}\n\\email{posquit0.bj@gmail.com}\n%\\dateofbirth{January 1st, 1970}\n\\homepage{www.posquit0.com}\n\\github{posquit0}\n\\linkedin{posquit0}\n% \\gitlab{gitlab-id}\n% \\stackoverflow{SO-id}{SO-name}\n% \\twitter{@twit}\n% \\x{x-id}\n% \\skype{skype-id}\n% \\reddit{reddit-id}\n% \\medium{madium-id}\n% \\kaggle{kaggle-id}\n% \\hackerrank{hackerrank-id}\n% \\telegram{telegram-username}\n% \\googlescholar{googlescholar-id}{name-to-display}\n%% \\firstname and \\lastname will be used\n% \\googlescholar{googlescholar-id}{}\n% \\extrainfo{extra information}\n\n\\quote{``Be the change that you want to see in the world.\"}\n\n\n%-------------------------------------------------------------------------------\n\\begin{document}\n\n% Print the header with above personal information\n% Give optional argument to change alignment(C: center, L: left, R: right)\n\\makecvheader[C]\n\n% Print the footer with 3 arguments(<left>, <center>, <right>)\n% Leave any of these blank if they are not needed\n\\makecvfooter\n  {\\today}\n  {Byungjin Park~~~·~~~Résumé}\n  {\\thepage}\n\n\n%-------------------------------------------------------------------------------\n%\tCV/RESUME CONTENT\n%\tEach section is imported separately, open each file in turn to modify content\n%-------------------------------------------------------------------------------\n\\input{resume/summary.tex}\n\\input{resume/experience.tex}\n\\input{resume/honors.tex}\n\\input{resume/certificates.tex}\n% \\input{resume/presentation.tex}\n% \\input{resume/writing.tex}\n% \\input{resume/committees.tex}\n\\input{resume/education.tex}\n% \\input{resume/extracurricular.tex}\n\n\n%-------------------------------------------------------------------------------\n\\end{document}\n"
  }
]