Live data from Hacker News

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

news.ycombinator.com

151–160 of 1001 posts

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

#151
Now ready to release https://mealplannr.io. The end game is no/low touch weekly meal plans sent directly to your inbox, with meals from the chefs you follow - with none of the hassle around planning the meals, shopping list etc (which I spend hours doing every week).

An important feature for me was improving the recipe discovery experience, you can build a cookbook from chefs you follow on socials (youtube for now), or import from any source (Web, or take pic of cookbook etc) - it then has tight / easy integration into recipe lists.

Utilising GenAI to auto extract recipes, manage conversions, merge/categorise shopping lists etc - as-well as the actual recommendations engine.

If anyone is interested in beta testing / wants to have a chat I'll look out for replies, or message mealplannr@tomyeoman.dev

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

#154
I've been working on proving that Claude Opus can be self-reflecting meaning that its attention and context are large enough that it is aware of its own instructions, aware of the task, and capable of writing its own instructions to optimize solving the task in recursive iterations. [0]

By tuning the agent, it is possible to create trading strategies [1] and reverse engineer websites in order to create optimized JSON APIs using the websites internal private APIs. [2]

I'm having the hardest time communicating what is happening so next I'm going to try to explain it using data visualizations so people can visualize it in action.

[0] https://github.com/adam-s/agent-tuning

[1] https://github.com/adam-s/alphadidactic

[2] https://github.com/adam-s/intercept?tab=readme-ov-file#how-i...

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

#155
Not working on it yet but planning some projects with the kids: - A candy classifier with Arduino for Halloween (the goal is to have trick-or-treaters choose their preferred candy and have the machine sift it out automatically) - A board game based on the idea of fog-of-war, details undecided - An app to reduce screen time

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

#156
A tool to detect and fix drift in GitHub repository settings: https://github.com/ArloL/drifty

I have a terraform setup right now but it’s super awkward and very slow. The goal is to be able to define settings using PKL which looks super interesting. Wanted to try it out for a while now.

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

#157
I'm working on ghidra-delinker-extension [1], a relocatable object file exporter for Ghidra. Or in other words, a delinker.

Delinking is the art of stripping program for parts, essentially. The tricky part is recovering and resynthesizing relocation spots through analysis. It is a punishingly hard technique to get right because it requires exacting precision to pull off, as mistakes will corrupt the resulting object files in ways that can be difficult to detect and grueling to debug. Still, I've managed to make it work on multiple architectures and object file formats; a user community built up through word of mouth and it's now actively used in several Windows video game decompilation projects.

Recently I've experimented with Copilot and GPT-5.3 to implement support for multiple major features, like OMF object file format and DWARF debugging symbols generation. The results have been very promising, to the point where I can delegate the brunt of the work to it and stick to architecture design and code review. I've previously learned the hard way that the only way to keep this extension from imploding on itself was with an exhaustive regression test suite and it appears to guardrail the AI very effectively.

Given that I work alone on this in my spare time, I have a finite amount of endurance and context and I was reaching the limits of what I could manage on my own. There's only so much esoterica about ISAs/object file formats/toolchains/platforms that can fit at once in one brain and some features (debugging symbols generation) were simply out of reach. Now, it seems that I can finally avoid burning out on this project, albeit at a fairly high rate of premium requests consumption.

Interestingly enough, I've also experimented with local AI (mostly oss-gpt-20b) and it suffers from complete neural collapse when trying to work on this, probably because it's a genuinely difficult topic even for humans.

[1] https://github.com/boricj/ghidra-delinker-extension

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

#158
I recently started using Paperless to manage all my documents and wanted to include archive serial numbers (ASNs) for all physical documents that I scan, so I built a small tool to create and print archive serial number label sheets with QR/Barcodes:

https://asnlabels.com

It's free, no sign up or ads - feedback welcome :)

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

#159
I am working on a system built around the OpenAI Responses API WebSocket mode as performance is something that interests me.

Its like a microservices architecture with NATS JetStream coordinating stuff. I want to keep the worker core as clean as possible, just managing open sockets, threads and continuation.

Document querying is something I am interested in also. This system allows me to pin a document to a socket as a subagent, which is then called upon.

I have hit alot of slip ups along the way, such as infinite loops trying to call OpenAI API, etc ...

Example usage: 10 documents on warm sockets on GPT 5.4 nano. Then the main thread can call out to those other sockets to query the documents in parallel. It allows alot of possibilities : cheaper models for cheaper tasks, input caching and lower latency.

There is also a frontend

Alot of information is in here, just thoughts, designs etc: https://github.com/SamSam12121212/ExplorerPRO/tree/main/docs

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

#160
Still working on my urban tree visualization! Spent some time polishing the ingest pipeline to make it easier to add new cities, added a genus/species level view to aggregate across cities, and added in some basic imagery so I can see what species are. Thinking about adding in a end-user facing ingest pipeline so I can add some trees I like that I see on my walks. Probably need a performance pass to since I'm scaling up the volume quite a bit.

https://greenmtnboy.github.io/sf_tree_reporting

Posted in last thread when it was SF only: https://news.ycombinator.com/item?id=47303111#47304199

Post reply on HN