├── .gitignore ├── README.md ├── resume.pdf ├── resume.indd ├── index.html ├── resume_postgrad.indd └── resume_postgrad.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.idlk 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | resume 2 | ====== 3 | My resume. 4 | -------------------------------------------------------------------------------- /resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macalinao/resume/HEAD/resume.pdf -------------------------------------------------------------------------------- /resume.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macalinao/resume/HEAD/resume.indd -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resume_postgrad.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macalinao/resume/HEAD/resume_postgrad.indd -------------------------------------------------------------------------------- /resume_postgrad.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macalinao/resume/HEAD/resume_postgrad.pdf --------------------------------------------------------------------------------