MoreRSS

site icon Ellie HuxtableModify

A software/infrastructure engineer. Maker of Atuin. Previously, lead the infrastructure team at PostHog, worked at Coinbase, Tracr and Arachnys.
Please copy the RSS to your reader, or quickly subscribe to:

Inoreader Feedly Follow Feedbin Local Reader

Rss preview of Blog of Ellie Huxtable

projects

2025-04-24 21:17:34

Fixing ingress-nginx ConfigurationSnippet validations

2025-01-03 08:00:00

Today I found myself needing to configure ingress-nginx. I needed to write a bit of nginx config to rewrite status codes for certain routes.

Fixing drag events with Tauri

2024-09-13 08:00:00

I’ve been working on a desktop app with Tauri, and had issues for a while with the “draggable” prop on some elements.

Amending the author of a Git commit

2024-07-30 08:00:00

It’s pretty common that I’ll accidentally use the wrong email for a commit.

How to split a Git subdirectory into a new repo

2024-07-29 08:00:00

Splitting a git repo into two, while retaining all history

Custom keybinding with react-codemirror

2024-07-17 08:00:00

I’m currently using uiwjs/react-codemirror for a project, and needed to add a custom binding to cmd+enter The documentation didn’t quite show what I needed, but with the following you can bind custom keys import React from 'react'; import CodeMirror from '@uiw/react-codemirror'; ...