Live data from Hacker News

Ask HN: What are you working on? (March 2025)

news.ycombinator.com

201–210 of 1001 posts

Re: Ask HN: What are you working on? (March 2025)

#201
Building a knowledge graph where AI/ML is used to classify nodes (entity type). Next step is to extract data deterministically. https://github.com/pixlie/PixlieAI

There is a crawler to chase given objective and crawl/store web page results. We use Claude Haiku and Brave Search API (own API keys) and we will support local models soon.

Potential use-cases are lead generation, competitor search, product tracking, contracts search.

Re: Ask HN: What are you working on? (March 2025)

#203
post #23

I am working on a battle simulation for the game 'The Bazaar'. I was quite frustrated with how the original devs handled monetization going into open beta, which sparked my motivation. Trying out Kotlin for the first time and having a blast so far! Also using an ECS architecture for the first time. It's quite a different way of reasoning about things, but it definitely helps with the dynamic fights that need to be si…

Watch out for DMCAs. They're, ah, not very fond of third-party development.

Best wishes,

The former developer of Bizarre Insights

https://www.youtube.com/watch?v=i2yQXDFVRPQ

Re: Ask HN: What are you working on? (March 2025)

#204

I've been building mentions.us[1] - it sends you alerts when your keywords are mentioned on Hacker News, Reddit, Bluesky, LinkedIn and a few other places. For anyone who uses F5Bot, it's similar but with some extra data sources and a Slack integration. It's been a fun project. Dealing with the scale of Reddit (~300 posts/second) creates some interesting technical challenges. It's also let me polish up my frontend dev…

You just got a signup :) Free plan, I'll admit. I don't need or want anything other than email notifications, and the free plan for that is very generous. Thanks for building this.

Re: Ask HN: What are you working on? (March 2025)

#205
An entirely open-source, peer-based accounting package intended for accountants and end users who like the way that certain popular accounting software used to be, with control placed in the user's hands whether they want to run it locally like a desktop app, cloud-based, or some combination thereof. (You can insert a few buzzwords like "blockchain" if that appeals to you.)

After spending a few years developing it for internal purposes, a customer decided to contribute a significant amount to its ongoing, open-source development, plus additional closed-source commercial add-on modules for their own use: making the accounting software useful for very specific industries.

Currently it's piloted running payroll & profit/loss/balance sheet for a handful of small businesses, with the rest of the usual modules (accounts payable, invoicing, quoting, etc.) slated for release this year.

Technology stack is currently Python plus Preact; "severless" architecture where each node maintains a replica of the data involved and can replicate it to other nodes. User interfaces is either CLI or web-based, with an eye towards eventually replicating the desktop user experience of popular accounting packages of times past. We are taking a hard look at shifting from Python to Rust simply as we rely heavily on third-party packages, and Rust is where a lot of the active development in that space is going.

The most fun I had was finding a module written in Perl and Postscript, porting the Perl part to Python, and realising the existing Postscript was excellent and needed no improvement. (Our team now has more Postscript competency than we ever planned to have.)

If you're interested, see my profile for an email and put "HN" in the subject.

Re: Ask HN: What are you working on? (March 2025)

#206

I've been putting together a no-nonsense free invoice generator, for people (like myself) that only occasionally send invoices. It's more-or-less a WYSIWYG editor, and the state is stored in the URL, so you don't have to worry about keeping track of where you stored your copy - if you've sent someone an email with the link, you've got a copy. This project was born out of the frustration of trying to generate an invoi…

Awesome. Would suggest considering a built-in URL shortener.

Re: Ask HN: What are you working on? (March 2025)

#207
I'm working on a new Event Sourcing database that elevates the WAL into a first class application concept like a message queue. So instead of standing up a postgresql instance and a kafka instance and a bunch of custom event sourcing plumbing, you stand up this database and publish all your application events as messages. For the database part you just define the mappings from event to table row and you get read models and snapshots for free.

The real key here is how migrations over time are handled seamlessly and effortlessly. Never again do you have to meet with half a dozen teams to see what a field does and if you still need it - you can identify all the logic affecting the field and all the history of every change on the field and create a mapping. Then deploy and the system migrated data on the fly as needed.

Still in stealth mode and private github but the launch is coming.

Re: Ask HN: What are you working on? (March 2025)

#208
BiasScanner - a non-profit project to fight non-neutral news reporting with a special LLM model wrapped in a Firefox plugin (that marks biased sentences yellow when you read your news online). In JavaScript and Python -- see https://biasscanner.org

IdeaFunnel - capturing, tracking and evaluating ideas in organizations; as innovation is topic that I am conducting research in and will be teaching a block course in July on. (Being rapid prototyped in PHP.)

ltools -- a set of command line tools in Rust.

Also starting a new multi-year computer science book project...

Re: Ask HN: What are you working on? (March 2025)

#209
I wrote a small business preventive maintenance and calibration tracker (https://pmcal.net) as a side project.

A few manufacturing companies that I have a close relationship with are using it and love it, but I have kind of hit a wall with other growth avenues (Google Ads, organic promotion on the web).

I have been thinking of marketing directly to ISO 9001 auditors, because “can you get email reminders” is a question they have asked at multiple companies I have worked at. I feel like cold mailing them something branded (e.g. notepads) might work, but I am not sure how much money I want to spend on it if it doesn’t and it’s also a bit nerve-wracking to put myself out there like that.

Re: Ask HN: What are you working on? (March 2025)

#210
I'm building an experimental a JSX-like language that embraces more functional features --- has stronger type guarantees that TS, ADTs, and pattern matching, but it's also more familiar than alternatives like Elm (or, I would argue, even Rescript).

My current tag line is "JS with guardrails, without footguns"

https://chicory-lang.github.io/

https://github.com/chicory-lang/compiler

Post reply on HN