Software Engineer with 4+ years of experience building enterprise web applications using Vue, Laravel, JavaScript, and MySQL.
I enjoy building user-focused tools, simplifying complex workflows, and creating intuitive product experiences.
Outside of work, you'll usually find me reading fantasy novels, escaping into life sims, or spending time with my cat, Zuko.
<?php
namespace TeishaMcRae;
class About extends Me
{
public function getCurrentWorkplace(): array
{
return [
'workplace' => [
'company' => 'Decisions (formerly known as ProcessMaker)',
'position' => 'Software Engineer'
]
];
}
public function getMoreInfo(): array
{
return [
'fun_facts' => [
'pronouns' => 'she, her',
'book_lover' => true,
'cat_mom' => true,
'cozy_gamer' => true,
'constantly_curious' => true,
]
];
}
public function getCodingKnowledge(): array
{
return [
Php::class,
Javascript::class,
Laravel::class,
Vuejs::class,
React::class,
];
}
}