HackerTrans
TopNewTrendsCommentsPastAskShowJobs

shivsarthak34

46 karmajoined 3 lata temu
I like to build things

Submissions

[untitled]

1 points·by shivsarthak34·wczoraj·0 comments

[untitled]

1 points·by shivsarthak34·przedwczoraj·0 comments

[untitled]

1 points·by shivsarthak34·6 miesięcy temu·0 comments

Show HN: I built a scalable visual workflow automation platform – Flowripple

docs.flowripple.com
1 points·by shivsarthak34·6 miesięcy temu·6 comments

comments

shivsarthak34
·6 miesięcy temu·discuss
I'm the founding engineer at Spur, and I think we've all written the same bad code. You want to email a user when they sign up, and then check 24 hours later if they created a project. It starts simple, but eventually, you end up with a mess of cron jobs and spaghetti logic.

The breaking point for me wasn't the code complexity, but the process. Every time our marketing team wanted to change an email subject or bump a delay from 1 day to 2 days, I had to stop what I was doing, write code, and push a deployment. It felt ridiculous to deploy a new build just to change a timer.

I ended up ripping about 400 lines of boilerplate state-management code out of our backend. I moved all that logic to an orchestration layer instead (I built a tool called Flowripple for this). Now my backend just fires a 'user_signed_up' event and forgets about it. The orchestration layer handles the state, the delays, and the retries by a visual workflow builder on flowripple.

It has mostly solved the "separation of concerns" headache for us, but I'm curious how you all handle complex onboarding flows? Do you stick with Cron/Queues to keep it simple, or do you offload the state management elsewhere?
shivsarthak34
·6 miesięcy temu·discuss
Thank you! I'd love to hear what you think of it
shivsarthak34
·6 miesięcy temu·discuss
Landing page is at : https://flowripple.com , HN would not let me post it again because i did a Show HN 6 months back
shivsarthak34
·6 miesięcy temu·discuss
There are just too many things for the same thing eg for email there's - mailchimp, resend, loops , ofc a simple smtp server
shivsarthak34
·6 miesięcy temu·discuss
For now it's using my email server, but i am open to add a smtp email integration to send it via user's service , i was conflicted which one should i integrate and just solved my problem for now and thought of thinking at scale later when i actually make it public .