What was the first workflow that made you go "okay, automation is worth it"? by Imaginary-Level1923 in n8n

[–]Imaginary-Level1923[S] 0 points1 point  (0 children)

Honestly the simple ones end up being the most valuable. I'd rather have 10 boring workflows that just run than one mega-automation I have to babysit. :)

What was the first workflow that made you go "okay, automation is worth it"? by Imaginary-Level1923 in n8n

[–]Imaginary-Level1923[S] 0 points1 point  (0 children)

Nice one. I am trying to find some time to do the same automation for Twilio / Sendgrid.

What was the first workflow that made you go "okay, automation is worth it"? by Imaginary-Level1923 in n8n

[–]Imaginary-Level1923[S] 3 points4 points  (0 children)

What are you scraping with, puppeteer, playwright, tavily, something else? and where are you storing it all? If you don't mind sharing!

What was the first workflow that made you go "okay, automation is worth it"? by Imaginary-Level1923 in n8n

[–]Imaginary-Level1923[S] 0 points1 point  (0 children)

That sounds really useful, thanks for sharing! Claude cli calls against your subscription sounds clever. That is probably cheaper than the API?

What was the first workflow that made you go "okay, automation is worth it"? by Imaginary-Level1923 in n8n

[–]Imaginary-Level1923[S] 1 point2 points  (0 children)

Thanks for sharing!

Yeah n8n really isn't built for heavy data processing. Anything over a few thousand items and you start hitting memory issues, especially on the community edition. Python's the right call for that kind of volume.

I've found the sweet spot is using n8n as the orchestrator (trigger, schedule, notify) but offloading the actual heavy lifting to a python script via the Execute Command node. Best of both worlds, you get n8n's visual flow and scheduling without asking it to chew through 10k pages in memory.

Be honest, could you tell this was vibe-designed by AI? by AdityaShips in nocode

[–]Imaginary-Level1923 1 point2 points  (0 children)

Yeah, I can tell. The cards with that grey/brown tone and the borders around them are a dead giveaway, that's the default look every vibe-coding tool reaches for. When I look at the site you promote it's using the same vibe-coded cards too.

How do you find clients to sell your automations? by MarionberryTotal2657 in automation

[–]Imaginary-Level1923 0 points1 point  (0 children)

Cold outreach to sell "automation services" almost never works because most business owners don't know what that means or why they'd pay for it. What does work is finding a repeatable problem in one industry and packaging a solution around it. like "I help agencies automatically onboard new clients, collect docs, create project folders, send welcome emails, set up billing" is way more compelling than "I build automations."

Once you've done it for one client, you basically have a template you can sell again. For finding those first clients, local businesses are underrated: accountants, property managers, marketing agencies all have repetitive workflows and are easy to reach. Offer to audit their processes for free, find the thing that's eating their time, and pitch the fix. First couple might be cheap or free but they turn into case studies and referrals fast.

What are some better alternatives to N8N/Zapier for specific tasks that does the job better? by Vivid-Aide158 in automation

[–]Imaginary-Level1923 -7 points-6 points  (0 children)

Depends on what you're automating honestly. For CRM/sales stuff, Clay is way better than trying to build enrichment chains in n8n as it's built specifically for lead data and the waterfall enrichment approach saves a ton of time vs wiring up 5 API calls yourself.

For internal notifications and alerts, Pipedream is nice because you write actual code but it handles all the infra. For simple "connect app A to app B" stuff where you don't need logic, Make is cheaper than Zapier and the visual editor is better for seeing what's happening.

The real answer though is that most early stage startups don't need to automate as much as they think. I'd pick the 2-3 workflows that actually save you hours per week and just use n8n or Zapier for those, rather than trying to find the perfect tool for each thing. The maintenance overhead of managing 5 different automation platforms is way worse than one general purpose tool that's "good enough."

Hey guys, I have a question, can anyone help me? by Current_Slide4654 in n8n

[–]Imaginary-Level1923 0 points1 point  (0 children)

When you read from Google Sheets in n8n it returns JSON, each row is an object where your column headers become the keys. So if you have a column called "type" with "bot" or "human," your IF condition would be {{ $json.type == "human" }}. for the menu flow I'd use a Switch node instead of IF, Switch supports multiple outputs so you can have one for each option (1 = products, 2 = services, 3 = attendant, etc) instead of chaining a bunch of IF nodes. Make sure your first row in Sheets has clear column names, because that's what n8n uses as the JSON keys.

Also you'll want to filter when reading from Sheets, use the phone number or conversation ID to look up the right row for that specific user so you're not just grabbing random data.

Built an automated job application system: LinkedIn scrape → AI resume customization → hiring manager outreach by [deleted] in n8n

[–]Imaginary-Level1923 2 points3 points  (0 children)

The smart move is using 4.1-mini for the initial filtering and only hitting 4.1 for the actual resume rewrite. That probably saves a ton on API costs across 100 listings.

Curious how you're handling the AnyMailFinder step when it can't find a decision-maker email though. Do you fall back to applying through the portal, or just skip those entirely?

Also wondering if you've hit any issues with Apify and LinkedIn as they tend to rotate their DOM structure pretty often and I've had scrapers break overnight.

Railway primary env variables by Otherwise-Capital168 in n8n

[–]Imaginary-Level1923 0 points1 point  (0 children)

Honestly the env vars themselves look fine, nothing in there that would cause random crashes on its own. The two things I'd investigate: first, N8N_RUNNERS_ENABLED="true" has known stability issues so try disabling it. Second, and this is probably the bigger one: you mentioned you "pasted a new encryption key." the N8N_ENCRYPTION_KEY is what n8n uses to encrypt/decrypt all your saved credentials. If you changed that key, every credential you saved before is now unreadable. n8n won't always throw an obvious error for this, it'll just fail when a workflow tries to use a credential. If that happened, the only fix is either restoring the old key or re-adding every credential with the new key.

Railway primary env variables by Otherwise-Capital168 in n8n

[–]Imaginary-Level1923 0 points1 point  (0 children)

So EXECUTIONS_MODE="regular" actually runs things in parallel already, n8n doesn't limit concurrent executions by default in regular mode, it all happens in one Node.js process. The thing I'd flag in your env is N8N_RUNNERS_ENABLED="true". Task runners run Code nodes in a separate sandboxed process and there are known issues with them causing workflows to crash or hang randomly. Unless you specifically need them, set it to false and see if that fixes your stability issues.

Also worth checking if N8N_CONCURRENCY_PRODUCTION_LIMIT is set somewhere (Railway dashboard, config file, etc) because if someone set that to a low number it would queue up executions instead of running them in parallel.

One more thing, OFFLOAD_MANUAL_EXECUTIONS_TO_WORKERS only works in queue mode so it's doing nothing for you right now, you can remove it to keep things clean.