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.
Ask HN: What Are You Working On? (July 2026)
621–630 of 1001 posts
Re: Ask HN: What Are You Working On? (July 2026)
#622I'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.
Re: Ask HN: What Are You Working On? (July 2026)
#623I'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.
Re: Ask HN: What Are You Working On? (July 2026)
#624Re: Ask HN: What Are You Working On? (July 2026)
#625Re: Ask HN: What Are You Working On? (July 2026)
#626A 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…
Re: Ask HN: What Are You Working On? (July 2026)
#627Ive 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.…
Very fresh and almost calming :)
Re: Ask HN: What Are You Working On? (July 2026)
#628An 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…
Re: Ask HN: What Are You Working On? (July 2026)
#6291. 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"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