u/Due-Sandwich-4638

Hey can some one tell how to grow in reddit

I am new in reddit it's greatfull if you suggest me your proven strategies to grow in reddit and how I can get my 100 clients in reddit ​

reddit.com
u/Due-Sandwich-4638 — 11 days ago

Freelancers — what's the most annoying part of collecting files/docs from clients at project start?

ngl what's the actual thing u struggle to get from clients — files, content, logins? and does it usually just die coz they ghost or forget

reddit.com
u/Due-Sandwich-4638 — 15 days ago

Most freelancers focus on the wrong thing

Most beginners believe that clients hire the most skilled freelancer.

After reading hundreds of discussions from clients and experienced freelancers, I've noticed a different pattern.

Clients usually hire the freelancer who feels like the lowest risk, not necessarily the one with the strongest technical skills.

Before hiring you, they're silently asking themselves:

  • Will this person communicate clearly?
  • Will they deliver on time?
  • If something goes wrong, will they solve it instead of disappearing?

Your portfolio gets you noticed.

Your ability to reduce uncertainty gets you hired.

If you're struggling to land clients, don't focus only on learning more skills. Also focus on building trust through fast communication, clear expectations, and reliable delivery.

What's one thing that made you trust a freelancer enough to hire them?

reddit.com
u/Due-Sandwich-4638 — 18 days ago

Is vibe-coded software actually secure?

Short answer: not by default. And honestly, that shouldn't surprise anyone.

When you're vibe coding — describing what you want, letting the AI spit out code, tweaking until it works — the whole point is speed. You're optimizing for "does this run" not "can someone break this." And those are very different goals.

Here's what usually slips through the cracks:

Auth checks that live only in the frontend, so anyone poking around in dev tools can walk right past them. API keys sitting in plain code instead of environment variables. Zero input validation, meaning your app will happily trust whatever garbage someone sends it. Random npm packages getting added because the AI suggested them, no one checking what's actually in there.

None of this is because the AI is dumb. It's because nobody asked it to think about security — they asked it to build a feature. It did exactly that.

The fix isn't "stop vibe coding." It's adding one more step: before you ship anything real, actually ask about the security. Tell it "review this for auth issues, injection, exposed secrets" — it'll usually catch a lot on its own. Then run a quick dependency scan, make sure nothing's hardcoded, and get another human to glance at it if real user data is involved.

Vibe coding gets you to a working prototype fast. It doesn't automatically get you to a secure one. That part still takes an actual, deliberate step — you just have to remember to take it.

Quick tip: before you deploy, grep your whole codebase for the word "key" or "secret." If anything real shows up in plain text instead of an env variable, that's your first fix. Takes 30 seconds and catches one of the most common mistakes out there.

reddit.com
u/Due-Sandwich-4638 — 18 days ago