Live data from Hacker News

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

news.ycombinator.com

341–350 of 1001 posts

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

#341
post #106

I am working on a music recommendation algorithm for your self hosted music. Think of it like your personal pandora. Backend is already working: Boldaric https://github.com/line72/boldaric And a simple iOS native front end (which I haven’t submitted to the App Store yet). Tor Jolan https://github.com/line72/torjolan It has been interesting tweaking the algorithms and models for various similarity searches. I really l…

Wow! I was thinking about doing something similar (extracting audio features to find really similar songs) some weeks ago. I love the idea, it'd be great to have something like this to discover music too, but it'll be difficult to discover new music because it won't be present in the collection.

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

#344
Continuing to work on my MMORPG made with Elixir and Godot. The game has been live for 2 months but there's still lots to do. A lot of the architecture revolves around the AI simulation run in Elixir. I started working on this game after quitting my job on a whim (18 months ago!). I've started to get some daily players which is exciting.

https://swarmmo.games The game is playable in browser! And theres no sign-up required to try it out.

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

#345
https://periplus.app

A website for open-ended learning with LLMs. Something like a personalized, generative Wikipedia. Has generated courses, documents, quizzes and flashcards.

Each document links to more documents, which are all stored in a graph you grow over time. Currently using the graph for topic suggestions, though I've also been playing around with steering document generation with it as well.

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

#346
I recently released suggestion-mode functionality for prosemirror

https://github.com/davefowler/prosemirror-suggestion-mode

and now I'm building it into my reading and note taking app for a better interaction of AI giving assisted edits, most similar to the Patchwork project from ink and switch https://www.inkandswitch.com/patchwork/notebook/07/

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

#347
https://tkte.ch/chancy/

https://github.com/tktech/chancy

Chancy is a postgres-backed task queue for Python that scratches a lot of the Celery itches. It's not meant for folks that need to run a million tasks a second, but for the majority of projects (many millions per day) it offers:

- Robust job support, including timeouts, memory limits, retries, global uniqueness, global rate limiting, scheduling (cron and "in 10 seconds"), priorities, etc...

- DAG based workflow plugin

- It's asyncio-first with support for threading, multiprocessing, asyncio, and sub-interpreter tasks so each job can use the optimal concurrency model. Workflows can mix tasks across multiple queues and concurrency models.

- Can be embedded inside your existing ASGI servers - great for things like development docker containers or containers deployed on say, unraid.

- Worker's handle scheduling (no need for `celery beat`) and have an optional built-in dashboard.

- 1 infrastructure dependency (postgres) and 1 required package (psycopg3) - with everything else isolated in optional plugins. - Dynamically re-assign queues to new workers based on tags, add, pause (with auto-resume), modify or destroy queues at any time.

- Highly observable - unlike Celery, you can just query your database when needed to see the entire system state

- Portable - Linux/Windows/OSX

- Permanently free and open-source without any "premium" or paid features.

- Django integration - ORM/models, admin, and django auth integration for the dashboard.

Chancy is a young tool, but is used in production environments with tens of thousands of users and billions of jobs run with great feedback from early users:

> ...thank you for this amazing library...

> hey, first thanks for such a great library! Chancy has worked incredibly well, and its modular design has made it a pleasure to use. Super lightweight but feature-full; it's a hard balance to strike.

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

#348
post #258

I’m working on a Content Security Policy parser. There are a handful of them around the web, but I couldn’t find one that implemented the entirety of the CSP spec and I wanted something I could use to verify structure and validity of CSP directives. https://github.com/damien/content-security-policy/tree/main/... Once I’m happy with my take on a reference implementation I’m hoping to create some tooling with it to do…

I implemented CSP and created internal tools to handle and process the reports. Would love to contribute and build a OSS tools to process reports.

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

#349
https://liverestful.com - We're releasing a smart bedside lamp that reduces circadian input at night and wakes you up to light in the morning. This took about 3 years of active development; and we're building out an ecosystem of connected circadian lights for the home (think desk lamp, reading lights, etc.).

This builds on the back of our popular Bedtime Bulb light bulb - much-improved v2 coming soon: https://get.bedtimebulb.com

Post reply on HN