Live data from Hacker News

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

news.ycombinator.com

211–220 of 1001 posts

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

#211

Still chugging away at my NES rhythm game. Currently, in addition to climbing the content mountain (so, SO much pixel art and music needs to be made) I'm also slowly learning video editing workflows. I was able to put together a brief gameplay trailer this last week: https://store.steampowered.com/app/4129270/Tactus/ Right this second I'm looking for an alternative to After Effects that runs on Linux systems, as kden…

Nice job. I'm assuming this was inspired by Crypt of the Necrodancer? It even has a similar looking "bounce" motion when the main player moves.

https://store.steampowered.com/app/247080/Crypt_of_the_Necro...

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

#212
I'm working on https://engine.build

It's a durable orchestration system for AI code generation which solves the problem of not being able to trust LLMs to complete long running (and high quality) implementations without having to babysit them and monitor the process, which is what I think is the most exhausting part of coding with AI.

You start with a spec or programmatic task list and the engine runs the whole workflow: implementation, verification, review, fixes, and finalization.

It treats agentic coding like a durable CI-style process, with state, retries, reviewer feedback, commits, and auditability built in. It's externally orchestrated, meaning it's not the agent running the loop, it's simply agents being used as tools and spawned in the loop as needed without awareness of the loop itself.

It's going to be open sourced soon and it's not meant to replace your IDE or Agentic Harness of choice. You keep using codex/claude code/open code/cursor/pi whatever you want and simply delegate the actual implementation to the engine, through MCP/CLI and other integration points.

It supports any LLM provider so you can have GPT 5.5 implementing and a mix of Opus 4.7 / Deepseek v4 Pro / GPT 5.5 reviewing at every phase for example.

Sign up on the website or follow us on https://x.com/enginedotbuild or me personally on https://x.com/aljosa , desperately need more followers :D

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

#213
I'm currently fighting Garmin's wonderful Connect IQ watch app platform (it's horrendous).

I'm working on https://untether.watch>. Trying to shift 20-30 micro phone interactions to the wrist per day to ultimately reduce phone use. Dumbphones are too extreme - you need a smartphone for certain day-to-day activities (banking etc.)

The watch is a great form factor - it's got a crap screen (MIP), the ergonomics are awkward (rotate and look down), it has limited capabilities. But that's the point! Do essential quick actions and leave the phone out of site.

Requires Android companion app to do the heavy lifting. Use the (head)phone mic and STT to reply to any android notification and make notes. More features to come.

Garmin's SDK is seriously challenging. APIs are often broken across firmwares, limited developer tools and testing is tough.

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

#214
I'm working on JRECC, a Java remotely executing caching compiler.

It's designed to integrate with Maven projects, to bring in the benefits of tools like Gradle and Bazel, where local and remote builds and tests share the same cache, and builds and tests are distributed over many machines. Cache hits greatly speed up large project builds, while also making it more reliable, since you're not potentially getting flaky test failures in your otherwise identical builds.

https://jrecc.net

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

#217
I'm working on https://www.certkit.io. It started as a solution to handle TLS certificate automation for my other SaaS products, but we realized other people who run on-prem workloads might get something out of it.

It uses Let's Encrypt by default. We use delegated DNS to handle ACME challenge validation (we run the DNS, you just CNAME to us). This means you don't need to give us DNS credentials or anything. And for HA workloads it's great, because there's a central clearinghouse for certificates - so all the machines in your web farm (or whatever) get the same cert, but you don't run in to rate limits with LE.

We're recovering Windows Server guys so we made sure our automation works for painful windows workloads like IIS, Exchange etc. too.

We've had enough interest that we're building it out for real. Just left beta last month.

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

#219
Been working on an open source, free, Heroku alternative at https://canine.sh for about two years.

I feel like even after all these years we’re still missing the devex that Heroku provided.

It’s been super fun to experiment & integrate MCP into it.

We just passed 2000 developers last month actively deploying with canine.

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

#220

Working on tsz ( https://tsz.dev ) a performance-first TypeScript checker written in Rust. Started 5 months ago and it's been mostly AI-written code. 99.8% tsc conformance test pass rate today. Single file benchmarks are 3–5x faster than tsgo.

Wow! How is LSP performance?
Post reply on HN