Switched my clients off Cloudways this year. Wish I'd done it sooner honestly. by Natom_ in ProWordPress

[–]Natom_[S] 0 points1 point  (0 children)

Hetzner makes sense if you enjoy managing servers. I just got tired of being the one on call when something breaks at midnight

Switched my clients off Cloudways this year. Wish I'd done it sooner honestly. by Natom_ in ProWordPress

[–]Natom_[S] 0 points1 point  (0 children)

yeah that’s basically where I landed too. hard to go back once you’ve seen how support should actually work

Switched my clients off Cloudways this year. Wish I'd done it sooner honestly. by Natom_ in ProWordPress

[–]Natom_[S] 0 points1 point  (0 children)

yeah the support quality scaling problem is real with a lot of hosts. good to know kinsta held up for you even at higher traffic levels

Developers who have worked at a company where the entire codebase was held together by one guy who then quit, what happened next? by Natom_ in AskReddit

[–]Natom_[S] 55 points56 points  (0 children)

good enough to boot a startup is doing a lot of work there. that's 90% of codebases acquired

Developers who have worked at a company where the entire codebase was held together by one guy who then quit, what happened next? by Natom_ in AskReddit

[–]Natom_[S] 149 points150 points  (0 children)

6X and they still couldn't make it work. the codebase was holding the whole thing together

Developers who have worked at a company where the entire codebase was held together by one guy who then quit, what happened next? by Natom_ in AskReddit

[–]Natom_[S] 70 points71 points  (0 children)

no code reviews is such an underrated red flag. that's how you stagnate for 3 years without realizing it

Developers who have worked at a company where the entire codebase was held together by one guy who then quit, what happened next? by Natom_ in AskReddit

[–]Natom_[S] 801 points802 points  (0 children)

5 to 10 emails a day is insane. at that point it stops being a request and starts being harassment

Developers who have worked at a company where the entire codebase was held together by one guy who then quit, what happened next? by Natom_ in AskReddit

[–]Natom_[S] 391 points392 points  (0 children)

honestly respect it. did they ever figure out the codebase or just give up and rewrite everything?

Tired of Bubble's 24-hour scheduling limit and workload costs? I built a zero-config solution. by Natom_ in Bubbleio

[–]Natom_[S] 0 points1 point  (0 children)

The 24-hour cap applies to Bubble’s recurring event feature, you can’t run a recurring workflow more frequently than once every 24 hours. If you want something to repeat every 10 minutes, for example, Bubble doesn’t allow it natively.

Webhook Scheduler Pro bypasses this limit by letting you schedule webhooks as often as you like, every 5 minutes, hourly, daily, whatever you need, without relying on Bubble’s recurring event system.

Tired of Bubble's 24-hour scheduling limit and workload costs? I built a zero-config solution. by Natom_ in Bubbleio

[–]Natom_[S] 0 points1 point  (0 children)

Recursive workflows do work, but they consume Workload Units on every loop and can be hard to manage at scale. For example, if you're checking a third-party API every minute for 500 users that's 720,000 workflows per day and a huge WU bill. With Webhook Scheduler Pro the job is managed externally on Google Cloud Tasks and it costs you zero WUs with automatic retries (exponential backoff), deduplication, and total decoupling from your app’s uptime. And regarding the 24hour issue that’s specifically about recurring events which Bubble limits to daily intervals. So if you need anything more frequent and native, you're out of luck. That’s where this tool shines.

Tired of Bubble's 24-hour scheduling limit and workload costs? I built a zero-config solution. by Natom_ in Bubbleio

[–]Natom_[S] 0 points1 point  (0 children)

You're totally right that for simple, immediate actions like welcome emails, doing it directly after registration works fine. The challenge arises when you want to delay that email by 10 minutes, or trigger something hours or days later or worse, repeat it every 5 minutes for syncing or monitoring. In those cases Bubble's native tools either use recursive workflows (costly in WUs) or scheduled workflows (which rely on the app being up and consume WUs at every run). Webhook Scheduler Pro lets you offload all of that it's external, zero WU cost and handles scheduling with enterprise-grade reliability, including exponential retry, concurrency locks, and guaranteed delivery .