summaryrefslogtreecommitdiff
path: root/src/resume.thrust
diff options
context:
space:
mode:
Diffstat (limited to 'src/resume.thrust')
-rw-r--r--src/resume.thrust62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/resume.thrust b/src/resume.thrust
new file mode 100644
index 0000000..1f3e7f1
--- /dev/null
+++ b/src/resume.thrust
@@ -0,0 +1,62 @@
+---
+title: resume
+last edited: 2020-02-06
+jobs:
+ - where: DeepMind
+ title: Reliability Engineer
+ when: 2017 – 2019
+ points:
+ - Primarily a consulting role for 100+ Researchers, providing knowledge, documentation, and tooling to bridge the gap between the research workflow and Google’s Production environment.
+ - Also working with DeepMind’s Research Platform team and Google's machine-learning infrastructure teams to assist with conventional Production setups.
+ - "Brought a strong focus on UX-for-engineers: tooling and APIs must start from enabling the programmer to specify what they mean."
+ - Was also a member of DeepMind's GDPR and Security working groups.
+
+ - where: Google
+ title: Software Engineer
+ when: 2015 – 2017
+ points:
+ - Worked in Ads Engineering Productivity, Google Ads’ tooling organization.
+ - Lots of release automation work, mostly for local client teams, as well as some Google-wide work.
+
+ - where: Imperial College London
+ title: PhD Candidate
+ when: 2013 – 2015
+ points:
+ - Worked in the Multicore group, making tools to find errors in multi-threaded programs.
+ - Published a paper on a novel abstraction of atomic instructions that allowed checking GPU programs that used them.
+ - Left before completion to work full-time at Google.
+
+education:
+ - 2:1 MEng in Computing from Imperial College.
+ - 4 A-Levels (3 As, 1 B).
+ - 11 GCSEs (A* to C).
+---
+{% extends 'templates/base.html' %}
+{% block body %}
+ <nav>
+ <a href='/'>&gt; index</a>
+ </nav>
+ <article>
+ <h1>Ethel Morgan Resume</h1>
+
+ {% for job in jobs %}
+ <p>
+ <span class='non-breaking'>{{ job.where }}</span>,
+ <span class='non-breaking'>{{ job.title }}</span>,
+ <span class='non-breaking'>{{ job.when }}:</span>
+ </p>
+ <ul>
+ {% for point in job.points %}
+ <li>{{ point }}</li>
+ {% endfor %}
+ </ul>
+ {% endfor %}
+
+ <p>Education:</p>
+ <ul>
+ {% for ed in education %}
+ <li>{{ ed }}</li>
+ {% endfor %}
+ </ul>
+ </article>
+{% endblock %}