gitextract_2u6h54b_/ ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE ├── MacFonts/ │ ├── deedy-resume.cls │ ├── deedy_resume.xtx │ └── publications.bib ├── Makefile ├── OpenFonts/ │ ├── deedy-resume-openfont.cls │ ├── deedy_resume-openfont.xtx │ ├── fonts/ │ │ ├── source-sans-pro/ │ │ │ ├── SourceSansPro-Black.otf │ │ │ ├── SourceSansPro-BlackIt.otf │ │ │ ├── SourceSansPro-Bold.otf │ │ │ ├── SourceSansPro-BoldIt.otf │ │ │ ├── SourceSansPro-ExtraLight.otf │ │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ │ ├── SourceSansPro-It.otf │ │ │ ├── SourceSansPro-Light.otf │ │ │ ├── SourceSansPro-LightIt.otf │ │ │ ├── SourceSansPro-Regular.otf │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ └── SourceSansPro-SemiboldIt.otf │ │ └── source-serif-pro/ │ │ ├── SourceSerifPro-Black.otf │ │ ├── SourceSerifPro-Bold.otf │ │ ├── SourceSerifPro-ExtraLight.otf │ │ ├── SourceSerifPro-Light.otf │ │ ├── SourceSerifPro-Regular.otf │ │ └── SourceSerifPro-Semibold.otf │ ├── publications.bib │ └── resume.tex ├── OpenFonts.Chinese/ │ ├── deedy-resume-openfont.cls │ ├── deedy_resume-openfont.xtx │ ├── fonts/ │ │ ├── source-han-sans/ │ │ │ ├── SourceHanSansSC-Bold.otf │ │ │ ├── SourceHanSansSC-ExtraLight.otf │ │ │ ├── SourceHanSansSC-Heavy.otf │ │ │ ├── SourceHanSansSC-Light.otf │ │ │ ├── SourceHanSansSC-Medium.otf │ │ │ ├── SourceHanSansSC-Normal.otf │ │ │ └── SourceHanSansSC-Regular.otf │ │ └── source-han-serif/ │ │ ├── SourceHanSerifSC-Bold.otf │ │ ├── SourceHanSerifSC-ExtraLight.otf │ │ ├── SourceHanSerifSC-Heavy.otf │ │ ├── SourceHanSerifSC-Light.otf │ │ ├── SourceHanSerifSC-Medium.otf │ │ ├── SourceHanSerifSC-Regular.otf │ │ └── SourceHanSerifSC-SemiBold.otf │ ├── publications.bib │ └── resume.tex ├── README.md └── scripts/ └── build.sh