Replies: 2 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Yeah, I just wanna say thank you for putting your idea and fork out here for visibility. Super encourage it. I don't think it will be pulled into the main app, but those who want this feature should definitely check out your fork. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
-
I've been using Handy daily and ran into a recurring situation: something worth capturing gets said before I think to start recording. By the time I reach for the hotkey, the moment has passed.
I ended up building a ring buffer mode in a local fork that keeps a rolling window of audio in memory (configurable, 1–30 minutes). When I hit a hotkey, it clips whatever's in the buffer, runs it through VAD to strip silence, transcribes it, and pastes the result — same as a normal transcription, just retroactive.
The mental model is similar to NVIDIA ShadowPlay or a dash cam: always capturing, but only saving when you ask it to.
A few things that surprised me in practice:
I wrote up a longer description of the motivation and first real use case here: https://carlosurreta.com/2026/03/04/replay-buffer-for-handy/
My fork with feature: https://github.com/curreta/Handy/tree/feature/ring-buffer
Not proposing a PR — just wanted to put the idea somewhere visible in case others have felt the same friction or have thoughts on how something like this could work.
Beta Was this translation helpful? Give feedback.
All reactions