Add some style to this resume; fill in some AuthExp stuff
This commit is contained in:
parent
9174ce81e5
commit
43cfec4572
4 changed files with 58 additions and 22 deletions
|
@ -8,4 +8,15 @@ figure {
|
|||
|
||||
img {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.flex-date {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
}
|
||||
|
||||
.flex-date .date {
|
||||
margin-left: auto;
|
||||
font-size: 80%;
|
||||
font-style: italic;
|
||||
}
|
|
@ -1,31 +1,31 @@
|
|||
---
|
||||
title: "Résumé — Eryn Wells"
|
||||
title: "Résumé"
|
||||
date: 2021-09-29T20:40:09-07:00
|
||||
draft: true
|
||||
type: resume
|
||||
---
|
||||
|
||||
## Experience
|
||||
|
||||
### Apple
|
||||
{{< resume_section company="Apple" team="Authentication Experience" from=2019 >}}
|
||||
|
||||
#### Authentication Experience
|
||||
- Presented a video at WWDC 2021 called [Secure login with iCloud Keychain
|
||||
verification codes][wwdc21-totp-video], describing security codes, how they
|
||||
improve password-based authentication, and how to use the new verification code
|
||||
feature of the Password Manager on iOS and macOS
|
||||
- Designed and built one-time verification codes for the Password Manager on iOS
|
||||
and macOS
|
||||
|
||||
2019 to present
|
||||
|
||||
#### iOS Accessibility
|
||||
|
||||
2016 to 2019
|
||||
{{< resume_section company="Apple" team="iOS Accessibility" from=2016 to=2019 >}}
|
||||
|
||||
- Engineering point of contact for accessibility of SpringBoard and Messages on
|
||||
iOS, and the Braille Screen Input feature of VoiceOver.
|
||||
iOS, and the Braille Screen Input feature of VoiceOver
|
||||
- Implemented new guidance features in iOS 13's Camera to assist VoiceOver users
|
||||
with taking better, more artistic photos.
|
||||
with taking better, more artistic photos
|
||||
- Participated in developer outreach at WWDC and onsite events to promote the
|
||||
value of making software accessible and answer developer questions.
|
||||
value of making software accessible and answer developer questions
|
||||
|
||||
### Lumos Labs
|
||||
|
||||
2014 to 2016
|
||||
{{< resume_section company="Lumos Labs" team="Lumosity iOS" from=2014 to=2016 >}}
|
||||
|
||||
- Migrated from a proprietary navigation implementation in C++ to UIKit
|
||||
components and established patterns for further development
|
||||
|
@ -34,11 +34,7 @@ draft: true
|
|||
- Implemented 1v1 competition feature, which had a greater than 50% engagement
|
||||
rate
|
||||
|
||||
### VMware
|
||||
|
||||
#### Fusion
|
||||
|
||||
2012 to 2014
|
||||
{{< resume_section company="VMware" team="Fusion" from=2012 to=2014 >}}
|
||||
|
||||
- Restructured keyboard input handling to improve code architecture and
|
||||
accommodate multiple clients of our OS X UI library
|
||||
|
@ -48,9 +44,7 @@ draft: true
|
|||
C (through our platform-independent C++ library, and OS X-specific Objective-C
|
||||
library)
|
||||
|
||||
#### View, Desktop Infrastructure Group
|
||||
|
||||
2011 to 2012
|
||||
{{< resume_section company="VMware" team="View Desktop Infrastructure" from=2011 to=2012 >}}
|
||||
|
||||
- Engineered an extensive rewrite of VDT to incorporate a new deployment backend
|
||||
relying on VMware vCloud Director, and to allow greater flexibility in how
|
||||
|
@ -64,3 +58,5 @@ draft: true
|
|||
## Education
|
||||
|
||||
Oberlin College, BA in Computer Science with Honors, 2010
|
||||
|
||||
[wwdc21-totp-video]: https://developer.apple.com/videos/play/wwdc2021/10105/
|
25
layouts/resume/single.html
Normal file
25
layouts/resume/single.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
{{ define "main" }}
|
||||
|
||||
<article id="resume" class="post-single">
|
||||
<header class="post-title">
|
||||
<h1>{{ .Title }}</h1>
|
||||
</header>
|
||||
|
||||
<section class="post-content">
|
||||
{{ .Content }}
|
||||
</section>
|
||||
|
||||
<!-- Post Nav -->
|
||||
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}<!---->
|
||||
{{ if and (gt (len $pages) 1) (in $pages . ) }}
|
||||
<nav class="post-nav">
|
||||
{{ with $pages.Next . }}
|
||||
<a class="prev" href="{{ .Permalink }}"><span>←</span><span>{{ .Name }}</span></a>
|
||||
{{ end }} {{ with $pages.Prev . }}
|
||||
<a class="next" href="{{ .Permalink }}"><span>{{ .Name }}</span><span>→</span></a>
|
||||
{{ end }}
|
||||
</nav>
|
||||
{{ end }}
|
||||
</article>
|
||||
|
||||
{{ end }}
|
4
layouts/shortcodes/resume_section.html
Normal file
4
layouts/shortcodes/resume_section.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<header class="flex-date">
|
||||
<h3>{{ .Get "company" }}: {{ .Get "team" }}</h3>
|
||||
<time class="date">{{ .Get "from" }} to {{ with .Get "to" }}{{ . }}{{ else }}present{{ end }}</time>
|
||||
</header>
|
Loading…
Add table
Add a link
Reference in a new issue