Live data from Hacker News

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

news.ycombinator.com

81–90 of 1001 posts

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

#81
post #19

I am working on the https://moviemovie.club/about , it's a tiny website about film review. It works like a run club, where you have to make a review first to see other people's reviews. I am currently implementing watchlists, comments and a mural to make it feel a bit less lonely. Right now I like the UI but it feels to lonely.

This seems like it would only work if “reviews” would be something rare to come by. Like some forums where you have to contribute to be able to download attachments, or see higher level subforums.

But reviews are everywhere, good ones too so it will be a hard chicken egg problem to solve.

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

#82
post #72

Working on an electronic dictionary for my sister. She wanted something to look words up in Italian that wasn't her phone, and well I like a project. E-paper display, snapdome keyboard, an ESP32 to round it out. (Runs lisp.) Pictures at the link. There's also some webtoys on there, feel free to peruse https://lmao.center/babble/

This is kinda cool.

I would use a polished version.

When I read books, I find myself getting easily distracted since my phone has so many alternative apps/things to do OTHER THAN looking up a word in a dictionary.

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

#83
Honestly a little bit hesitant to say anything yet. There are a few more features to add, and a whole lot more work to be done to showcase just how cool it is. But the short version is, I'm working on a sort of meta-pico8, a game maker for WebGL2 2d pixel art games (e.g. 320x180 games like Animal Well) that runs in the browser, but one that's firstly collaborative, so that we can all build it together. And some of the coolest features are the based around that. For example, I got arbitrary imports of user code working in the browser, so all you have to do is create an account, add a JS file, and other people can import it as if it were a built-in module, and it just works. Plus the SDK I ended up making is simple, and the API is clean, and there's a few innovations in the GUI layer that I'm excited to share. I wish I could explain just how cool this is.

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

#85

Iterating on my geography site: https://geolede.com Next feature is search.

This is a dope idea, nice job!

I would love to see some UI/UX improvements like split view where the map is on the left and the news reading/scrolling happens on the right reading pane instead of on the bottom while horizontally scrolling.

You could even use AI/LLM's to summarize the most important news from each country etc.

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

#86
I'm working on Damon[1], a Nomad Events stream operator that automates cluster operations and eliminates repetitive DevOps tasks. It's a lightweight Go binary that monitors the Nomad events stream and triggers actions based on configurable providers.

A few examples of what it can currently do:

- Automated data backup: Listens for Nomad job events and spawns auxiliary jobs to back up data from services like PostgreSQL or Redis to your storage backend based on job meta tags. The provider for this is not limited to backups, as it allows users to define their custom job and ACL templates, and expected tags. So it can potentially run anything based on the job registration and de-registration events.

- Cross-namespace service discovery: Provides a lightweight DNS server that acts as a single source of truth for services across all namespaces, solving Nomad's limitation of namespace-bound services. Works as a drop-in resolver for HAProxy, Nginx, etc.

- Event-driven task execution: Allows defining custom actions triggered by specific Nomad events; perfect for file transfers, notifications, or kicking off dependent processes without manual intervention. This provider takes in a user-defined shell script and executes it as a nomad job based on any nomad event trigger the user defines in the configuration.

Damon uses a provider-based architecture, making it extensible for different use cases. You can define your own providers with custom tags, job templates, and event triggers. There's also go-plugin support (though not recommended for production) for runtime extension.

I built this to eliminate the mundane operational tasks our team kept putting off. It's already saving us significant time and reducing gruntwork in our clusters.

Check out the repository[1] if you're interested in automating your Nomad operations. I'd love to hear your thoughts or answer any questions about implementation or potential use cases!

[1]: https://github.com/Thunderbottom/damon

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

#89

The first ever SQL debugger – runs & visualizes your query step-by-step, every clause, condition, expression, incl. GROUP BY, aggregates / windows, DISTINCT (ON), subqueries (even correlated ones!), CTEs, you name it. You can search for full or partial rows and see the whole query lineage – which intermediate rows from which CTEs/subqueries contributed to the result you're searching for. Entirely offline & no usage o…

Was thinking today... not a debugger but even a SQL progess bar, so I know that my add column will take say 7 hours in advance.
Post reply on HN