Hacker News

Ask HN: Control Information, Control the World?

Hacker News - Thu, 04/10/2025 - 4:34am

- printing press

- radio

- television

- internet

- AI?

Comments URL: https://news.ycombinator.com/item?id=43641957

Points: 1

# Comments: 0

Categories: Hacker News

I built a Laravel-native alternative to Temporal just using queues and yield

Hacker News - Thu, 04/10/2025 - 4:33am

I was working at a fintech company and we needed a way to track long-running processes.

We were using queued jobs that would check if an earlier step had completed, and requeue itself if it hadn't. It worked but it was noisy, hard to track, and just felt wrong.

I started looking for a better solution.

That's when I found Temporal. Their PHP SDK had a great developer experience. You could yield async steps, write workflows like regular code, and it just resumed where it left off. It felt right.

Then I brought it to the DevOps team.

And hit a wall.

It required running a k8s cluster or paying for their cloud service. They looked at me like: "Why would we do all this just to run PHP jobs?"

And I remember thinking... they're probably right.

We already had Laravel queues. We already had a database. Maybe we could build something similar without all the ceremony.

So I did.

I kept the core idea from Temporal's PHP SDK, using yield as a coroutine checkpoint, and threw the rest away. No server. No cluster. No cloud.

A workflow is just a queued job that runs until the next yield. When the yielded job completes, it requeues the workflow, rebuilds the state, and picks up where it left off.

That was the proof of concept. It worked. We shipped a basic version to production.

But I couldn't stop thinking about it.

The whole thing felt like a puzzle. So I kept going, added side effects, sagas, child workflows...

I shared my private repo with an engineer I had befriended at Temporal (from bugging him with too many questions).

He said: "Wow, that's really cool. You should release it."

So I did. Wrote docs. Opened the repo. Tagged a composer release.

And then something clicked:

Temporal isn't targeting PHP devs.

They're chasing enterprise accounts. Big teams. Fortune 500s.

Their PHP SDK is maintained but not a priority. It even requires Roadrunner, an extra runtime on top of the Temporal server. That's more friction Laravel devs don't want.

Meanwhile I'm over here with:

No external services No custom runtimes Just queues + DB And yield

Now Laravel Workflow is quietly the default for long-running orchestration in Laravel.

It's at the top of Google for many relevant phrases.

Temporal PHP SDK has 4-5x more daily installs. But they also have $350 million in funding.

I've made back my domain name fees with GitHub sponsors.

The only "failure" is that I don't have anything to sell. There's no cloud product. No SaaS angle.

Comments URL: https://news.ycombinator.com/item?id=43641944

Points: 1

# Comments: 0

Categories: Hacker News

LLMs don't hallucinate, only humans do

Hacker News - Thu, 04/10/2025 - 4:28am

Article URL: https://voidw.ink/

Comments URL: https://news.ycombinator.com/item?id=43641905

Points: 3

# Comments: 0

Categories: Hacker News

Show HN: Colors That Cuddle

Hacker News - Thu, 04/10/2025 - 4:17am

Article URL: https://www.paletteflow.co

Comments URL: https://news.ycombinator.com/item?id=43641832

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Ircamamplify.io

Hacker News - Thu, 04/10/2025 - 4:11am

An all in one audio platform. Creators of Stereo-to-Spatial and AI Music Detection products, all available through APIs and the platform itself. No audio needs we can't fullfil.

Comments URL: https://news.ycombinator.com/item?id=43641788

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Free tool to view multi-cloud resources and costs in one place

Hacker News - Thu, 04/10/2025 - 3:49am

Hi HN,

We’re building a lightweight tool to help you understand what’s running across your multi-cloud infrastructure — and what it’s costing you.

It gives you a clear overview of resources (VMs, databases, containers, networking, etc.) and cost breakdowns in a single dashboard.

We built it because managing across providers was a mess — scattered tools, fragmented views, and no easy way to see everything without switching tabs.

This is just our MVP — it’s free, quick to set up, and focused on clarity over complexity.

If you're dealing with cloud sprawl or want better visibility across environments, happy to share the link. Would love your thoughts!

Thanks!

Comments URL: https://news.ycombinator.com/item?id=43641654

Points: 1

# Comments: 0

Categories: Hacker News

Pages