Live data from Hacker News

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

news.ycombinator.com

221–230 of 913 posts

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

#221
I've made 3 that use pi as the primary interaction, with custom tools and scripts.

1. family tree based on wikitree format. Transcribe records, verify/edit, then incorporate them into the tree with full citations and biographies. This one is the big one. It includes a tree browser and best genealogical practices.

2. Pool Math replacement. Log pool chemistry tests to markdown files and suggest the right amount of chemicals to balance.

3. Calorie counter. Log calories to a markdown file, look up foods and amounts in online databases, sync with garmin connect for exercise calories.

All of these are written with AI but also are interacting with pi and telegram, mostly using deepseek v4 flash.

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

#223
I made a golang socks5 proxy that routes traffic to different VPSes (or the default gateway) based on hostname, over mutual-TLS tunnels, authenticated using ed25519 keypairs shared out-of-band. The "client" and the "server" are the same piece of software, and there's a web UI for configuring the routes.

I made it to deal with internet censorship in the UK, where different sites have different optimal exit jurisdictions, and most sites work fine so I can avoid the extra hops where possible.

It also works well for video streaming sites with geofencing, since the geofence itself is usually implemented in the frontend rather than the CDN. So only the frontend traffic needs to be proxied, while the bulk CDN traffic doesn't need proxying at all.

Socks5 is the ideal layer for hostname-based routing, since the proxy can see DNS names without needing to sniff TLS SNI (which would be incompatible with ESNI/ECH etc.)

iirc it was basically all done in a single prompt, and I've been using it ever since. The only issue I've encountered is with WebRTC not working properly with some services. (Presumably it breaks the NAT holepunching process or something, I never diagnosed it)

Another project that isn't quite finished is a "universal" web video downloader that works by shimming the MSE APIs and remuxing the streamed segments back into a regular video file. The idea is that if you can watch it, you can save it - including but not limited to youtube videos. I started this one pre-AI but AI was a huge help with the container format wrangling.

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

#224

Built a tool to help design cs/science inspired jewelry in CAD. I wrote a DSL to describe the jewelry, and had an LLM write the interpreter to generate a CAD file using cadquery (note to self: LLM suck at 3d reasoning). I would not have had the time to do this without AI. Also used AI to design an online store (I'm not a front end dev). It's amazing to see my wife (non-technical background) tweak the web-site using c…

Jewelry looks beautiful. Have you managed to make any sales?

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

#226
- My own whisperflow bike shed

- Converted invoicing to Typst (from LaTeX)

- Automation of blinds

- Automation of lights

- Python library to control lights

- ML tuning library

- ML feature interaction library

- Jupyter notebook slideshow interface

- Davinci Resolve Authomation

- Arduino eink bluetooth HR monitor

- Tons of small scripts

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

#227

I've made a number of ceramic molds for slumping fused glass into bowls. As well as wooden templates for ceramic mugs. I've devised a few carrying tools to move glass frit paintings from my studio down to my barn where the kilns sit without spilling the glass. Or were you only asking about digital tools? I haven't really made any of those. Making physical tools feels much more satisfying these days.

Best comment on the thread. Fellow potter & sculptor here, is your work online anywhere?

The overlap between ceramicists and technologists is never zero. Part of my initiative to slowly replace every part of my house and home with things I've made... 1% progress is good, right?

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

#228
Tools? Mmmm i tried making a openCV based tool to recognise circular objects on sat. imagery, it didnt work at all (tried for two weeks), changed to a LLM, it seemed to work, or it was just a little bit off, O gave up. If anyone wants to collab in this space, shout out! Ah also a translation tool for pdfs… its also stuck in limbo, forgot why again…

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

#229
I wrote my own Claude Code agent. It leverages some parts of multiple different agent stacks but using my architecture. It's layered, has long-term memory, agency to expand upon work, access to linear, access to all the models and endpoints you could possibly wish, as well as support for combining multiple providers and models into the layers so that delegation to the workers happen on the cheaper, more cost effective models. All of this runs at scale in an orchestration platform I wrote, using said agent, to create a cluster of docker containers in a JBYOS configuration, cross-cloud, k8s or swarm or whatever can run docker. It's pretty sweet and is basically an AI software development shop. I only have to give it ideas and goals.

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

#230
I finally shipped a Chinese learning app I wanted for myself for ages at https://wenmoji.com/. Just never had enough time to sit down and code it end to end. Still need some improvements of course, but will slowly chip away on it. I use it daily/weekly myself now.

Highlights are that it completely free, no login required and works offline (once you "downloaded"/cached some files the first time around).

Post reply on HN