Live data from Hacker News

Ask HN: What Are You Working On? (July 2026)

news.ycombinator.com

621–630 of 1001 posts

Re: Ask HN: What Are You Working On? (July 2026)

#621
Im building an agent that interacts with health care providers on your behalf to proactively get itemized bills and other substantiation as needed. Born out of my own frustration with the paperwork for getting reimbursed from my healthcare cost sharing ministry. The app is React with a Laravel backend on EC2 where the agent runs.

Recently Ive been experimenting more with coding from my phone using Claude Code for the Web. Its basically turned Github Actions into my development environment. Its enabled me to fire off a quick prompt in planning mode, go play with my kids, review and approve the plan while Im cooking dinner, then let it go 10 rounds with the AI code reviewer while I put the kids to bed. As a busy parent I feel way more productive than if I had to carve out sit down focus time for a side project.

https://www.healthsharetech.com

Re: Ask HN: What Are You Working On? (July 2026)

#622
post #588

I'm attempting to build a coffee bean distributor that can exactly measure out beans into a cup for my morning espresso. It's really an excuse to get started with things like hardware, 3D printing, and embedded development - I've never done anything in that world before, and its been really exciting to get into! I've just started, so hopefully I'll have a better update next month.

By weight, or by bean? heh

Re: Ask HN: What Are You Working On? (July 2026)

#623
post #588

I'm attempting to build a coffee bean distributor that can exactly measure out beans into a cup for my morning espresso. It's really an excuse to get started with things like hardware, 3D printing, and embedded development - I've never done anything in that world before, and its been really exciting to get into! I've just started, so hopefully I'll have a better update next month.

Counting the beans, or by weight? (Or I suppose you could 3D scan each bean as it goes past to measure volume for extra credit)

Re: Ask HN: What Are You Working On? (July 2026)

#625
I'm learning Rust, and a bit about audio processing: https://github.com/leocrabe225/audiodsp Just before that I was learning TypeScript, and I'll be coming back to that project as it's quite the process. I'm leaning heavy TDD and rely on the type systems a lot. The project is called "Rentier", a joke about the Monopoly board game. https://github.com/leocrabe225/rentier-rewrite I finished part 1, with a postmortem. Part 2 is React frontend. Part 3 is implement the postmortem findings in the TS engine. Part 4 is update the React frontend for the updated engine. Part 5 is make the engine in Rust from scratch. Part 6 is point the React frontend to Rust engine, and praise the pros of having a good architecture. Kind of an ode to clean code if you will (Many things to learn along the way).

Re: Ask HN: What Are You Working On? (July 2026)

#626

A newspaper for kids - printed and delivered monthly. Full of puzzles, math, nature facts, science experiments, card games, outdoor scavenger hunts, etc... I wanted something for my kids to do for hours every month that is fun, education, and most importantly, screen free. I built a custom newspaper builder along with it to help me design it. I'm not a designer so tools like phoshop don't ocme easy. This allows me to…

love this. will pay for it if you have a link.

Re: Ask HN: What Are You Working On? (July 2026)

#627

Ive just been having a bit of fun with my homepage https://supermatt.com . Made a talking head with some idle animation and visemes and some broken crt-like effects. The meat of it is only a few hundred kB - i can probably make it even smaller with making the graphics smaller. A bit of post processing on some narration for extracting mouth shapes and it seems to work quite nice as a low-footprint retro talking head.…

Love the pseudo-tactile approach.

Very fresh and almost calming :)

Re: Ask HN: What Are You Working On? (July 2026)

#628
post #615

An automated, full garment knitting machine that can fit on a desk. There are only a few knitting machines that can automatically do everything required to knit a complete garment, and they are large, heavy and extremely expensive. I'm aiming to trade off speed against size and cost to create something akin to a 3D printer for knitwear. I've been testing out various ideas for six months now, and I think I have a work…

This is exciting, please post updates somewhere!

Re: Ask HN: What Are You Working On? (July 2026)

#629
Two things right now:

1. A music recommendation tool based on Last.fm scrobble history.

It's graph-based, no ML or "fancy" techniques, but I've had good results with it so far. It builds recommendations based on a listening window or just recent history. It combines several different recommendation algorithms (including an Auralist-inspired "serendipity" score for novel recommendations, meant to simulate the serendipity of being recommended something novel by a friend), scores and ranks candidates, and takes in feedback that inform subsequent recommendations.

Fun project. Found some good new music with it already. :)

2. A code exploration / indexing tool with CLI and MCP interfaces for exploring concepts and impacts of changes in a codebase.

Essentially, an overwrought "find all uses" that doesn't depend on exact symbol or string matching.

I have a codebase of non-trivial size, but thankfully it's fairly well-structured. This tool indexes the code and bundles modules into "concepts" -- these can be auto-discovered or preconfigured. Dependencies, inheritance trees, symbols and symbol usage are all also indexed.

Then you can ask, "what's the impact of extending the domain model of XYZ" or "I want to remove this property" and it shows where to start, where to look next, and fuzzy edges or dependencies that might need deeper exploration. It surfaces non-obvious connections, too, or things a junior dev (or LLM) might miss, like when a model is mapped to an API DTO, or intermediary states, etc.

It's been useful for a new dev exploring the codebase, because you can ask in terms of business concepts instead of needing to know the exact symbol name in the code. And it's been much more token efficient than grep for exploration subagents. But it's limited to dotnet only.

Re: Ask HN: What Are You Working On? (July 2026)

#630
post #505

"what if… economics", a simple one-page economics simulator: https://whatifeconomics.com I wanted to have a place to see the effect of changing macroeconomic factors, e.g. interest rate, inflation, unemployment, etc. It's designed to show economic relationships for non-experts. Source code: https://github.com/tagawa/what-if-economics/tree/gh-pages

I had similar idea, a tool to model the economy of a country. The idea would be to give to every one a simple tool to groundcheck political programms before voting. The economy is complex, there is no simple solution to a complex problem, only trade offs. But you need to see the effect of these trade offs before making a decision and elect one or another politician.
Post reply on HN