Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ public function getTitle(): string
return 'Monolith or Microservices? And why you\'re wrong!';
}

public function getImage(): string
{
return '/images/monolith-vs-microservices-and-why-youre-wrong.jpg';
}

public function getDescription(): string
{
return <<<END
Expand All @@ -41,6 +46,16 @@ public function getSpeakerName(): string

public function getSpeakerBio(): string
{
return '';
return <<<END
Bobby Cahill is a Senior Software Engineer with over a decade of experience building scalable, user-centric
web platforms and developer tools. With a strong background in full-stack development, cloud-native
architectures, and modern DevOps practices, he's passionate about building readable, maintainable, and secure
code. Previously, Bobby spent eight years at Wayfair, where he was a key player in a company-wide initiative to
decouple a massive monolithic codebase, and led the development of new tools to improve engineering
productivity. He’s also the lead organizer of the BostonPHP Meetup Group and a co-founder of MergePHP.

In his free time Bobby supports the open-source and dev communities and enjoys traveling, hiking, basketball
and gaming.
END;
}
}