Ask HN: What are tools you have made for yourself since the advent of AI?
831–840 of 913 posts
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#832Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#833I've also built a web based tool to track my partners business cashflow which I'm in the process of making available for self hosting
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#834A 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?
#835A 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
Very interesting! How does it work?
There's some caching that happens behind the scenes to help with some of the large data crunching.
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#836[0] https://github.com/Jotalea/keiryo
[1] https://github.com/Jotalea/nong-player-gtk
[2] https://github.com/Jotalea/crapshot
[3] https://github.com/Jotalea/miscellaneous/blob/main/iloveyou....
[4] https://github.com/Jotalea/miscellaneous/blob/main/password....
[5] https://github.com/Jotalea/miscellaneous/blob/main/speedhack...
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#837I've always wanted my own VW diagnostic tool suite, and between tooling that was released in public on GitHub ( https://github.com/kartoffelpflanze/ODIS-project-explorer ) and my own research from years ago, it always seemed straightforward but too tedious to execute on. Claude did a great job making something useful, https://github.com/bri3d/mcd-diag-rs , and now I don't have to find a Windows machine or remember a…
elaborate on the home automation pls
For example, previously I used the Frigate web UI over VPN to access my cameras, but I instead had Claude help set up go2rtc to push the video to HomeKit. I used the Eufy app for my doorbell, which I was instead able to integrate into HomeAssistant and then push to HomeKit as well, and I was also able to integrate some TP-Link Kasa plugs with HomeAssistant too.
This is all stuff I could have done relatively easily myself, but I hate nothing more than wading through horribly documented disparate configuration systems (I do that enough all day), so having Claude to do it for me is what unlocked it actually getting done.
I also added on to some custom one-offs like an ESP32-based controller for my kid's RGB LED nightlight for fun, although that stuff was more hand-coded since I find it enjoyable.
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#838- a GUI terminal-based Markdown previewer called "leaf": https://github.com/RivoLink/leaf
- and a lightweight AI automation framework called "flow": https://github.com/RivoLink/flow
Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#839Re: Ask HN: What are tools you have made for yourself since the advent of AI?
#840Earlier quoted context omitted.
You are correct: git 2.54 supports multiple hooks via a the git repo and global configuration files. Git-multi-hook predates that, but I updated it to use the new 2.54 config-based format. The significant advantage of git-multi-hook is that they all run in parallel. I run eight hooks on precommit, so parallelism is a big win. I will update the README to make note. Thanks!
git-hook documentation says that hook events can be configured to run in parallel.
> Native Git traditionally executes hooks sequentially. However, you can achieve parallel execution by leveraging dedicated third-party hook managers or using built-in shell background processing
.. and that's what git-multi-hook is: a third-party hook manager, that uses shell background processing :)