79 lines
3.0 KiB
Vue
79 lines
3.0 KiB
Vue
<template>
|
||
<div id="app" class="hello wrapper">
|
||
|
||
<section class="section">
|
||
<div class="container">
|
||
<h1 class="title is-1">Brian Rosner</h1>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="section">
|
||
<div class="container">
|
||
<div class="columns">
|
||
<div class="column is-two-thirds content is-large">
|
||
<h2>Work</h2>
|
||
<p>
|
||
I am a Staff Software Engineer at
|
||
<a href="https://ramp.com/" target="_blank">Ramp</a>
|
||
working on the infrastructure team.
|
||
</p>
|
||
<p>
|
||
Previously, I was a Senior Software Engineer at Reddit, CTO at Gemr and Chief Architect at Eldarion.
|
||
</p>
|
||
<h2>Home</h2>
|
||
<p>
|
||
I live in <a href="https://en.wikipedia.org/wiki/Denver" target="_blank">Denver</a>,
|
||
<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).
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="section" id="learning">
|
||
<div class="container">
|
||
<div class="columns">
|
||
<div class="column is-two-thirds content is-large">
|
||
<h2>Learning</h2>
|
||
<p>These are some topics I am actively exploring:</p>
|
||
|
||
<h3 class="title is-4">Aviation</h3>
|
||
<p>I learn aviation through flight sims—mostly MSFS 2020 (X‑Plane nostalgia is real). I’m drawn to airliners; the A350 and 757 are my favorites.</p>
|
||
|
||
<h3 class="title is-4">Israel</h3>
|
||
<p>I visited Israel for the first time in December 2024. I’m reconnecting with my family’s Jewish roots, and I left with a deep appreciation for the country and its people.</p>
|
||
|
||
<h3 class="title is-4">Hebrew</h3>
|
||
<p><Heb>אני לומד עברית</Heb></p>
|
||
<p>I’d love to be fluent. I’m a little embarrassed that most of my study is Duolingo right now—but it keeps me consistent—and I lean on <a href="https://www.pealim.com/">Pealim</a> for vocab and verbs.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="section" id="projects">
|
||
<div class="container">
|
||
<div class="columns">
|
||
<div class="column is-two-thirds content is-large">
|
||
<h2>Projects</h2>
|
||
<h3 class="title is-4">Project Name</h3>
|
||
<p>Short description of what it is, why it exists, and your role.</p>
|
||
|
||
<h3 class="title is-4">Project Name</h3>
|
||
<p>Short description of what it is, why it exists, and your role.</p>
|
||
|
||
<h3 class="title is-4">Project Name</h3>
|
||
<p>Short description of what it is, why it exists, and your role.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
definePageMeta({ layout: 'default' })
|
||
</script>
|
||
|
||
|