diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..d17e5af --- /dev/null +++ b/.drone.yml @@ -0,0 +1,17 @@ +kind: pipeline +name: create_pdf_release + +steps: + - name: render_md + image: node + commands: + - npm install + - npm run build + + - name: gitea_release + image: plugins/gitea-release + settings: + api_key: + from_secret: api_key + base_url: https://git.thomaspcole.com + files: Resume.pdf \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e0e0b13 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +package-lock.json +Resume.pdf \ No newline at end of file diff --git a/Resume.md b/Resume.md index b2d772a..f43ed45 100644 --- a/Resume.md +++ b/Resume.md @@ -1,14 +1,15 @@ -Thomas Cole -=== -6112 Sapwood Ct, Matthews, NC 28104 | 704-771-2453 | thomas.patrick.cole@gmail.com +# Thomas Cole +## thomas.patrick.cole@gmail.com | 704-771-2453 +
#### Work Experience **Director Of Information Technology | Christ Providence, Charlotte NC | December 2020 - Present** -* Administer Office 365 and Windows Active Directory infrastructure. -* Maintain and upgrade wireless and VOIP systems +* Maintain and upgrade critical network infrascture for a multi-campus environment. +* Facilitate backups and ensure their integrity. * Integrate with action teams to develop technology plans and solutions. +* Implement new software and hardware solutions with increased functionality at reduced ongoing cost. **Tech Assistant | Christ Providence, Charlotte NC | August 2019 - December 2020** @@ -33,10 +34,8 @@ Thomas Cole #### Education **The University of North Carolina at Greensboro (UNCG) | Greensboro, NC** -* Bryan School of Business and Economics * Bachelor of Science Information Systems and Supply Chain Management * Computer Science Minor -* GPA: 3.2 #### Professional Certificates **Dante Certification Level 3 | 2021** @@ -44,8 +43,7 @@ Thomas Cole * Online course - Audinate #### Relevant Projects - -**Office Supply Business System Update** | ScanOnline +**Office Supply Business System Update | ScanOnline** * Established detailed plan for replacing existing business system based on customer needs. * Integrated process improvements and feature enhancements that increase efficiency and reduce product loss. @@ -58,7 +56,7 @@ Thomas Cole * Deployed application into production without causing downtime for the customer. #### Community Engagement -**Instructor | McClintock Partners in Education | September 2019 - Present** +**Instructor | McClintock Partners in Education | September 2019 - March 2020** * Fostered creative environment where students applied problem solving and troubleshooting skills. * Instructed students on use and maintenance of maker equipment such as 3D printers, CNC Milling machines, and Laser cutters. * Supervise McClintock Innovation Lab to insure proper safety protocols are followed. diff --git a/Resume.pdf b/Resume.pdf deleted file mode 100644 index 4840b14..0000000 Binary files a/Resume.pdf and /dev/null differ diff --git a/config.js b/config.js new file mode 100644 index 0000000..baed925 --- /dev/null +++ b/config.js @@ -0,0 +1,9 @@ +module.exports = { + stylesheet: ['stylesheet.css'], + pdf_options: { + format: 'Letter', + margin: '0mm', + printBackground: true, + }, + stylesheet_encoding: 'utf-8', +}; \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..8a12b65 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "resume-md", + "version": "1.0.0", + "description": "Markdown version of my resume.", + "main": "render.js", + "scripts": { + "build": "md-to-pdf --config-file config.js Resume.md", + "dev": "md-to-pdf --config-file config.js --devtools Resume.md" + }, + "repository": { + "type": "git", + "url": "https://git.thomaspcole.com/thomascole/Resume-MD.git" + }, + "keywords": [], + "author": "", + "license": "ISC", + "dependencies": { + "md-to-pdf": "^5.1.0" + } +} diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..073a90b --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,35 @@ +@import url(https://jenil.github.io/bulmaswatch/flatly/bulmaswatch.min.css); + +body{ + padding: 8px +} + +h1{ + font-size: 2.5rem; + font-weight: 600; + line-height: 1; +} + +h4{ + font-size: 1.5rem; + font-weight: 600; + padding-top: 8px; +} + +hr{ + margin: 8px 0; +} + +p{ + /* margin-left: 8px; */ + margin-top: 8px; +} + +ul{ + list-style-type: disc !important; + list-style: disc !important; +} + +li{ + margin-left: 3em; +} \ No newline at end of file