Live data from Hacker News

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

news.ycombinator.com

901–910 of 1001 posts

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

#901

I'm working on MailTrigger — a customizable SMTP server that turns any email notification into a message on platforms like LINE, Slack, Microsoft Teams, Telegram, SMS, or pretty much anything else. The idea is simple: if your app can send an email, it can trigger notifications across multiple channels with no extra coding. Think of it as "SMTP Server to Anything." One of the cool parts is MailTrigger supports WebAsse…

How are you handling validation of inbound emails to prevent spoofing? Depending on your pricing model it could work expensive for someone?

Great question — thanks for bringing it up!

Right now, each MailTrigger mailbox requires SMTP authentication (username/password), so unless someone has the correct credentials, they can’t inject messages. That gives us a basic layer of protection against spoofing from the SMTP side.

For forwarded emails (e.g. from Gmail), we do validate SPF, DKIM, and DMARC on inbound messages. Each mailbox acts as a gated endpoint — only verified senders are allowed to trigger actions.

As for pricing — you nailed it, we’re still working that out. We have a few rough ideas, but I’d genuinely love to hear what kind of pricing model would feel fair or sustainable to you.

Would you lean towards usage-based (like number of messages/month), flat monthly per mailbox, or something else entirely? Have you seen pricing models you liked (or didn’t) in similar tools like Zapier or SendGrid?

Your feedback’s incredibly helpful at this stage — really appreciate it!

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

#903

Working on ARC-AGI (2). Trying a few different approaches including gradient descent mechanisms to construct programs in DSLs. Was really inspired by the recent differentiable logic gate networks work from Google, and believe there is a way to adapt it to generate programs instead of cellular automata rules.

Subscribed

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

#904

I’m working on a live voice chat for settling rule disputes during tabletop gaming. It uses OpenAI’s realtime API to allow anyone to call in a “ref”, trained on the rules of the games, to answer questions about the rules.

How do you feed rules to OpenAI?

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

#905
I built https://skeet.build which lets your connect your favorite tools via mcp to Cursor. We focus exclusively on developers and dev tools to build high quality “it just works” experiences for mcp because we found that community mcp quality is low, many mcps were not useful for devs, and SSE remote mcp took a lot of effort to get it to a point where it’s reliable and working well.

[Sequential thinking](https://skeet.build/docs/integrations/sequentialthinking) - it’s like enabling thinking but without the 2x cost

[Memory](https://skeet.build/docs/integrations/memory) - I use this for repo / project specific prompts and workflows

[Linear](https://skeet.build/docs/integrations/linear)- be able to find and issue, create models a branch and do a first pass, update linear with a comment on progress

[github](https://skeet.build/docs/integrations/github) - create a PR with a summary of what o just did

[slack](https://skeet.build/docs/integrations/slack) - send a post to my teams channel with the linear and GitHub PR link with a summary for review

[Postgres](https://skeet.build/docs/integrations/postgres) / [redis](https://skeet.build/docs/integrations/redis) - connect my staging dbs and get my schema to create my models and for typing. Also use it to write tests or do quick one off queries to know the Redis json I just saved.

[Sentry](https://skeet.build/docs/integrations/sentry) - pull the issue and events and fix the issue, create bug tickets in linear / Jira

[Figma](https://skeet.build/docs/integrations/figma) - take a design and implement it in cursor by right clicking copying the link selection

[Opensearch](https://skeet.build/docs/integrations/opensearch) - query error logs when I’m fixing a bug

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

#907
post #818

I'm working on a tool specifically for viewing log files, it started when I wanted to open logcat files and have filtering but I couldn't really do that with a lightweight tool, Wireshark works well and I found a cool tool called lognote. so I started making my own, and I wanted to display things different ways and make it easy to add features. it's still a work in progress but I'm proud of it so far https://github.c…

You should also be proud of the name!

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

#908
I’ve been building Velty[1] over the past year as a tool to tame my ever-growing YouTube subscriptions. It’s a web app (PWA) that lets you organize your YouTube channels and videos into folders (with sub-folders), and view all the latest videos in one chronological feed with powerful filtering/sorting.

I built it because I was frustrated with how hard it was to manage a large number of channel subscriptions using YouTube’s default interface.

https://velty.app

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

#909

Earlier quoted context omitted.

Hey! Seems a nice job, do you mind if I ask which company and if you found some interesting references on the subject?

Hi! I can't really share the company, but I do love the space and happy to discuss what I've been reading. So the idea of Knowledge Tracing originated, from my understanding with a paper in 1994: http://act-r.psy.cmu.edu/wordpress/wp-content/uploads/2012/1... this sort of introduced the idea that you could model and understand a students learning as it progresses through a set of materials. The concept of Knowledge C…

Thank-you! It's a long time that I have a similar idea and I'm interested in developing it, but never found the time to dig deeper, with those references I will jump start in the subject and refine.

It's nice to know I'm not the only one thinking about that.

The trick for me is that it's a path in a graph for each student, so even if some component is not as strong for one student, he can fill the gap by taking another route. A good framework would be resilient if it finds many possible paths to reach the same result, and not forcing one path. But then, teaching in this way is more difficult.

Post reply on HN