-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
105 lines (91 loc) · 2.39 KB
/
Copy pathresume.html
File metadata and controls
105 lines (91 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
title: Résumé
resume:
tech:
- name: Languages
items:
- Rust
- Ruby
- JavaScript
- C
- Python
- x86 assembly
- name: Frameworks
items:
- Ruby on Rails
- Knockout.js
- Node.js
- name: Datastores
items:
- PostgreSQL
- MongoDB
- Redis
- name: Tools & Platforms
items:
- Git
- GitHub
- Capistrano
- Heroku
- AWS
- Digital Ocean
- name: Systems
items:
- FreeBSD
- Ubuntu
- Arch Linux
- OS X
work:
- title: Software Developer
company: AdGear
location: Montréal, Québec, Canada
start: October 2015
end: present
stack: [Knockout.js, Ruby on Rails, PostgreSQL, Capistrano]
doings:
- Developed new features for the Trader demand-side-platform Rails application
- Refactored application code and migrated database schemas
- Participated in design of new APIs and technical features
- title: Software Developer
company: Busbud
location: Montréal, Québec, Canada
start: December 2013
end: April 2015
stack: [Node.js, Express, PostgreSQL, Redis, Heroku, AWS]
doings:
- Migrated, designed, and optimized data models
- Developed efficient APIs for accessing and interacting with Busbud's data
- Implemented models, abstractions and adapters for interacting with partners' APIs
- Performed PostgreSQL database maintenance
---
<div class="pdf-link float-right hidden-print">
<a href="resume.pdf" target="_blank">
<i class="fa fa-download"></i> PDF
</a>
</div>
<h2 class="visible-print">Curtis McEnroe</h2>
<ul class="subtitle list-unstyled visible-print">
<li>{{ site.domain }}</li>
<li>{{ site.email }}</li>
<li>github.com/programble</li>
</ul>
<h3>Technical Experience</h3>
<dl>
{% for category in page.resume.tech %}
<dt>{{ category.name }}</dt>
<dd>{{ category.items | join:', ' }}</dd>
{% endfor %}
</dl>
<h3>Work Experience</h3>
{% for job in page.resume.work %}
<h4>
{{ job.title }}, {{ job.start }} – {{ job.end }}
<br>
<small>{{ job.company }}, {{ job.location }}</small>
</h4>
<p>{{ job.stack | join:', ' }}</p>
<ul>
{% for doing in job.doings %}
<li>{{ doing }}</li>
{% endfor %}
</ul>
{% endfor %}