Live data from Hacker News

Ask HN: What are you working on? (January 2026)

news.ycombinator.com

31–40 of 914 posts

Re: Ask HN: What are you working on? (January 2026)

#31
My project is WithAudio and is gonna be WithAudio for a while. Its a text to speech reader. Initially I decided to generate pargraph by paragaph. But that was not a great call as users sometimes might have to wait for the whole paragraph to be ready before they can listen. Now I'm working on changing it to sentence by sentence. I think that + adding 2 new languages would take most of my January's budgeted time.

https://desktop.with.audio

Re: Ask HN: What are you working on? (January 2026)

#32
Just got started again on my "Poor Man's Bitemporal Data System" (discussed here: https://news.ycombinator.com/item?id=45118585 ).

Holidays nuked all the hot-cached context in my head. I spent a few days just spinning wheels until it repopulated. But the basic idea works now!

Much testing and benchmarking work remains to make sure it's not going to lose data, and that it won't denial-of-service itself (because object-map -> facts fan-out is big).

Also a second giant blog post is due (following the one discussed above). Lots of notes have accumulated.

It will be fun even if the concept ultimately crashes and burns to the ground :)

In which case, there's always datomic and xtdb :D

  (def repl-facts
    [{:alt.site.evalapply/meta
      {:description "Root namespace for a named site."}}
     {:alt.site.evalapply/features
      {:paid #{:alt.site-feature/feat-1
               :alt.site-feature/feat-2
               :alt.site-feature/feat-3}
       :trial #{:alt.site-feature/feat-4}
       :complimentary #{}
       :available #{}}}
     {:alt.site.evalapply/users
      {:authorised #{:alt.user.evalapply/user-1
                     :alt.user.evalapply/user-2
                     :alt.user.evalapply/user-3}
       :unauthorized #{:alt.root.*}}
      :alt.user.evalapply/user-1 {:name {:first "Wiley"
                                         :last "Coyote"}
                                  :roles #{:alt.role.evalapply/owner}}
      :alt.role.evalapply/owner {:rw #{:alt.user.evalapply/*}
                                 :ro #{}}}])

  (assert-facts! (#'user/system-state)
                 ::app
                 :alt.root/user-1
                 (uuid/v7)
                 repl-facts)

  (redact-facts! (#'user/system-state)
                 ::app
                 :alt.root/user-1
                 (uuid/v7)
                 (subvec repl-facts 2))

  (read-now! (#'user/system-state)
             ::app)
(edit: add note about upcoming blog)

Re: Ask HN: What are you working on? (January 2026)

#33
Not as impressive, but - making my website weirder. Not a frontend dev at work.

Top of my ideas now: add "ask your LLM" buttons to my email submission form that opens ChatGPT/Perp/Claude and auto-fills a query asking it why you should be friends with me.

Sample links (I hope it says nice things about me!):

Claude: https://claude.ai/new?q=Do+deep+research+on+a+person%2C+dvsj....

ChatGPT: https://chat.openai.com/?q=Do+deep+research+on+a+person%2C+d....

Also working on a PRM. My website is https://dvsj.in - open to any feedback!

Re: Ask HN: What are you working on? (January 2026)

#37
I am working on SIP4AI [1] (a VOIP soft-phone where AI is on the other end, not a human). You can self-host it, register a SIP line, and let AI take the calls.

It works with your existing phone system, so you can just add AI as a line without having to replace everything…

1. https://sip4ai.com

Re: Ask HN: What are you working on? (January 2026)

#38
I think frontier models are getting to the point where we can start to reach higher trust agentic workflows.

As a hardcore AI chat user, I'm often frustrated with the single-agent workflow, where a single context window is used for even very long conversations. If I want to change the topic, open a thread, or go on a tangent, I often end up compromising the main thread and I'm forced to copy context over if I want to dive into something.

To solve this, I'm working on a collaborative AI agent orchestrator that models the solution as a group chat with humans and AI agents, including an agent orchestrator.

You can spawn participating agents with the orchestrator who will decisively route messages to the existing agents, or spawn new agents if needed. Also, you can open agent details and send messages directly to existing agents, similar to threads in slack.

So far, I have MCP integrations working with Linear and GitHub, but plan to add many more.

I've been working on this just over 2 weeks, making heavy use of 4+ concurrent Claude Code agents. This would have been impossible otherwise.

If you're interested, feel free to DM on X.

https://x.com/jon_ator/status/2010370649147998459?s=20

Re: Ask HN: What are you working on? (January 2026)

#39
I'm adding drug-development features, and polish to my open-source molecule viewer and editor, Molchanica: https://www.athanorlab.com/molchanica.

Source code, in rust: https://github.com/David-OConnor/molchanica I've split out its building blocks into their own libraries on crates.io, for anyone building other bio or chem software. I don't think anyone uses them at this time.

Re: Ask HN: What are you working on? (January 2026)

#40
I am devoting 2026 to focus on my rpg. The one differentiator here is something I am still not seeing: proper use of LLMs in games. The current batch is all lazy asset generation, maybe logic coding and what not, but not anything that could make the world actually feel alive.

Obviously, it all comes with its own sets of issues, but I am working through those as they come. But it is still a slow move solo.

Post reply on HN