Live data from Hacker News

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

news.ycombinator.com

131–140 of 900 posts

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

#131
I am working on a chess analytics tool, specifically a free and open source replacement of Chessbase in this age of LLMs that can run on all platforms. The idea is to lower the barrier of entry to use a chess improvement tool since Chessbase can be intimidating for a causal Chess.com beginner looking to go into serious chess prep. At present, it can do basic queries like H2H score of Magnus Carlsen vs Hikaru Nakamura, the top 10 juniors in the US, Magnus Carlsen's games with the London system opening and involving a queen sacrifice etc. Though getting it to work for advanced multi-step tactical patterns and finding games with certain imbalances in the query using natural language is getting challenging. DuckDB has helped a lot, along with modern LLMs for query generation with schema and some preprocessing of game PGNs and piece hashes. It can also import a user's Chess.com and Lichess games given the usernames and do similar queries as on Master level games.

I also used the tool to generate an Adult Chess improvers FIDE rank list for all federations around the world. Here are the July 2025 rankings though it still needs major improvements in filtering - https://chess-ranking.pages.dev

------------------

Another idea that I have been working on for sometime is connecting my Gmail which is a source of truth for all financial, travel, personal related stuff to a LLM that can do isolated code execution to generate beautiful infographics, charts, etc. on my travels, spending patterns. The idea is to do local processing on my emails while generating the actual queries blindly using a powerful remote LLM by only providing a schema and an emails 'fingerprint' kind of file that gives the LLM a sense of what country, region, interests we might be talking about without actually transmitting personal data. The level of privacy of the 'fingerprint' vs the quality of queries generated is something I have been very confused with.

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

#132
I’m working on a free & open-source invoice generator:

- Live PDF preview

- 100% client-side

- No sign-up required

- Includes a Stripe-style invoice template

- Built with modern web tech – simple to self-host or fork

Repo: https://github.com/VladSez/easy-invoice-pdf

Demo: https://easyinvoicepdf.com

Would love feedback, contributions, or ideas for other templates/features!

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

#133
I've been working on a 3D voxel-based game engine for like 10 years in my spare time. The most recent big job has been to port the world gen and editor to the GPU, which has had some pretty cute knock-on effects. The most interesting is you can hot-reload the world gen shaders and out pop your changes on the screen, like a voxel version of shadertoy.

https://github.com/scallyw4g/bonsai

I also wrote a metaprogramming language which generates a lot of the editor UI for the engine. It's a bespoke C parser that supports a small subset of C++, which is exposed to the user through a 'scripting-like' language you embed directly in your source files. I wrote it as a replacement for C++ templates and in my completely unbiased opinion it is WAY better.

https://github.com/scallyw4g/poof

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

#134
Optimizing the Marginalia Search index code. The new code is at least twice as fast in benchmarks, but I can't run it in production because it turns out when you do it's four times as slow as what came before it for the queries that are the simplest and fastest to the point where queries exceed their timeout values by a lot.

I'm 97% certain this is because the faster code leads to more page thrashing in the mmap-based index readers. I'm gonna have to implement my own buffer pool and manage my reads directly like that vexatious paper[1] said all along.

[1] https://db.cs.cmu.edu/papers/2022/cidr2022-p13-crotty.pdf

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

#136
Working on Lunova — a QuickBooks Online app that you can create custom alerts via SMS/email such as when big deposits land, invoices go overdue, or vendor prices spike. Just cleared Intuit’s tech/security + marketing review (Took over 3 months... after building the MVP) and we’re now live on the QBO App Store. Feedback and feature requests welcome: https://uselunova.com

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

#137
We are working on Gossip: the future of media insights (think Meltwater, Brandwatch, etc).

It’s been a journey but getting close to launching our first version to pilot customers in August. We use an enormous amounts of AI tokens every month to extract data not possible with any traditional player in this media monitoring space. Benchmarking competitors, tracking impactful discussions, and receiving actionable brand insights.

If you are currently using one of the big media monitoring companies, I’d love to chat!

https://www.gossipinsights.com/en/top-companies/us/

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

#138

I'm still working on a tool to create custom accessible Tailwind-style CSS color palettes for web and UI designs: https://www.inclusivecolors.com/ Example with colors from HN to play with (the grays used for links and main body background, orange from the navbar, green from newbie usernames): https://www.inclusivecolors.com/?style_dictionary=eyJjb2xvci... The main features are it shows if your colors meet WCAG access…

Looks awesome! I'm using tailwind in my open source project and Ive been really struggling with accessible colors, inclusivecolors sounds like itll be perfect for me

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

#140

I'm still working on a tool to create custom accessible Tailwind-style CSS color palettes for web and UI designs: https://www.inclusivecolors.com/ Example with colors from HN to play with (the grays used for links and main body background, orange from the navbar, green from newbie usernames): https://www.inclusivecolors.com/?style_dictionary=eyJjb2xvci... The main features are it shows if your colors meet WCAG access…

Very cool project. I don't use tailwind but I have been thinking that the color palette part is great. Love that you can export it all to a big list of CSS variables.

Thanks! To clarify, it's aimed at more than just Tailwind, but Tailwind popularized the color naming like red-500, blue-100, green-900 etc. so I went with that convention.

You can use the CSS export in regular CSS projects directly e.g. via `color: var(--red-900)`, or something like `--bs-danger: var(--red-500)` for Bootstrap projects with semantic naming. The same export format works for Tailwind too because since version 4, Tailwind is mostly configured via CSS variables now.

I probably need to make this more obvious, but if all your swatches have the linked/shared lightness option set, you can pick lightnesses where all grade 500 colors contrast against all grade 100 colors, all grade 600 colors contrast against all grade 200 colors etc. so when you're picking colors in CSS, you know by design which colors will contrast without having to go check them.

Post reply on HN