Live data from Hacker News

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

news.ycombinator.com

651–660 of 913 posts

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

#651
On my list of build it from scratch has always been to build a programming language. So with the help of AI I was able to get it done!

Why did I build it? At work I've seen two major problems with our ai workflows/ skills libraries. There is a lack of determinism when your whole workflow is a markdown file of 100 steps, and markdown skill libraries lack composability. Meaning we violate things like DRY in the all the md files in the skills library.

I built Margarita to allow for markdown and logical operators to exist together, which means you can bring in determinism through code structures when it makes sense, and fall back to llm dynamic code when that makes sense. As an added bonus allows for composable prompts ala React which solve my other gripe with skills libraries being a mash of text everywhere.

Overall I've been getting pretty luke warm responses from Reddit, so I'll probably just shelve it, but it was a blast to make. Got to build code agents for pretty much every llm provider and built my own harness. I would recommend doing that it's a great learning experience.

https://www.margarita.run https://github.com/Banyango/margarita

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

#652
Biggest win for me was building a new service to manage Cub and Boy Scout units.

Modern calendars and RSVPs via link, Roster management, LLM integration via MCP to manage all of it and send communications, and also includes a sync of all advancements and status from scouting servers (via API) so you can view them the way you want and share with parents all in one place.

Lets you customize events so you can add signups, modern document management and mapping, etc.

Also allows you to ask questions of models like “what group activity will knock out X rank for most kids” and the answers are good!

This kind of stuff is buried right now for most scout programs and units but this makes it really easy.

This will support multi-tenant so drop a note below if that sounds like something you’d be interested in.

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

#653

Mostly games-adjacent hobby tools, it turns out. (Edit: forgotten in first edition) A cookbook to store the recipes my family likes to cook so I can eventually break up with Pinterest: https://github.com/vtbassmatt/Cookbook A data extraction pipeline and search engine for a new card game called Mood Swings: https://moodswingsdata.github.io and https://moodswingsdata.github.io/feelings . An app to let my friends and m…

Did you take down djournal? It returns a 404 now.

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

#654
https://wodblock.com an app to track workouts, can generate functional/hiit workouts too using AI (give me something leg heavy but with some cardio, etc).

https://jazzcatalog.com an app the learn jazz standards. You upload PDFs and it extracts the songs, can add annotations, metronome, some have associated youtube video. Working on adding tools to record loops through audio interface, AUv3 effects, MIDI.

https://music.nicotejera.com a variety of tools I built for myself to learn music theory, ear training, etc.

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

#656
I made a world cup match ranking that ranks matches based on excitement level using a formula for lead changes, higher scoring, late goals, games that decide who advances etc. It's spoiler free and only ranks on order games should be watched. And then each rank is a link to watch the game so it can be viewed with no spoilers.

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

#657
First personal little thing was a little mobile friendly website for taking coffee and tea orders. Two pages, one for someone to enter orders, second for listing orders and marking them as done. Was a bit of a gimmick idea I'd had in the back of my head for family lunches to save me running around with a scrap of paper and a pen asking what everyone wanted. Thought it would make a good little exploration of "vibe coding".

Second is a utility that will take a text file export from Wallabag, and use text to speech to convert it to an MP3 file. I then integrated it into a utility that I already wrote for managing articles so if I tag an article with listen it automatically gets converted and gets shunted to the podcast listening app on my phone.

Last was to recreate a little directory listing utility that I've had a 32-bit binary of for ages, but no longer (if ever) have the source code for. I'd always promised myself I would write it once I learned Rust, but decided try using AI as I was getting impatient to have it now. The utility lists all files, including hidden, in a directory, grouped by type. Below is an example listing the directory for the project itself:

    Directories:
    .hg            src            target         tests

    Files:
    .hgignore      AGENTS.md      ARCHITECTURE.md               CONTRIBUTING.md
    Cargo.lock     Cargo.toml     GEMINI.md      README.md      gemini-log.html
Some command-line flags to just list a particular type, such as only directories, or only unsatisfied symbolic links.

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

#660

Mostly games-adjacent hobby tools, it turns out. (Edit: forgotten in first edition) A cookbook to store the recipes my family likes to cook so I can eventually break up with Pinterest: https://github.com/vtbassmatt/Cookbook A data extraction pipeline and search engine for a new card game called Mood Swings: https://moodswingsdata.github.io and https://moodswingsdata.github.io/feelings . An app to let my friends and m…

https://github.com/vtbassmatt/djournal is not public ? I'm using https://github.com/ralsina/grafito but I'm not super happy with it
Post reply on HN