Howdy, Evan here. 👋
I'm a Full-Stack Developer near Champaign-Urbana, Illinois. I'm a Senior Engineer on the Developer Experience SDKs team at Auth0 and Cofounder at Droveio.
1<?php
2
3 namespace EvanSims;
4
5 class About extends Me
6 {
7 public const pronouns = [ 'he', 'him' ];
8
9 public function getWorkplace(): array
10 {
11 return [
12 'company' => 'Auth0',
13 'position' => 'Senior Engineer',
14 'department' => 'Developer Experience SDKs',
15 ];
16 }
17
18 public function getKnowledge(): array
19 {
20 return [
21 Php::class,
22 Laravel::class,
23 Symfony::class,
24 WordPress::class,
25 Javascript::class,
26 Ember::class,
27 React::class,
28 TailwindCss::class,
29 Aws::class,
30 ];
31 }
32 }