But today I am writing documentation on presigned URLs and extending a customer's custom video processing pipeline at pushr.io instead.
Ask HN: What are you working on? (September 2025)
701–710 of 1001 posts
Re: Ask HN: What are you working on? (September 2025)
#702I've been working on a tool called Materia[0] for managing Podman Quadlets on hosts, GitOps style and I think it's really starting to hit its stride. I just released a new version yesterday: https://github.com/stryan/materia/releases/tag/v0.3.0 . There's been a couple attempts in this space before but they usually seem to peter out after a while. I'm hoping to avoid that by staying flexible and focusing on just manag…
This is really cool! Does it take care of the 'deletion' of everything it creates if you remove config blocks/files etc.?
Re: Ask HN: What are you working on? (September 2025)
#703I'm working on Small Transfers ( https://smalltransfers.com/ ), a payment platform that makes it very convenient for SaaS / API makers to provide a pay-as-you-go model to their customers. You can charge as little as 0.000001 USD per request. The platform uses our own system for tracking usage, which is settled through Stripe. No crypto, tokens, or wallets. If combined with subscriptions, the pricing can work similarl…
Re: Ask HN: What are you working on? (September 2025)
#704Just an old hobbyist these days. I'm finishing up the written manual portion of a "breadboard helper" for playing with (learning) electronics. The current "helper" I am finishing up gives you instructions (and an explanation) for wiring up over a dozen transistor logic circuits with the aid of a small PCB + breadboard [1]. Inspired by Forrest Mims III, Don Lancaster and the "75 in 1" style electronic project kits my…
Re: Ask HN: What are you working on? (September 2025)
#705Trying to document my current hobby project, but stuck in the analysis phase. I dont even know what it is. When I try to describe its purpose I get blank looks. People tend to need physical demonstrations to understand whats going on. Its not entirely new, or novel, its definitely not revolutionary, but it is a hybrid of so many things, in a very indirect sense, that its just beyond my verbiage. Not a humble brag, I…
Re: Ask HN: What are you working on? (September 2025)
#706Been enjoying using Omarchy and this is my way of keeping tabs on what's going on.
Re: Ask HN: What are you working on? (September 2025)
#707I'm working on Vedro, a Python testing framework as a pytest alternative without the magic and with clear output. The main idea is that tests should just be Python: plain `assert` statements instead of custom matchers, no fixture magic, and when tests fail you get readable diffs that actually show what went wrong. Tests can be simple functions or structured with steps that self-document in the output. https://vedro.i…
(Although, I don't like using bare `assert`s in tests, but maybe you'll convince me.)
Re: Ask HN: What are you working on? (September 2025)
#708Right now I’m polishing the onboarding flow so new centers can import families, configure their billing cadence, and connect Stripe in under ten minutes. Next up is richer analytics (occupancy tracking and revenue health) and rolling out a guided setup for late fee policies. If you’re running childcare ops or know someone who is, I’d love feedback on the workflow pain points you still feel daily.
Re: Ask HN: What are you working on? (September 2025)
#709"Google maps but for old maps": https://pastmaps.com This is a solo startup that I've been working on for 2 years now. It's a labor of love and I'm very lucky and thankful that it's big enough to surprisingly pay all of our bills. Still constantly feeling FOMO over all of my startup buddies working with AI and LLMs while I plug away at old maps and GIS . It gets ~80K MAUs and just slowly and consistently is growing o…
Re: Ask HN: What are you working on? (September 2025)
#710is a unified interface across OpenAI, Anthropic, Google, and Ollama - same code works with all providers.
Use aliases instead of hardcoding model IDs. Your code references "summarizer", and a version-controlled lockfile maps it to the actual model. Switch providers by changing the lockfile, not your code.
Also handles streaming, tool calling, and structured output consistently across providers. Plus a human-curated registry (https://llmring.github.io/registry/) that I (try to) keep updated with current model capabilities and pricing - helpful when choosing models.
An MCP server and client are included, as well as the ability to help you define your aliases/models with an interactive chat.
It's a thin wrapper on top of the downstream providers, so you are talking directly to them. And it also comes with a postgres-backed open source server to store logs, costs, etc.
MIT licensed. I am using it in several projects, but it's probably not ready to be presented in polite society yet.