Live data from Hacker News

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

news.ycombinator.com

891–900 of 1001 posts

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

#892
With my small team we're working on a dense integration layer between client data, bank statements, and invoices along with dedicated software in cooperation with accountants to simplify flow of data from independent payment processors and pairing appropriate payments with corresponding invoices in one database, in code.

This project makes use of existing database infrastructure and parses data from multiple banks including caveats and quirks of some banks improper handling of data.

This project aims to ease the work of accountants and administration as currently a lot of correcting mistakes and pairing to the correct invoice is done manually.

The project is made in python however the modularity we set ourselves to implement allows for quick, easy and hassle free corrections of code with use of project schematics, like builders, dependency injections etc. Discovered a great tool for running tests efficiently https://docs.astral.sh/uv/ .

Also for data retrieval from a remotely located database. DO NOT USE pyodbc, USE mssql library. pyodbc is unoptimized in terms of receiving high amounts of streamed data, it can't keep up. That alone has dropped the time of execution from 18 minutes down to about 20 seconds.

Also making use of typer and data classes for ensuring correct types of data.

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

#894
Working as an accountant in a services industry, inventory has been the thorn in my side. The ERP package that I manage and work on daily has some limitations on inventory control, possibly a signal to change packages, but other than the inventory issue, it serves 100% of my needs. Currently working with various AI platforms to see what functionality can be built to intergrate or at least make the month-end figures worthwhile. it's been challenging, but it's doable.

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

#895
Currently doing a research fellowship in Cape Town in Cooperative AI and loving it! Basically getting paid to just explore and create for three months.

For those interested in the fellowship - https://www.cai-research-fellowship.com

The platform my research partner and I have been working on is called Habermolt (https://habermolt.com).

The idea is to create an open-source platform where you teach an AI agent your views (basically just populate a user.md) and send it to deliberate with other people's agents. A consensus statement comes out the other side.

It builds on the Habermas Machine (published in Science, 2024, Google DeepMind / MIT). We're two researchers trying to turn that into something anyone can use.

The overarching motivation for this project/ the thing we're trying to solve for is that representative democracy scales but doesn't listen, and deliberative democracy listens but doesn't scale. AI agents representing you might be the first mechanism that does both.

We have about 50 users and 52 live deliberations. One example: agents debated whether employees should own their AI agents and landed on "Personal Agent Portable, Company Data Stays" - your agent shaped by your knowledge and skills is yours, company data stays with the company. Nobody moderated that. Four agents just argued it out async.

The honest challenge: people love the concept, try it once, and don't come back. We're trying to figure out what turns a curious visitor into someone who actually uses this. Would love any thoughts on that.

GitHub: https://github.com/OzDuys/habermolt

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

#896
Just vibe coded a calendar based group meeting app. A group of friends create a calendar and share the link, can coordinate in the chat, and in a calendar choose the day and time to meet. Everybody votes and that's it. All this in a nice brutalist web design. And no registering needed.

https://meetday.net/

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

#897
I'm working on Chief [1], a CLI that autonomously works through a PRD using AI coding agents like Claude Code.

You write user stories, start it up, and it loops through them one at a time. Fresh context per story, progress tracked in markdown between iterations. One clean commit per completed story. Has a TUI for watching it work and supports running multiple PRDs in parallel via git worktrees.

Built it because a lot of the "autonomous coding" tooling out there felt overly complex and opaque. Chief is intentionally lightweight and transparent. Everything is just markdown files and git. No magic.

[1] https://github.com/MiniCodeMonkey/chief

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

#898
Building a step-through debugger for GitHub Actions workflows called PipeStep (https://github.com/Photobombastic/pipestep).

The idea came from the commit-push-wait-read-logs cycle that everyone seems to accept as normal when debugging CI. PipeStep parses your workflow YAML, spins up the right Docker container, and lets you pause before each step, inspect the container, shell in, set breakpoints, skip or retry steps. It deliberately doesn't try to replicate the full Actions runtime — no secrets, no matrix builds, no uses: execution. For that, use act. PipeStep is specifically for when something breaks and you want to figure out why without pushing 10 more commits.

Think of it as gdb for your CI pipeline. pip install pipestep, Python 3.11+, MIT, requires Docker.

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

#899
There is a trick that grocery companies use to reduce competition in an area: it's called "Restrictive Covenants" and it's a limitation they can place on a piece of land. It often limits what other tenants on the land can sell, and prevents the landlord from renting to other grocers in a certain radius. These covenants run with the land, which means they can bind all future owners in perpetuity.

I've just published Canada's biggest open dataset for these covenants: https://jacobfilipp.com/covenants/

Next steps: adding more covenants from Edmonton and Halifax. Informing key people that these documents are now available.

Post reply on HN