Senior Engineer at Okta working on OpenFGA and Auth0 FGA. Previously built Auth0's SDKs and crisis-response tools at Ushahidi, where protecting user data in life-threatening situations shaped my focus on security engineering. Passionate about developer advocacy and helping developers build more secure software. Former video game designer.
const PRONOUNS: &[&str] = &["he", "him"];
struct Workplace {
company: &'static str,
team: &'static str,
position: &'static str,
}
struct Evan;
impl Evan {
fn workplace(&self) -> Workplace {
Workplace {
company: "Okta",
team: "Fine Grain Authorization (FGA)",
position: "Senior Software Engineer",
}
}
fn experience(&self) -> Vec<&'static str> {
vec![
"aws", "docker", "github actions", "golang", "javascript",
"kubernetes", "laravel", "nextjs", "nodejs", "php",
"postgresql", "python", "react", "redis", "rust",
"tailwind", "typescript", "vercel", "vue",
]
}
}
๐ Find me at evansims.com or LinkedIn.