blob: 1f3e7f1f5fe4ba9ab23f5c6c348fd334ebada49f (
plain)
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
|
---
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='/'>> 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 %}
|