HackerTrans
トップ新着トレンドコメント過去質問紹介求人

lbaune

no profile record

投稿

Show HN: Unlinked, MCP Server for LinkedIn

github.com
3 ポイント·投稿者 lbaune·2 か月前·1 コメント

Show HN: Voice-tracked teleprompter using on-device ASR in the browser

github.com
6 ポイント·投稿者 lbaune·4 か月前·1 コメント

Show HN: Expose Copilot as a standard OpenAI-style API for your local toolchain

github.com
3 ポイント·投稿者 lbaune·9 か月前·1 コメント

[untitled]

1 ポイント·投稿者 lbaune·11 か月前·0 コメント

コメント

lbaune
·2 か月前·議論
This has been around for years. I don't understand what the news is?
lbaune
·4 か月前·議論
Super inspiring idea. Could be useful in an internal knowledgebase where information often gets quite messy and unmaintained over time (I've met a few of those gargantuan Confluence-installations).
lbaune
·4 か月前·議論
The interesting technical problem here turned out not to be speech recognition but script alignment.

ASR output arrives in ~600 ms chunks and is messy (filler words, homophones, skipped phrases). A simple substring match breaks immediately.

The current tracker uses:

- inverted token index to find candidate windows - banded Levenshtein distance for fuzzy matching - Double Metaphone phonetic normalization - locality penalties to stay near the current position

Between ASR updates the UI speculatively advances the cursor based on measured WPM so the highlight moves smoothly.

Curious if anyone here has worked on similar real-time alignment problems.
lbaune
·9 か月前·議論
Anticipating a common question: this doesn’t bypass Copilot’s licensing or give you “free” access. You still need an active Copilot subscription, and the bridge just exposes it as a local API. Think of it as a shim: Copilot stays the backend, this just makes it usable from scripts, CLIs, or tools that expect an OpenAI-style interface.

I’ve tried to keep the project in the spirit of extending Copilot’s usefulness without abusing the service. Feedback on where the line should be drawn is welcome.