blob: d6e47c51ba3611d8ca3c593718f0f639bb71f547 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
---
import BaseLayout from '../layouts/BaseLayout.astro';
import OpenMoji from '../components/OpenMoji.astro';
---
<BaseLayout title="Matthew Kosarek" description="The personal website of Matthew Kosarek">
<div class="index-layout">
<div class="index-main">
<section>
<p>
Hi there <OpenMoji code="1F30A" alt="wave" />
</p>
<p>
My name is Matthew Kosarek.
I am a computer programmer from northern New Jersey and I currently live in Philadelphia, PA. I work at Canonical on
<a href="https://github.com/canonical/mir">Mir</a> and <a href="https://github.com/flutter/flutter">Flutter</a>. I
have a strong interest in C++, Computer Graphics, Rust, and Linux.
<p/>
<p>
In my spare time, I work on <a href="https://github.com/miracle-wm-org/miracle-wm">miracle-wm</a>, a Mir-based
window manager that features manual tiling and a WebAssembly-powered plugin system for window management and beyond.
</p>
<p>
Off the computer, you can find me surfing, walking my dog, or hanging out with my fiancee and friends in Philly. I
also have 3 cats!
</p>
</section>
</div>
<aside class="sidebar">
<ul>
<li><a href="https://github.com/mattkae">Github</a><span>my personal github with most of my projects</span></li>
<li><a href="https://git.matthewkosarek.xyz">CGit</a><span>my self-hosted git instance with a few of my projects</span></li>
<li style="display: none;"><a href="https://physicsforgames.com">physicsforgames.com</a><span>a project that I'm currently working on in my spare time where I explore the world of realtime physics</span></li>
<li><a href="https://www.linkedin.com/in/matthew-kosarek/">LinkedIn</a><span>corporate goings-ons</span></li>
<li><a href="mailto:matthew@matthewkosarek.xyz">Email</a><span>matthew@matthewkosarek.xyz</span></li>
</ul>
</aside>
</div>
</BaseLayout>
|