Live data from Hacker News

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

news.ycombinator.com

351–360 of 913 posts

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

#351
Go: A server and client for managing webhooks in development environments: https://github.com/onebusaway/hooks

Ruby on Rails: A volunteer 'jobs' board for OSS projects (ironically): https://ossvolunteers.com

JavaScript (client side+Cloudflare Worker): A map showing stop-level usage of OneBusAway across the Puget Sound region, updated daily: https://opentransitsoftwarefoundation.org/onebusaway/visuali...

Swift/iOS: An app that helps me track how much time I spend in the five heart rate zones, so that I can better focus my workouts. I'm working on version 2 right now, which will take advantage of some new features in iOS 27 and has an all new UI. https://www.zone2.app

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

#356

Too many to enumerate but a couple highlights (and many of these I've turned into apps): - https://blunders.ai : Chess improvement app - https://fretwork.ai : Freelancer management app (CRM/Billing/etc) - https://validity.ai : Provide agents the ability to check the UI code it made (w/out needing to run through your full app) - Save money on groceries + meal planning. This has probably saved hundreds if not $1k+ for…

Tell me more about the grocery app. Sounds awesome!

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

#357

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.

Not the author, but I had a good vibe coding go at it: https://force.nuts.services

Code: https://github.com/kordless/force-news

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

#358

A dashboard to see what my local commercial free radio station (89.3 The Current) in Minnesota is playing. It shows how often tracks are played, track and artist play history as well as some other fun lookups and visualizations. https://theundercurrent.fm

This is cool! I was sad to see that kexplorer.org site no longer exists. :( I've been thinking about getting something like this up for a small Seattle station space101fm.org.

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

#359
I built https://beachcomber.sh after one day getting huge lag and asking claude to investigate found that one of the factors was thousands of resources purely for giving my prompt, tmux statusline, nvim statusline, claude statusline the same identical information.

I probably would not have bothered to allocate time to this pre ai, the juice wasnt really worth the squeeze. But I approached it with an initial amusing naivete about it being 'super simple'. As is almost always the case with software theres a reasonable amount of hidden complexity. But I have been using it as a sort of learning proving ground for how to work with agentic development. For example I got to a point where claude wouldnt implement properly and would argue with me about changes because it would read the current/old docs in the repo and get confused about reality. So right now I'm experimenting with 'canonical specs' that can only be changed modally with gates and a defined cascade from canon, to code, to docs in that order. Otherwise you end up in a weird thrash about the docs and the code disagree and which one will the agent decide to change for consistency?

Anyway, its been interesting and its v0.6 and at a point where Ive not hit a sharp edge dogfooding for a while and some beta testers would be valuable. Right now you have to manually wire it into your stack, once some others have kicked the tyres hard enough I will make some pr's to the popular tools to consider integrating it.

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

#360
Tools I’ve built for myself:

- sandvault https://www.codeofhonor.com/projects/sandvault/ runs agents in a separate macOS user account, hardened with sandbox-exec. It also supports headless browsing and iOS Simulator from inside the sandbox for testing web and iOS apps.

- clodpod https://www.codeofhonor.com/projects/clodpod/ agents run inside a macOS VM.

- git-multi-hook https://www.codeofhonor.com/projects/git-multi-hook/ git only allows one script per hook event; this is a dispatcher that discovers and runs every script in a hooks dir, in parallel, for both global and repo hooks.

- TubeGate https://www.codeofhonor.com/projects/tubegate/ Chrome extension to block YouTube videos based on keywords (like “sponsored”).

- push10k https://www.codeofhonor.com/projects/push10k/ iOS app to track my progress toward 10,000 push-ups.

My blog is AI-coded: Zola static site, Sveltia CMS, Cloudflare Pages/Workers, with GitHub Actions handling builds and syndication. https://www.codeofhonor.com

Post reply on HN