Live data from Hacker News

Ask HN: What are tools you have made for yourself since the advent of AI?

news.ycombinator.com

251–260 of 913 posts

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#251

Has anyone used AI to manufacture entire physical gadgets of some sort?

Came here looking for some examples, i tried some pcb routing, its horrendous. But you inspired me to maybe just run with it? Like design a alarm clock and see what abomination ‘it’ will come up with and just run with it/produce it anyway? Would be fun!

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#252

I restore old non-functioning radios with nice design and good audio. I replace the old tech except the speakers with a raspberry add a mic array and package them with an easy to use ubuntu. whisper and the small gemma models made everything so much easier and private. I basically rewrite the whole backend with claude and created a nice first setup experience akin to other smartspeakers. It's amazing how good the sou…

What do you do with the old guts? I suspect plenty of people would be interested in those (me included)

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#253
Workflow:

Built a meeting-intelligence pipeline that turns raw, error-prone transcripts into a structured, queryable knowledge base. Meetings get auto-transcribed by Krisp, whose speech recognition mangles the things I most need correct, like colleague names, customer names, internal product and architecture terms. I hand each transcript to Claude alongside a hand-built context document, and it works a fixed routine: read the context file, read the transcript, then reconcile every uncertain name or term against a master error table before drafting anything. Only the genuinely unresolvable handful surface as questions; everything else is corrected silently. Once I confirm those, it emits a cleanly formatted markdown summary in a manner I describe as a template: overview, topical notes, decisions, action items — and pushes the work items into Todoist so commitments don't get lost.

What makes it more than transcription cleanup is the back end and the feedback loop. Each summary hits Obsidian with YAML frontmatter and live Dataview queries, so open action items and meeting metadata behave like a database rather than static notes. In Cowork the whole accumulated Obsidian folder becomes fully queryable rather than merely searchable — instead of grep-ing for a keyword, I can ask questions that reason across months of meetings ("what were Todd's table-stakes asks, and has anything shipped against them"), with the model able to look across separate conversations. The other half is self-improvement: every clarification I resolve gets written back into the context document: its people directory, terminology glossary, and especially the ASR error table, so a garble I corrected once is corrected automatically from then on. Over time that one document has become a domain-tuned lens, and each meeting both draws on it and sharpens it, which is why the summaries keep getting tighter and need less of my intervention.

Beyond that: I use a Netatmo weather station which has a RESTful API (or sends to a cloud server that has one) - I pull that information (which I can see on the web and their apps) into my own VictoriaMetrics / Grafana set up on Kubernetes, via a Go app Claude built.

This app above was when I had my little aha moment: Netatmo's OAuth is slightly broken (issues with the different tokens and refresh). But I'd written a dog-ugly app which managed to work a while ago. Claude kept trying and strugglign to understand why its OAuth code wasn't working, and was asking me "are the credentials right?" etc. "Yup, I'm able to get data from my old app", then it said "If you have the source code to that app, I can figure out what's up", it looked, identified the issue, tried to work around it and then we "agreed" - "Hey, this should work this way, but it doesn't, and whether my old OAuth code should work or not, it does, so drop that in, and keep going". "Great, let's do that."

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#254

It's dumb, but.... I made a scraper that searches through all the news and finds anything 'war' related. It then summarizes it and give me that new in the Star Wars crawl with music.

Please, please share this. I want to see this so badly.

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#256
Been working on this spaced repetition app / incremental reading app. I used SuperMemo for about a year straight, found the UI not that great, so I decided to make my own incremental reading app. Think: incremental everything. Supports multiple spaced repetition algorithms FSRS-6, SuperMemo 18, SuperMemo 20. https://github.com/melpomenex/incrementum-tauri https://readsync.org

Re: Ask HN: What are tools you have made for yourself since the advent of AI?

#260
- Email triage

- Meetup alert for meetups that match specific topics

- A daily journal that transforms entries into chibi-style cartoons

- A cashflow forecast our stupid accounting software can't do on its own

- DIY service monitoring for a ragged collection of docker containers, cron tasks, scripts and various others

Post reply on HN