diff --git a/index.html b/index.html index fb27fcc..62f6edd 100644 --- a/index.html +++ b/index.html @@ -1,14 +1,72 @@ - - - - - - Ella - - - -

Ella

- + + + + + + + Ella Dunbar + + + + +
+ elladunbar.com + +
+
+ +
+
+

Welcome

+

Hi, I'm Ella. Welcome to my really really awesome website!! You should probably enjoy it, or you won't + enjoy it very much.

+ +

About Me

+

I graduated with a Bachelor's of Science in Electrical and Computer Engineering (what a mouthful...) from Rice + University in 2024. I now do data science as a Neurobiology researcher at The University of Alabama at + Birmingham.

+

In computer world, I enjoy programming mostly in Python/Hy and Rust. I've written a few tree-sitter grammars (tree-sitter-hy and tree-sitter-zanscript) to enable better syntax + highlighting in my editor, and I've made a small project (to-braille) to print images using Unicode braille + characters. I prefer Unix-like operating systems, and usually work out of a terminal emulator.

+

At Rice, my senior capstone project was Sea++ where my team created an + autonomous solar-powered sailboat from scratch. I especially enjoyed implementing a more robust communication + protocol for our microcontrollers. The protocol was built on top of serial with checksumming and error state + communication. In other classes, I designed and programmed a custom bicycle spedometer for Beer Bike athletes, + and I spent a lot of time playing with images and deep learning models.

+

When I'm not working, I spend a lot of time reading Hacker News, + listening to music, and playing Super Smash Bros. Melee. Out of doors, I love climbing and backpacking, and Red + River Gorge, the Ouachita Mountains, and Big Bend National Park are some of my favorite spots.

+ +

Links

+

More Serious

+ +

Less Serious

+ +
+
+ + + + diff --git a/style.css b/style.css index f4c0976..b3e11fc 100644 --- a/style.css +++ b/style.css @@ -1,5 +1,46 @@ :root { + /* auto light/dark based on user choice */ color-scheme: light dark; - --text: light-dark(#000, #FFF); - --bg: light-dark(#EEE, #242936); + --text: light-dark(#000000, #FFFFFF); + --bg: light-dark(#FFFFFF, #000000); } + + +/* https://smolweb.org/subset.html */ +/* structural */ +html { + /* respect user font choices */ + font-size: 100%; +} + + +/* semantic */ +header strong { + font-size: 1.6rem; +} + +footer { + font-size: 0.9rem; +} + + +/* textual */ +h1 { + font-size: 2rem; +} + +h2 { + font-size: 1.6rem; +} + +h3 { + font-size: 1.2rem; +} + +/* hypertextual */ +/* listing */ +/* forms */ +/* basic table */ +/* image */ +/* presentation */ +/* metainformation and linking */