Live data from Hacker News

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

news.ycombinator.com

671–680 of 1001 posts

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

#671
I am working on bUniProbe (https://www.crowdsupply.com/bitmerse/buniprobe), an open-source wireless hardware debugger. I was tired of juggling separate USB adapters for SPI, I2C, UART, CAN and GPIO and wiring up external level shifters just to switch between 3.3V and 5V targets.

To fix this, I built a single Wi-Fi connected board that handles it all. It hosts its own web server, so you can monitor signals, read/write data, and toggle hardware pull-ups directly from your browser without installing drivers. I also added a waveform viewer and a REST API for all interfaces, making it easy to automate hardware testing with Python scripts.

Hardware and firmware will be fully open-source. We are currently in pre-launch on Crowd Supply.

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

#673
I'm building a workspace for thinking with AI. Think what Cursor did for coding, but for rigorous thinking.

I believe the direction toward persistent, proactive, remembers-everything AI is the wrong one for thinking. AI should be used as a selectively invoked sparring partner.

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

#674
HTTPState

https://httpstate.com

https://github.com/httpstate/httpstate

A minimal, reactive, real-time state layer over HTTP. Pick a UUID, read/write ≤128 bytes, and instantly sync data across apps, devices, or services. Each state is addressed by a UUID [1]. You read/write it via a simple GET/POST API, or use one of the client libraries (8 languages and counting) for real-time updates. It is open source with a permissive license.

Some design premises:

* It should be as easy as possible to use. One line of code (ok, two if you count the import line).

* Hard limit: max. 128 bytes state size. This forces small, fast updates. HTTPState is not meant to be a storage layer but a fast, real-time communication layer for things like events, sensors, UI/UX updates.

* Data is open, to re-usability and collective applications. You can see some featured data streams on the site, if you like one, you can use it on your app in like 1 minute.

Use cases (but not limited to, lol):

* Add pub/sub-style communication to your apps, quickly and easily.

* Stream sensor data to a web/mobile UI (or any of the client's implementations).

* Persist state across multiple runs of your app through time.

* Sync state across multiple app instances.

Some undocumented integrations (will land soon):

* You can update a state via an SMS message.

* You can update a state via an email.

* You can update a state by setting an HTML form's action to httpstate.com/UUID, so that it works on "noscript" environments.

* CAS-style optimistic concurrency control (w/ atomic operations) via headers on the request.

* There is an iOS client that allows you to easily build widgets with the states you choose.

Roadmap:

* Add "API Keys" so you're the only one who can read/write to the UUID you pick.

* C/C++ and MicroPython clients for embedded devices.

* A postgreSQL extension to bind states to tables.

How can you help?

* Just reach out if you want to adopt one of the clients and/or want to write a new one in a language/platform you'd like to see.

* If you know how to code Android apps, I'd like to have the same widgets feature I have on iOS but on Android.

* Publish some data and send me an email so I can add it to the featured list! (This will be automated eventually, I just haven't figured out in such way that is not abused).

* Comments and suggestions always welcome!

1: You can write it without the dashes, but it has to be a UUID v4. You can also add '/[8 hex digits]' at the end, this is helpful to keep many related states together.

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

#675
I vibe-coded a tiny local code review tool, a bit like pull-requests, but an agent does the work immediately.

https://github.com/antoineMoPa/moonreview

The intended use is to run `moonreview` instead of `git status` / `git diff` or `magit`, but you can add comments and they get auto resolved. You can also stage hunks if you are happy with them.

Probably other tools exist or will appear in this space (I saw at least another one in the comments on this post), but i think there is something fundamentally too slow and dumb with current corporate code reviews. People are reviewing other people's slop and most of the comments are probably fed back into an agent. So why not have the whole process be done upfront by the original developper. Another cool thing I saw people do is to attach claude to github PR comments, which I think is great and love to work with this, but it's even better if we can also have this locally to catch sloppy code before it even reaches github.

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

#676
I'm working on https://opal.cloudflavor.io It can run gitlab pipelines locally and assist you using AI to troubleshoot your pipelines. I daily drive it now and it has seen hundreds or runs, but it's still in active development. Building in a void, isn't much fun, so if anyone can use it and give me some feedback, i'd really appreciate it. l.e.: It's not released yet, but it works really well on MacOS as an MCP using the Apple container cli.

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

#677
PricePush (pricepush.app), automating localized pricing for mobile apps. Calculates PPP-adjusted prices for 190+ countries and pushes them to App Store Connect and Google Play in one click. Built it because managing prices across 175 Apple storefronts for my own 8 apps was taking entire weekends.

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

#679
I am vibe-porting an old game, Knights & Merchants(actually its Delphi rewrite - KAM Remake) to WASM. It's going well, I even have multiplayer working, will release it publicly at some point.

Learned more about WASM, OPFS, JSPI and other exotic browser stuff more than ever, also learned more about pascal than I ever wanted to, but it's been immensely fun.

Post reply on HN