2025-08-16 09:06:17 -06:00
|
|
|
|
<template>
|
2025-08-16 09:10:23 -06:00
|
|
|
|
<div id="app" class="hello wrapper">
|
2025-08-16 09:06:17 -06:00
|
|
|
|
|
2025-08-16 09:10:23 -06:00
|
|
|
|
<section class="section">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<h1 class="title is-1">Brian Rosner</h1>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
2025-08-16 09:06:17 -06:00
|
|
|
|
|
2025-08-16 09:10:23 -06:00
|
|
|
|
<section class="section">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="columns">
|
|
|
|
|
<div class="column is-two-thirds content is-large">
|
|
|
|
|
<h2>Work</h2>
|
|
|
|
|
<p>
|
2025-08-16 09:26:20 -06:00
|
|
|
|
I am a Staff Software Engineer at
|
2025-08-16 09:10:23 -06:00
|
|
|
|
<a href="https://ramp.com/" target="_blank">Ramp</a>
|
|
|
|
|
working on the infrastructure team.
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
2025-08-16 09:27:06 -06:00
|
|
|
|
Previously, I was a Senior Software Engineer at Reddit, CTO at Gemr and Chief Architect at Eldarion.
|
2025-08-16 09:10:23 -06:00
|
|
|
|
</p>
|
|
|
|
|
<h2>Home</h2>
|
|
|
|
|
<p>
|
|
|
|
|
I live in <a href="https://en.wikipedia.org/wiki/Denver" target="_blank">Denver</a>,
|
2025-08-16 09:30:43 -06:00
|
|
|
|
<a href="https://en.wikipedia.org/wiki/Colorado" target="_blank">Colorado</a>. I’m married to Hannah Yabrove‑Rosner. We have two kids, Eddie and Dylan, and three pets: Minnie and Jack (dogs) and Lily (cat).
|
2025-08-16 09:10:23 -06:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2025-08-16 09:06:17 -06:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
definePageMeta({ layout: 'default' })
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|