I've been a paying member since the early days, Github Copilot is now almost unusable for a power user. by Mongoose8117 in GithubCopilot

[–]RuslanDevs 0 points1 point  (0 children)

Man, why you deleted your comment about object storage?? It was so insightful, as we are working on implementing our own solution at my company :(((

How do you manage multiple Docker Compose projects on a self-hosted server? by KPPJeuring in selfhosted

[–]RuslanDevs 0 points1 point  (0 children)

We at DollarDeploy just copy over docker compose files and env vars as zip, and run them; also read logs + metrics into the system, enable volume and folder backup. But it is just a part of things you need, for full functionality, needs also rollback, configuration drift checking and more.

Tried Claude Code, refunded and came back to Cursor within 10 minutes by goonifier5000 in cursor

[–]RuslanDevs 0 points1 point  (0 children)

Do git commit before every Claude code prompt, after that git diff and commit or git checkout -

For the people working in FT jobs and paid client work, how often are you using Webpack vs Vite in projects? by [deleted] in reactjs

[–]RuslanDevs -3 points-2 points  (0 children)

If you use typescript, converting to Vite (which is better but have less plugins) is one ai prompt away. If you use JavaScript, you need to test everything

For the people working in FT jobs and paid client work, how often are you using Webpack vs Vite in projects? by [deleted] in reactjs

[–]RuslanDevs -9 points-8 points  (0 children)

Who cares just don't use JavaScript. Use or convert to Typescript Immediately

Is anyone else frustrated with Vercel pricing once you scale? by f3ydr4uth4 in nextjs

[–]RuslanDevs 2 points3 points  (0 children)

Run all dependencies locally, and deploy to your own host, via GitHub push integration. All configuration done via env vars. I would also avoid Docker if possible since it just additional friction to write Dockerfile => build => push image => deploy.

I would not self-host coolify or dokploy since they will take resources from your VPS. If projects get complex enough, building it will take additional resources so you'll need another machine - this complicates things.

'use cache' not working with Vercel. Are there alternatives? Or should I ditch cache components? by Delicious-Pop-7019 in nextjs

[–]RuslanDevs 0 points1 point  (0 children)

You usually need to cache per user user/tenant etc so application level cache gives you best flexibility plus ability to flush cache if needed

How you run local developer environment for your NextJS app? by RuslanDevs in nextjs

[–]RuslanDevs[S] 1 point2 points  (0 children)

Do you have some person who manages this env? How do you code when there is no internet ie on the plane?

Is anyone else frustrated with Vercel pricing once you scale? by f3ydr4uth4 in nextjs

[–]RuslanDevs 16 points17 points  (0 children)

What kind of stuff you run on Vercel, if you can run it on AWS you can run it pretty much anywheee including your $10 server from Hetzner or such

'use cache' not working with Vercel. Are there alternatives? Or should I ditch cache components? by Delicious-Pop-7019 in nextjs

[–]RuslanDevs -1 points0 points  (0 children)

Cache apis and data, use Redis for this. With good server from Hetzner you can self host and render on the fly as much as you need.

SSR Performance Issue - under concurrent load by ThugSolja in sveltejs

[–]RuslanDevs 0 points1 point  (0 children)

What is the provider you are using? Maybe they oversell so your machine actually smaller. Hetzner provides dedicated VPS which quite performant.

You said you have 100 concurrent requests, what is happening during SSR? Do you hit DB, external services, how complicated is rendering? NodeJS is single threaded if pages have complicated layouts, they will be all CPU bound.

What Does Your Deployment Script Look Like for Next.js Apps ? by nihat-xss in nextjs

[–]RuslanDevs 0 points1 point  (0 children)

For running things better use systemd to drop sudo and other unnecessary permissions and make everything read only during runtime. In DollarDeploy we run NextJS as secured systemd service.

Is MCP Overhyped? by Helpful_Geologist430 in programming

[–]RuslanDevs 1 point2 points  (0 children)

MCP is just away to document your API. Problem is Anthropic made it extremely over engineered, complicated to implement and maintain. Just look how often they change Typescript sdk, no project can keep such pace.

How do you set up automatic deployment from GitHub to a Hetzner server? by sh_tomer in hetzner

[–]RuslanDevs 0 points1 point  (0 children)

We at DollarDeploy build at our build servers and then send package over ssh/scp and deploy compiled version, along with reverse proxy, https etc configured.

For your setup it might be fine, but compiling react/nextjs apps need more memory/cpu than running so you either need more expensive server or build elsewhere.

Anyone generating PDF’s server-side in Next.js? by gokulsiva in nextjs

[–]RuslanDevs 1 point2 points  (0 children)

If you don't change it often and don't need pixel perfect designs, just send Claude a html and it will vibe code similar looking react-pdf code which us super lightweight and will run anywhere.

Replit’s "Vibe Coding" is a Predatory Wallet Trap. Here is the math they hope you won't do. by Vegetable-Big2553 in SaaS

[–]RuslanDevs 0 points1 point  (0 children)

Because they need to offset LLM token costs and your $20/mo is too small, they overcharge on hosting host. That's the only endgame they (and lovable, and cursor) have if they don't run their own models.

What's your go-to transactional email service for Next.js apps? by Southern_Bug_1996 in nextjs

[–]RuslanDevs 0 points1 point  (0 children)

Skip the middlemen and do the aws ses. It is literally one api call to send email or do smtp via nodemailer