Live data from Hacker News

Ask HN: What Are You Working On? (June 2025)

news.ycombinator.com

961–970 of 1001 posts

Re: Ask HN: What Are You Working On? (June 2025)

#961
Currently, in a side project to keep track of pricing in the supermarkets, as since the start of the war of Ukraine, the prices have raised, event skyrocketed in some cases, without any real explanation. In some cases, I've seen how a product has raised up to 1€ in some months. The way to keep the pricing changes is to take a picture of a supermarket receipt, store the information, and calculate the pricing diff for each article. For extracting the information, I use Textract from AWS, as it fits my needs, however, it could be possible to replace it with any other OCR which can extract structured information. My purpose is to improve the project gradually and add statistical information, like charts showing the pricing changes along the time, show the most bought products in a period of time, etc

As the project relies on AWS service, I have decided to not publish a free demo, as it would be exposed to abuse by sending all kind of images, not to talk about crazy billing. However, here is a screenshot on how does it display the receipt details:

https://ibb.co/pv2ksRhH

There is a raise on one article, and a down on some others

The project is built using Ruby on Rails and runs on docker. It is light enough to run on a cheap VPS.

Feel free to take a look on it: https://gitlab.com/cbolanos79/sbt_rails

Any constructive opinion/collaboration is welcome :)

Re: Ask HN: What Are You Working On? (June 2025)

#962
post #289

I'm working on an MCP to give your coding agent the ability to generate on-demand Mermaid diagrams about anything in your codebase. Among other benefits, it is very helpful for spotting unnecessary code or architecture that can accumulate while vibe coding. https://www.npmjs.com/package/@mindpilot/mcp Claude Code Quickstart: ``` claude mcp add mindpilot -- npx @mindpilot/mcp ```

Sounds useful!

Does this only work with JS code?

Re: Ask HN: What Are You Working On? (June 2025)

#963
post #341

Repo: https://github.com/mochilang/mochi I'm building Mochi, a small programming language with a custom VM and a focus on querying structured data (CSV, JSON, and eventually graph) in a unified and lightweight way. It started as an experiment in writing LINQ-style queries over real datasets and grew into a full language with: - declarative queries built into the language - a register-based VM designed for analysis an…

If one wished, could they do something like

`save adults to "adults.json" as XML`

The expected output would be a file with the name "adults.json" containing XML data. I don't see much benefit in this specific use case but I do have a 'code smell' in having the language automagically determine the output structure for me.

Re: Ask HN: What Are You Working On? (June 2025)

#964
A re imagining of some of the foundational parts of western culture. Currently finished with the calendar, and have a working writing system. Albeit they definitely need time and testing before they could be considered truly complete.

The website has finally just gotten online. So all of this is quite new. But absolutely looking for feedback or interaction.

reformeuropa.net

Re: Ask HN: What Are You Working On? (June 2025)

#965
Working on https://randomdata.monster. A cleaner-looking (at least I think so) random data generator for random numbers, strings, passwords, credit card numbers, etc. I've found it's really hard to compete against websites that have been around for years and years.

Re: Ask HN: What Are You Working On? (June 2025)

#966

I just quit my "day job" to work on a business I've built with some good friends! We make stingray-resistant booties -- ie, if you encounter stingrays in the shallows, these greatly reduce the chance you get stung ( https://mydragonskin.com/ ). I'll be in charge of a couple marketing efforts, helping with Youtube, and other odd things that come up! My day job required me to go into office frequently, and I'm really f…

Would this work for Weever fish? My father in law was stung while walking the beach last year in Portugal, and I've been looking for some sort of sea shoes to bring with us since

Re: Ask HN: What Are You Working On? (June 2025)

#968
Just like many others, I also have this problem: it’s getting harder and harder to find the articles I’ve read later. There’s so much great content I come across every day that, in my experience, it’s rather difficult, if not impossible, to find it again by searching Google. So I started building a personal solution to keep the stuff I read searchable.

There are existing tools that try to solve this, but I have some unique requirements that pushed me to create my own. Things like Telegram integration, weekly summaries, and indexing YouTube content. More importantly, I felt the pain enough that I was motivated to work on it as a side project.

A good example is the frustration and disappointment I had with Pocket: the search functionality was terrible, and each update seemed to make the product less usable.

I’ve now got a working prototype, and I’m putting on the final touches. Let me know if you have any thoughts, or email me if you’d like to try it out.

Post reply on HN