--- 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 %}