
Benjamin Sutton
Platform Engineer | Swift/UI Hobbiest
Ohio | 84.51ยบ
Platform Engineer with 2+ years experience, specializing in cloud infrastructure and observability solutions. I build and maintain scalable systems for a leading digital advertising company serving major global brands in the grocery industry. Passionate about creating robust, monitored infrastructure that enables teams to deliver exceptional digital experiences at scale.
@dataclass
class PlatformEngineer:
name: str
skills: List[str]
interests: List[str]
@dataclass
class TechStack:
dev_ops: List[str]
backend: List[str]
frontend: List[str]
me = PlatformEngineer(
name='Ben Sutton',
skills=[
*tech_stack.dev_ops,
*tech_stack.backend,
*tech_stack.frontend
],
interests=[
'DevOps',
'SwiftUI',
'Self-Hosting',
'Networking'
]
)
tech_stack = TechStack(
dev_ops=[
'Kubernetes',
'Terraform',
'Github',
'Datadog',
'Azure',
'Grafana'
],
frontend=[
'Astro',
'Markdown',
'SwiftUI'
],
backend=[
'Swift',
'Python',
'PostgreSQL',
'Supabase'
]
)
ContactType = Literal['github', 'linkedIn', 'email']
def contact(contact_type: ContactType) -> str:
"""Get contact information based on type."""
match contact_type:
case 'github':
return 'https://github.com/Zeus-3x'
case 'linkedIn':
return 'https://www.linkedin.com/in/ben.sutton96'
case 'email':
return 'ben@sutt.sh'
case _:
return 'Send fax.'
mindfuzz
A powerful music streaming app for your self-hosted Jellyfin or Subsonic server.
Open Project Website